Sha256: bde53dcb6181deb55ed4dad477fc6251a09dd840b814a4b1934b60d9572537bd
Contents?: true
Size: 857 Bytes
Versions: 39
Compression:
Stored size: 857 Bytes
Contents
// // background.scss // Extended from Bootstrap // .bg-cover { background: no-repeat center center / cover; } // Between .bg-between { @include media-breakpoint-down(md) { background-image: none !important; } @include media-breakpoint-up(md) { background-repeat: no-repeat; background-position: left center, right center; background-size: auto 70%; } } // Gradients .bg-gradient-light { background-image: linear-gradient(to bottom, $light 0%, $white 100%); } // Colors .bg-gray-200 { background-color: $gray-200 !important; } .bg-gray-300 { background-color: $gray-300 !important; } .bg-gray-800 { background-color: $gray-800 !important; } .bg-gray-900 { background-color: $gray-900 !important; } .bg-black { background-color: $black !important; }
Version data entries
39 entries across 39 versions & 2 rubygems