summaryrefslogtreecommitdiff
path: root/_bulma/node_modules/bulma/sass/components/menu.sass
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-06-03 22:00:03 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-06-03 22:00:03 -0400
commitc6b5329e5c77b226a6b0cacd99607fc7650c3a9a (patch)
tree1b4676ab6d7e2257212d07cf5faf136f7bda89f7 /_bulma/node_modules/bulma/sass/components/menu.sass
parent4d129b527ee5d3a536849209c2a4e86a64190a5d (diff)
downloadcarpentertutoring-c6b5329e5c77b226a6b0cacd99607fc7650c3a9a.tar.xz
carpentertutoring-c6b5329e5c77b226a6b0cacd99607fc7650c3a9a.zip
actually include bulma data for scss rendering later
Diffstat (limited to '_bulma/node_modules/bulma/sass/components/menu.sass')
-rw-r--r--_bulma/node_modules/bulma/sass/components/menu.sass57
1 files changed, 57 insertions, 0 deletions
diff --git a/_bulma/node_modules/bulma/sass/components/menu.sass b/_bulma/node_modules/bulma/sass/components/menu.sass
new file mode 100644
index 0000000..3de7e18
--- /dev/null
+++ b/_bulma/node_modules/bulma/sass/components/menu.sass
@@ -0,0 +1,57 @@
+$menu-item-color: $text !default
+$menu-item-radius: $radius-small !default
+$menu-item-hover-color: $text-strong !default
+$menu-item-hover-background-color: $background !default
+$menu-item-active-color: $link-invert !default
+$menu-item-active-background-color: $link !default
+
+$menu-list-border-left: 1px solid $border !default
+$menu-list-line-height: 1.25 !default
+$menu-list-link-padding: 0.5em 0.75em !default
+$menu-nested-list-margin: 0.75em !default
+$menu-nested-list-padding-left: 0.75em !default
+
+$menu-label-color: $text-light !default
+$menu-label-font-size: 0.75em !default
+$menu-label-letter-spacing: 0.1em !default
+$menu-label-spacing: 1em !default
+
+.menu
+ font-size: $size-normal
+ // Sizes
+ &.is-small
+ font-size: $size-small
+ &.is-medium
+ font-size: $size-medium
+ &.is-large
+ font-size: $size-large
+
+.menu-list
+ line-height: $menu-list-line-height
+ a
+ border-radius: $menu-item-radius
+ color: $menu-item-color
+ display: block
+ padding: $menu-list-link-padding
+ &:hover
+ background-color: $menu-item-hover-background-color
+ color: $menu-item-hover-color
+ // Modifiers
+ &.is-active
+ background-color: $menu-item-active-background-color
+ color: $menu-item-active-color
+ li
+ ul
+ border-left: $menu-list-border-left
+ margin: $menu-nested-list-margin
+ padding-left: $menu-nested-list-padding-left
+
+.menu-label
+ color: $menu-label-color
+ font-size: $menu-label-font-size
+ letter-spacing: $menu-label-letter-spacing
+ text-transform: uppercase
+ &:not(:first-child)
+ margin-top: $menu-label-spacing
+ &:not(:last-child)
+ margin-bottom: $menu-label-spacing