Sha256: c7fbb4d08ac6014d4523e0040998e0151e0636bc3a96216536d6989ab89ba0b0
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
/* * =================================================== * RIBBONS * =================================================== */ .ribbon { position: absolute; top: 10px; left: -11px; z-index: 999; display: inline-block; font-family: $font-family-heading; font-size: .8rem; text-transform: uppercase; letter-spacing: .3em; padding: 3px 15px 5px; color: #fff; text-align: center; &+.ribbon { top: 60px; &+.ribbon { top: 110px; &+.ribbon { top: 160px; } } } &::before { content: ''; border-left: 12px solid transparent; border-right: 0 solid transparent; border-top: 14px solid darken(theme-color('primary'), 20%); position: absolute; bottom: -14px; left: 0; } } @mixin ribbon-variant($parent, $color) { #{$parent} { background-color: $color !important; &::before { border-top-color: darken($color, 20%); } } } @each $color, $value in $theme-colors { @include ribbon-variant('.ribbon-#{$color}', $value); }
Version data entries
2 entries across 2 versions & 1 rubygems