bulma and fontawesome instaled
[josuexyz/.git] / node_modules / bulma / sass / components / menu.sass
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
8 $menu-list-border-left: 1px solid $border !default
9 $menu-list-line-height: 1.25 !default
10 $menu-list-link-padding: 0.5em 0.75em !default
11 $menu-nested-list-margin: 0.75em !default
12 $menu-nested-list-padding-left: 0.75em !default
13
14 $menu-label-color: $text-light !default
15 $menu-label-font-size: 0.75em !default
16 $menu-label-letter-spacing: 0.1em !default
17 $menu-label-spacing: 1em !default
18
19 .menu
20   font-size: $size-normal
21   // Sizes
22   &.is-small
23     font-size: $size-small
24   &.is-medium
25     font-size: $size-medium
26   &.is-large
27     font-size: $size-large
28
29 .menu-list
30   line-height: $menu-list-line-height
31   a
32     border-radius: $menu-item-radius
33     color: $menu-item-color
34     display: block
35     padding: $menu-list-link-padding
36     &:hover
37       background-color: $menu-item-hover-background-color
38       color: $menu-item-hover-color
39     // Modifiers
40     &.is-active
41       background-color: $menu-item-active-background-color
42       color: $menu-item-active-color
43   li
44     ul
45       border-left: $menu-list-border-left
46       margin: $menu-nested-list-margin
47       padding-left: $menu-nested-list-padding-left
48
49 .menu-label
50   color: $menu-label-color
51   font-size: $menu-label-font-size
52   letter-spacing: $menu-label-letter-spacing
53   text-transform: uppercase
54   &:not(:first-child)
55     margin-top: $menu-label-spacing
56   &:not(:last-child)
57     margin-bottom: $menu-label-spacing