123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .main-header {
- background-color: $white;
- border-bottom: $main-header-bottom-border;
- width: inherit;
- z-index: $zindex-main-header;
- .nav-link {
- color: $dark;
- &:hover,
- &:focus {
- color: $black;
- }
- }
- }
- .layout-navbar-fixed {
- .main-header {
- position: fixed;
- }
- .content {
- margin-top: $main-header-height;
- }
- }
- @include dark-mode() {
- .main-header {
- background-color: $dark-alt;
- border-bottom-color: tint-color($dark-alt, 10%);
- .nav-link {
- color: $gray-400-alt;
- &:hover,
- &:focus {
- color: $white-alt;
- }
- }
- }
- }
|