Sha256: bff838cd8dbd3cff39cff24bdd741fefd6225e0b4263327259e4a62bf7f23a01

Contents?: true

Size: 669 Bytes

Versions: 14

Compression:

Stored size: 669 Bytes

Contents

#gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 10px;
  column-gap: 10px;
  width: 100%;

  div {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    line-height: 0;

    img {
      width: 100%;
    }

    p {
      line-height: normal;
      opacity: 0;
      position: absolute;
      bottom: 0;
      width: 100%;
      background-color: transparentize($background-color, $opacity);
      transition: opacity 0.2s;
      margin-bottom: 0;
      margin-top: 0;
      padding: 10px;
      box-sizing: border-box;
    }

    &:hover {
      p {
        opacity: 1;
      }
    }
  }
}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
cafe-theme-0.1.13 _sass/gallery.scss
cafe-theme-0.1.12 _sass/gallery.scss
cafe-theme-0.1.11 _sass/gallery.scss
cafe-theme-0.1.10 _sass/gallery.scss
cafe-theme-0.1.9 _sass/gallery.scss
cafe-theme-0.1.8 _sass/gallery.scss
cafe-theme-0.1.7 _sass/gallery.scss
cafe-theme-0.1.6 _sass/gallery.scss
cafe-theme-0.1.5 _sass/gallery.scss
cafe-theme-0.1.4 _sass/gallery.scss
cafe-theme-0.1.3 _sass/gallery.scss
cafe-theme-0.1.2 _sass/gallery.scss
cafe-theme-0.1.1 _sass/gallery.scss
cafe-theme-0.1.0 _sass/gallery.scss