_main-header.scss 678 B

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