_main-header.scss 638 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // Core: Main Header
  3. //
  4. .main-header {
  5. background-color: $white;
  6. border-bottom: $main-header-bottom-border;
  7. width: inherit;
  8. z-index: $zindex-main-header;
  9. .nav-link {
  10. color: $dark;
  11. &:hover,
  12. &:focus {
  13. color: $black;
  14. }
  15. }
  16. }
  17. .layout-navbar-fixed {
  18. .main-header {
  19. position: fixed;
  20. }
  21. .content {
  22. margin-top: $main-header-height;
  23. }
  24. }
  25. @include dark-mode() {
  26. .main-header {
  27. background-color: $dark-alt;
  28. border-bottom-color: tint-color($dark-alt, 10%);
  29. .nav-link {
  30. color: $gray-400-alt;
  31. &:hover,
  32. &:focus {
  33. color: $white-alt;
  34. }
  35. }
  36. }
  37. }
  38. //