Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

menu.sass 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. $menu-item-color: $text !default
  2. $menu-item-radius: $radius-small !default
  3. $menu-item-hover-color: $text-strong !default
  4. $menu-item-hover-background-color: $background !default
  5. $menu-item-active-color: $link-invert !default
  6. $menu-item-active-background-color: $link !default
  7. $menu-list-border-left: 1px solid $border !default
  8. $menu-label-color: $text-light !default
  9. .menu
  10. font-size: $size-normal
  11. // Sizes
  12. &.is-small
  13. font-size: $size-small
  14. &.is-medium
  15. font-size: $size-medium
  16. &.is-large
  17. font-size: $size-large
  18. .menu-list
  19. line-height: 1.25
  20. a
  21. border-radius: $menu-item-radius
  22. color: $menu-item-color
  23. display: block
  24. padding: 0.5em 0.75em
  25. &:hover
  26. background-color: $menu-item-hover-background-color
  27. color: $menu-item-hover-color
  28. // Modifiers
  29. &.is-active
  30. background-color: $menu-item-active-background-color
  31. color: $menu-item-active-color
  32. li
  33. ul
  34. border-left: $menu-list-border-left
  35. margin: 0.75em
  36. padding-left: 0.75em
  37. .menu-label
  38. color: $menu-label-color
  39. font-size: 0.75em
  40. letter-spacing: 0.1em
  41. text-transform: uppercase
  42. &:not(:first-child)
  43. margin-top: 1em
  44. &:not(:last-child)
  45. margin-bottom: 1em