Sha256: c9b5a14271cac366a65525618efc9cf56b5246352b886037fe86eeeff148548c
Contents?: true
Size: 1.13 KB
Versions: 6
Compression:
Stored size: 1.13 KB
Contents
$center: transparentize($dark, 0.3); //$edges: transparentize(darken($dark, 15%), 0.15); $gradient-top-left: transparentize(darken(saturate(adjust-hue($dark, -10deg), 10%), 10%), 0.3); $gradient-bottom-right: transparentize(lighten(saturate(adjust-hue($dark, 10deg), 5%), 5%), 0.15); .hero { background-size: cover; background-position: center center; overflow: hidden; --overlay-center: #{$center}; --overlay-top-left: #{$gradient-top-left}; --overlay-bottom-right: #{$gradient-bottom-right}; &.rainbow { --overlay-center: rgba(212, 133, 165, 0.7); --overlay-top-left: rgba(6, 52, 29, 0.6); --overlay-bottom-right: rgba(18, 36, 117, 0.85); } .cover-overlay { margin: -1px; background-image: linear-gradient(141deg, var(--overlay-top-left) 0%, var(--overlay-center) 65%, var(--overlay-bottom-right) 100%); } .container.is-fluid { @include mobile { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; } } .title { text-shadow: 0px 2px 3px transparentize($black, 0.5); } .subtitle { text-shadow: 0px 1px 2px transparentize($black, 0.8); } }
Version data entries
6 entries across 6 versions & 1 rubygems