Sha256: afec9bd354c46fda0533cde206167fc6b37984ae7d5c1f9c7a4736af1896ca94

Contents?: true

Size: 696 Bytes

Versions: 8

Compression:

Stored size: 696 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%;
    line-height: 0;

    img {
      width: 100%;
      object-fit: cover;
      aspect-ratio: 1;
    }

    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

8 entries across 8 versions & 1 rubygems

Version Path
cafe-theme-0.1.21 _sass/gallery.scss
cafe-theme-0.1.20 _sass/gallery.scss
cafe-theme-0.1.19 _sass/gallery.scss
cafe-theme-0.1.18 _sass/gallery.scss
cafe-theme-0.1.17 _sass/gallery.scss
cafe-theme-0.1.16 _sass/gallery.scss
cafe-theme-0.1.15 _sass/gallery.scss
cafe-theme-0.1.14 _sass/gallery.scss