_menu.styl 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .site-nav {
  2. +mobile() {
  3. border-bottom: 1px solid $grey-lighter;
  4. border-top: 1px solid $grey-lighter;
  5. left: 0;
  6. margin: 0;
  7. padding: 0;
  8. width: 100%;
  9. }
  10. }
  11. .menu {
  12. +mobile() {
  13. text-align: left;
  14. }
  15. }
  16. .menu-item-active a {
  17. background: transparent;
  18. border-bottom: 1px solid var(--link-hover-color) !important;
  19. +mobile() {
  20. border-bottom: 1px dotted $grey-lighter !important;
  21. }
  22. }
  23. .menu .menu-item {
  24. +mobile() {
  25. margin: 0 10px;
  26. }
  27. a, span.exturl {
  28. border-bottom: 1px solid transparent;
  29. +mobile() {
  30. padding: 5px 10px;
  31. }
  32. &:hover {
  33. @extend .menu-item-active a;
  34. }
  35. }
  36. .fa, .fab, .far, .fas {
  37. +tablet-desktop() {
  38. display: block;
  39. line-height: 2;
  40. margin-right: 0;
  41. width: 100%;
  42. }
  43. }
  44. .badge {
  45. background: $gainsboro;
  46. padding: 1px 4px;
  47. }
  48. }