Sha256: abee6ea58cde01a9412e583bd5eaeaeb59855f3eee66e9a0b57f4e5ea5988bab
Contents?: true
Size: 1.52 KB
Versions: 5
Compression:
Stored size: 1.52 KB
Contents
@charset "UTF-8"; .bg-light { /* stylelint-disable-next-line declaration-no-important */ background-color: lighten($secondary, 8%) !important; } .table-dark, .table-dark > th, .table-dark > td { background-color: $pink-dark; } .table-hover .table-dark:hover, .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th { background-color: lighten($pink-dark, 8%); } .navbar { .nav-item { .nav-link { position: relative; margin-right: $spacer * .5; &::before { position: absolute; right: 0; bottom: 0; left: 0; width: 0; margin: 0 auto; content: ""; border-bottom-style: solid; border-bottom-width: 1px; transition: width .2s; } @include hover-focus { &::before { width: 100%; } } } &.active .nav-link::before { width: 100%; } } } .navbar-dark { &.bg-primary { .navbar-brand, .navbar-brand:hover, .navbar-brand:focus { color: $gray-800; } .navbar-nav .nav-link { color: rgba($gray-800, .75); } .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus { color: rgba($gray-800, .9); } /* stylelint-disable selector-max-class */ .navbar-nav .active > .nav-link { color: $gray-800; } /* stylelint-enable */ .nav-item .nav-link::before { border-color: $gray-800; } } } .navbar-light { .nav-item .nav-link::before { border-color: $navbar-light-active-color; } }
Version data entries
5 entries across 5 versions & 1 rubygems