_menu.styl 1006 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .site-nav-toggle, .site-nav-right {
  2. +tablet() {
  3. flex-column();
  4. }
  5. .toggle {
  6. color: white;
  7. .toggle-line {
  8. background: white;
  9. }
  10. }
  11. }
  12. .site-nav {
  13. +tablet() {
  14. display: none;
  15. }
  16. }
  17. .menu .menu-item {
  18. display: block;
  19. margin: 0;
  20. a, span.exturl {
  21. padding: 5px 20px;
  22. position: relative;
  23. text-align: left;
  24. transition-property: background-color;
  25. &:hover {
  26. @extend .menu-item-active a;
  27. }
  28. }
  29. +tablet-mobile() {
  30. &.menu-item-search {
  31. display: none;
  32. }
  33. }
  34. .badge {
  35. background: $grey-light;
  36. border-radius: 10px;
  37. color: white;
  38. float: right;
  39. padding: 2px 5px;
  40. text-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
  41. vertical-align: middle;
  42. }
  43. }
  44. if (!hexo-config('menu_settings.badges')) {
  45. .main-menu .menu-item-active a::after {
  46. background: $grey;
  47. border-radius: 50%;
  48. content: ' ';
  49. height: 6px;
  50. margin-top: -3px;
  51. position: absolute;
  52. right: 15px;
  53. top: 50%;
  54. width: 6px;
  55. }
  56. }