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