Sha256: ad913fc22be7dda2972c757fbc8616f155d18671fe696db551ea8d3c150bb611
Contents?: true
Size: 1.53 KB
Versions: 4
Compression:
Stored size: 1.53 KB
Contents
// Cerulean 4.0.0 // Bootswatch @mixin btn-shadow($color){ @include gradient-y-three-colors(lighten($color, 8%), $color, 60%, darken($color, 4%)); } $text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) !default; // Navbar ====================================================================== .bg-primary { @include btn-shadow($primary); } .bg-dark { @include btn-shadow($blue); } .bg-light { @include gradient-y-three-colors(lighten($gray-200, 8%), $gray-200, 60%, darken($gray-200, 2%)); } .navbar-brand, .nav-link { text-shadow: $text-shadow } // Buttons ===================================================================== .btn { text-shadow: $text-shadow } .btn-primary { @include btn-shadow($primary); } .btn-secondary { @include btn-shadow($secondary); color: $gray-700; } .btn-success { @include btn-shadow($success); } .btn-info { @include btn-shadow($info); } .btn-warning { @include btn-shadow($warning); } .btn-danger { @include btn-shadow($danger); } // Typography ================================================================== // Tables ====================================================================== // Forms ======================================================================= // Navs ======================================================================== // Indicators ================================================================== // Progress bars =============================================================== // Containers ==================================================================
Version data entries
4 entries across 3 versions & 2 rubygems