jekyll-bulma-feather 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/COPYING.md +88 -0
- data/README.md +125 -0
- data/_includes/feather.html +3 -0
- data/_includes/footer.html +14 -0
- data/_includes/head.html +12 -0
- data/_includes/header.html +8 -0
- data/_includes/nav.html +38 -0
- data/_layouts/default.html +7 -0
- data/_layouts/empty.html +9 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/bulma.scss +1 -0
- data/_sass/bulma/bulma-rtl.sass +3 -0
- data/_sass/bulma/bulma.sass +10 -0
- data/_sass/bulma/sass/base/_all.sass +6 -0
- data/_sass/bulma/sass/base/animations.sass +5 -0
- data/_sass/bulma/sass/base/generic.sass +145 -0
- data/_sass/bulma/sass/base/helpers.sass +1 -0
- data/_sass/bulma/sass/base/minireset.sass +79 -0
- data/_sass/bulma/sass/components/_all.sass +15 -0
- data/_sass/bulma/sass/components/breadcrumb.sass +77 -0
- data/_sass/bulma/sass/components/card.sass +102 -0
- data/_sass/bulma/sass/components/dropdown.sass +83 -0
- data/_sass/bulma/sass/components/level.sass +79 -0
- data/_sass/bulma/sass/components/media.sass +59 -0
- data/_sass/bulma/sass/components/menu.sass +59 -0
- data/_sass/bulma/sass/components/message.sass +101 -0
- data/_sass/bulma/sass/components/modal.sass +117 -0
- data/_sass/bulma/sass/components/navbar.sass +445 -0
- data/_sass/bulma/sass/components/pagination.sass +153 -0
- data/_sass/bulma/sass/components/panel.sass +121 -0
- data/_sass/bulma/sass/components/tabs.sass +176 -0
- data/_sass/bulma/sass/elements/_all.sass +16 -0
- data/_sass/bulma/sass/elements/box.sass +26 -0
- data/_sass/bulma/sass/elements/button.sass +344 -0
- data/_sass/bulma/sass/elements/container.sass +29 -0
- data/_sass/bulma/sass/elements/content.sass +157 -0
- data/_sass/bulma/sass/elements/form.sass +1 -0
- data/_sass/bulma/sass/elements/icon.sass +21 -0
- data/_sass/bulma/sass/elements/image.sass +73 -0
- data/_sass/bulma/sass/elements/notification.sass +52 -0
- data/_sass/bulma/sass/elements/other.sass +41 -0
- data/_sass/bulma/sass/elements/progress.sass +73 -0
- data/_sass/bulma/sass/elements/table.sass +133 -0
- data/_sass/bulma/sass/elements/tag.sass +140 -0
- data/_sass/bulma/sass/elements/title.sass +72 -0
- data/_sass/bulma/sass/form/_all.sass +9 -0
- data/_sass/bulma/sass/form/checkbox-radio.sass +24 -0
- data/_sass/bulma/sass/form/file.sass +184 -0
- data/_sass/bulma/sass/form/input-textarea.sass +68 -0
- data/_sass/bulma/sass/form/select.sass +89 -0
- data/_sass/bulma/sass/form/shared.sass +60 -0
- data/_sass/bulma/sass/form/tools.sass +217 -0
- data/_sass/bulma/sass/grid/_all.sass +5 -0
- data/_sass/bulma/sass/grid/columns.sass +513 -0
- data/_sass/bulma/sass/grid/tiles.sass +36 -0
- data/_sass/bulma/sass/helpers/_all.sass +12 -0
- data/_sass/bulma/sass/helpers/color.sass +39 -0
- data/_sass/bulma/sass/helpers/flexbox.sass +35 -0
- data/_sass/bulma/sass/helpers/float.sass +10 -0
- data/_sass/bulma/sass/helpers/other.sass +14 -0
- data/_sass/bulma/sass/helpers/overflow.sass +2 -0
- data/_sass/bulma/sass/helpers/position.sass +7 -0
- data/_sass/bulma/sass/helpers/spacing.sass +31 -0
- data/_sass/bulma/sass/helpers/typography.sass +100 -0
- data/_sass/bulma/sass/helpers/visibility.sass +122 -0
- data/_sass/bulma/sass/layout/_all.sass +6 -0
- data/_sass/bulma/sass/layout/footer.sass +11 -0
- data/_sass/bulma/sass/layout/hero.sass +149 -0
- data/_sass/bulma/sass/layout/section.sass +15 -0
- data/_sass/bulma/sass/utilities/_all.sass +8 -0
- data/_sass/bulma/sass/utilities/animations.sass +1 -0
- data/_sass/bulma/sass/utilities/controls.sass +52 -0
- data/_sass/bulma/sass/utilities/derived-variables.sass +110 -0
- data/_sass/bulma/sass/utilities/functions.sass +115 -0
- data/_sass/bulma/sass/utilities/initial-variables.sass +78 -0
- data/_sass/bulma/sass/utilities/mixins.sass +285 -0
- data/_sass/jekyll-bulma-feather.scss +213 -0
- data/assets/feather-sprite.svg +1 -0
- data/assets/jekyll-bulma-feather.svg +125 -0
- data/assets/style.scss +5 -0
- metadata +166 -0
@@ -0,0 +1,153 @@
|
|
1
|
+
@import "../utilities/controls"
|
2
|
+
@import "../utilities/mixins"
|
3
|
+
|
4
|
+
$pagination-color: $text-strong !default
|
5
|
+
$pagination-border-color: $border !default
|
6
|
+
$pagination-margin: -0.25rem !default
|
7
|
+
$pagination-min-width: $control-height !default
|
8
|
+
|
9
|
+
$pagination-item-font-size: 1em !default
|
10
|
+
$pagination-item-margin: 0.25rem !default
|
11
|
+
$pagination-item-padding-left: 0.5em !default
|
12
|
+
$pagination-item-padding-right: 0.5em !default
|
13
|
+
|
14
|
+
$pagination-hover-color: $link-hover !default
|
15
|
+
$pagination-hover-border-color: $link-hover-border !default
|
16
|
+
|
17
|
+
$pagination-focus-color: $link-focus !default
|
18
|
+
$pagination-focus-border-color: $link-focus-border !default
|
19
|
+
|
20
|
+
$pagination-active-color: $link-active !default
|
21
|
+
$pagination-active-border-color: $link-active-border !default
|
22
|
+
|
23
|
+
$pagination-disabled-color: $text-light !default
|
24
|
+
$pagination-disabled-background-color: $border !default
|
25
|
+
$pagination-disabled-border-color: $border !default
|
26
|
+
|
27
|
+
$pagination-current-color: $link-invert !default
|
28
|
+
$pagination-current-background-color: $link !default
|
29
|
+
$pagination-current-border-color: $link !default
|
30
|
+
|
31
|
+
$pagination-ellipsis-color: $grey-light !default
|
32
|
+
|
33
|
+
$pagination-shadow-inset: inset 0 1px 2px rgba($scheme-invert, 0.2)
|
34
|
+
|
35
|
+
.pagination
|
36
|
+
@extend %block
|
37
|
+
font-size: $size-normal
|
38
|
+
margin: $pagination-margin
|
39
|
+
// Sizes
|
40
|
+
&.is-small
|
41
|
+
font-size: $size-small
|
42
|
+
&.is-medium
|
43
|
+
font-size: $size-medium
|
44
|
+
&.is-large
|
45
|
+
font-size: $size-large
|
46
|
+
&.is-rounded
|
47
|
+
.pagination-previous,
|
48
|
+
.pagination-next
|
49
|
+
padding-left: 1em
|
50
|
+
padding-right: 1em
|
51
|
+
border-radius: $radius-rounded
|
52
|
+
.pagination-link
|
53
|
+
border-radius: $radius-rounded
|
54
|
+
|
55
|
+
.pagination,
|
56
|
+
.pagination-list
|
57
|
+
align-items: center
|
58
|
+
display: flex
|
59
|
+
justify-content: center
|
60
|
+
text-align: center
|
61
|
+
|
62
|
+
.pagination-previous,
|
63
|
+
.pagination-next,
|
64
|
+
.pagination-link,
|
65
|
+
.pagination-ellipsis
|
66
|
+
@extend %control
|
67
|
+
@extend %unselectable
|
68
|
+
font-size: $pagination-item-font-size
|
69
|
+
justify-content: center
|
70
|
+
margin: $pagination-item-margin
|
71
|
+
padding-left: $pagination-item-padding-left
|
72
|
+
padding-right: $pagination-item-padding-right
|
73
|
+
text-align: center
|
74
|
+
|
75
|
+
.pagination-previous,
|
76
|
+
.pagination-next,
|
77
|
+
.pagination-link
|
78
|
+
border-color: $pagination-border-color
|
79
|
+
color: $pagination-color
|
80
|
+
min-width: $pagination-min-width
|
81
|
+
&:hover
|
82
|
+
border-color: $pagination-hover-border-color
|
83
|
+
color: $pagination-hover-color
|
84
|
+
&:focus
|
85
|
+
border-color: $pagination-focus-border-color
|
86
|
+
&:active
|
87
|
+
box-shadow: $pagination-shadow-inset
|
88
|
+
&[disabled]
|
89
|
+
background-color: $pagination-disabled-background-color
|
90
|
+
border-color: $pagination-disabled-border-color
|
91
|
+
box-shadow: none
|
92
|
+
color: $pagination-disabled-color
|
93
|
+
opacity: 0.5
|
94
|
+
|
95
|
+
.pagination-previous,
|
96
|
+
.pagination-next
|
97
|
+
padding-left: 0.75em
|
98
|
+
padding-right: 0.75em
|
99
|
+
white-space: nowrap
|
100
|
+
|
101
|
+
.pagination-link
|
102
|
+
&.is-current
|
103
|
+
background-color: $pagination-current-background-color
|
104
|
+
border-color: $pagination-current-border-color
|
105
|
+
color: $pagination-current-color
|
106
|
+
|
107
|
+
.pagination-ellipsis
|
108
|
+
color: $pagination-ellipsis-color
|
109
|
+
pointer-events: none
|
110
|
+
|
111
|
+
.pagination-list
|
112
|
+
flex-wrap: wrap
|
113
|
+
|
114
|
+
+mobile
|
115
|
+
.pagination
|
116
|
+
flex-wrap: wrap
|
117
|
+
.pagination-previous,
|
118
|
+
.pagination-next
|
119
|
+
flex-grow: 1
|
120
|
+
flex-shrink: 1
|
121
|
+
.pagination-list
|
122
|
+
li
|
123
|
+
flex-grow: 1
|
124
|
+
flex-shrink: 1
|
125
|
+
|
126
|
+
+tablet
|
127
|
+
.pagination-list
|
128
|
+
flex-grow: 1
|
129
|
+
flex-shrink: 1
|
130
|
+
justify-content: flex-start
|
131
|
+
order: 1
|
132
|
+
.pagination-previous
|
133
|
+
order: 2
|
134
|
+
.pagination-next
|
135
|
+
order: 3
|
136
|
+
.pagination
|
137
|
+
justify-content: space-between
|
138
|
+
&.is-centered
|
139
|
+
.pagination-previous
|
140
|
+
order: 1
|
141
|
+
.pagination-list
|
142
|
+
justify-content: center
|
143
|
+
order: 2
|
144
|
+
.pagination-next
|
145
|
+
order: 3
|
146
|
+
&.is-right
|
147
|
+
.pagination-previous
|
148
|
+
order: 1
|
149
|
+
.pagination-next
|
150
|
+
order: 2
|
151
|
+
.pagination-list
|
152
|
+
justify-content: flex-end
|
153
|
+
order: 3
|
@@ -0,0 +1,121 @@
|
|
1
|
+
@import "../utilities/mixins"
|
2
|
+
|
3
|
+
$panel-margin: $block-spacing !default
|
4
|
+
$panel-item-border: 1px solid $border-light !default
|
5
|
+
$panel-radius: $radius-large !default
|
6
|
+
$panel-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default
|
7
|
+
|
8
|
+
$panel-heading-background-color: $border-light !default
|
9
|
+
$panel-heading-color: $text-strong !default
|
10
|
+
$panel-heading-line-height: 1.25 !default
|
11
|
+
$panel-heading-padding: 0.75em 1em !default
|
12
|
+
$panel-heading-radius: $radius !default
|
13
|
+
$panel-heading-size: 1.25em !default
|
14
|
+
$panel-heading-weight: $weight-bold !default
|
15
|
+
|
16
|
+
$panel-tabs-font-size: 0.875em !default
|
17
|
+
$panel-tab-border-bottom: 1px solid $border !default
|
18
|
+
$panel-tab-active-border-bottom-color: $link-active-border !default
|
19
|
+
$panel-tab-active-color: $link-active !default
|
20
|
+
|
21
|
+
$panel-list-item-color: $text !default
|
22
|
+
$panel-list-item-hover-color: $link !default
|
23
|
+
|
24
|
+
$panel-block-color: $text-strong !default
|
25
|
+
$panel-block-hover-background-color: $background !default
|
26
|
+
$panel-block-active-border-left-color: $link !default
|
27
|
+
$panel-block-active-color: $link-active !default
|
28
|
+
$panel-block-active-icon-color: $link !default
|
29
|
+
|
30
|
+
$panel-icon-color: $text-light !default
|
31
|
+
$panel-colors: $colors !default
|
32
|
+
|
33
|
+
.panel
|
34
|
+
border-radius: $panel-radius
|
35
|
+
box-shadow: $panel-shadow
|
36
|
+
font-size: $size-normal
|
37
|
+
&:not(:last-child)
|
38
|
+
margin-bottom: $panel-margin
|
39
|
+
// Colors
|
40
|
+
@each $name, $components in $panel-colors
|
41
|
+
$color: nth($components, 1)
|
42
|
+
$color-invert: nth($components, 2)
|
43
|
+
&.is-#{$name}
|
44
|
+
.panel-heading
|
45
|
+
background-color: $color
|
46
|
+
color: $color-invert
|
47
|
+
.panel-tabs a.is-active
|
48
|
+
border-bottom-color: $color
|
49
|
+
.panel-block.is-active .panel-icon
|
50
|
+
color: $color
|
51
|
+
|
52
|
+
.panel-tabs,
|
53
|
+
.panel-block
|
54
|
+
&:not(:last-child)
|
55
|
+
border-bottom: $panel-item-border
|
56
|
+
|
57
|
+
.panel-heading
|
58
|
+
background-color: $panel-heading-background-color
|
59
|
+
border-radius: $panel-radius $panel-radius 0 0
|
60
|
+
color: $panel-heading-color
|
61
|
+
font-size: $panel-heading-size
|
62
|
+
font-weight: $panel-heading-weight
|
63
|
+
line-height: $panel-heading-line-height
|
64
|
+
padding: $panel-heading-padding
|
65
|
+
|
66
|
+
.panel-tabs
|
67
|
+
align-items: flex-end
|
68
|
+
display: flex
|
69
|
+
font-size: $panel-tabs-font-size
|
70
|
+
justify-content: center
|
71
|
+
a
|
72
|
+
border-bottom: $panel-tab-border-bottom
|
73
|
+
margin-bottom: -1px
|
74
|
+
padding: 0.5em
|
75
|
+
// Modifiers
|
76
|
+
&.is-active
|
77
|
+
border-bottom-color: $panel-tab-active-border-bottom-color
|
78
|
+
color: $panel-tab-active-color
|
79
|
+
|
80
|
+
.panel-list
|
81
|
+
a
|
82
|
+
color: $panel-list-item-color
|
83
|
+
&:hover
|
84
|
+
color: $panel-list-item-hover-color
|
85
|
+
|
86
|
+
.panel-block
|
87
|
+
align-items: center
|
88
|
+
color: $panel-block-color
|
89
|
+
display: flex
|
90
|
+
justify-content: flex-start
|
91
|
+
padding: 0.5em 0.75em
|
92
|
+
input[type="checkbox"]
|
93
|
+
+ltr-property("margin", 0.75em)
|
94
|
+
& > .control
|
95
|
+
flex-grow: 1
|
96
|
+
flex-shrink: 1
|
97
|
+
width: 100%
|
98
|
+
&.is-wrapped
|
99
|
+
flex-wrap: wrap
|
100
|
+
&.is-active
|
101
|
+
border-left-color: $panel-block-active-border-left-color
|
102
|
+
color: $panel-block-active-color
|
103
|
+
.panel-icon
|
104
|
+
color: $panel-block-active-icon-color
|
105
|
+
&:last-child
|
106
|
+
border-bottom-left-radius: $panel-radius
|
107
|
+
border-bottom-right-radius: $panel-radius
|
108
|
+
|
109
|
+
a.panel-block,
|
110
|
+
label.panel-block
|
111
|
+
cursor: pointer
|
112
|
+
&:hover
|
113
|
+
background-color: $panel-block-hover-background-color
|
114
|
+
|
115
|
+
.panel-icon
|
116
|
+
+fa(14px, 1em)
|
117
|
+
color: $panel-icon-color
|
118
|
+
+ltr-property("margin", 0.75em)
|
119
|
+
.fa
|
120
|
+
font-size: inherit
|
121
|
+
line-height: inherit
|
@@ -0,0 +1,176 @@
|
|
1
|
+
@import "../utilities/mixins"
|
2
|
+
|
3
|
+
$tabs-border-bottom-color: $border !default
|
4
|
+
$tabs-border-bottom-style: solid !default
|
5
|
+
$tabs-border-bottom-width: 1px !default
|
6
|
+
$tabs-link-color: $text !default
|
7
|
+
$tabs-link-hover-border-bottom-color: $text-strong !default
|
8
|
+
$tabs-link-hover-color: $text-strong !default
|
9
|
+
$tabs-link-active-border-bottom-color: $link !default
|
10
|
+
$tabs-link-active-color: $link !default
|
11
|
+
$tabs-link-padding: 0.5em 1em !default
|
12
|
+
|
13
|
+
$tabs-boxed-link-radius: $radius !default
|
14
|
+
$tabs-boxed-link-hover-background-color: $background !default
|
15
|
+
$tabs-boxed-link-hover-border-bottom-color: $border !default
|
16
|
+
|
17
|
+
$tabs-boxed-link-active-background-color: $scheme-main !default
|
18
|
+
$tabs-boxed-link-active-border-color: $border !default
|
19
|
+
$tabs-boxed-link-active-border-bottom-color: transparent !default
|
20
|
+
|
21
|
+
$tabs-toggle-link-border-color: $border !default
|
22
|
+
$tabs-toggle-link-border-style: solid !default
|
23
|
+
$tabs-toggle-link-border-width: 1px !default
|
24
|
+
$tabs-toggle-link-hover-background-color: $background !default
|
25
|
+
$tabs-toggle-link-hover-border-color: $border-hover !default
|
26
|
+
$tabs-toggle-link-radius: $radius !default
|
27
|
+
$tabs-toggle-link-active-background-color: $link !default
|
28
|
+
$tabs-toggle-link-active-border-color: $link !default
|
29
|
+
$tabs-toggle-link-active-color: $link-invert !default
|
30
|
+
|
31
|
+
.tabs
|
32
|
+
@extend %block
|
33
|
+
+overflow-touch
|
34
|
+
@extend %unselectable
|
35
|
+
align-items: stretch
|
36
|
+
display: flex
|
37
|
+
font-size: $size-normal
|
38
|
+
justify-content: space-between
|
39
|
+
overflow: hidden
|
40
|
+
overflow-x: auto
|
41
|
+
white-space: nowrap
|
42
|
+
a
|
43
|
+
align-items: center
|
44
|
+
border-bottom-color: $tabs-border-bottom-color
|
45
|
+
border-bottom-style: $tabs-border-bottom-style
|
46
|
+
border-bottom-width: $tabs-border-bottom-width
|
47
|
+
color: $tabs-link-color
|
48
|
+
display: flex
|
49
|
+
justify-content: center
|
50
|
+
margin-bottom: -#{$tabs-border-bottom-width}
|
51
|
+
padding: $tabs-link-padding
|
52
|
+
vertical-align: top
|
53
|
+
&:hover
|
54
|
+
border-bottom-color: $tabs-link-hover-border-bottom-color
|
55
|
+
color: $tabs-link-hover-color
|
56
|
+
li
|
57
|
+
display: block
|
58
|
+
&.is-active
|
59
|
+
a
|
60
|
+
border-bottom-color: $tabs-link-active-border-bottom-color
|
61
|
+
color: $tabs-link-active-color
|
62
|
+
ul
|
63
|
+
align-items: center
|
64
|
+
border-bottom-color: $tabs-border-bottom-color
|
65
|
+
border-bottom-style: $tabs-border-bottom-style
|
66
|
+
border-bottom-width: $tabs-border-bottom-width
|
67
|
+
display: flex
|
68
|
+
flex-grow: 1
|
69
|
+
flex-shrink: 0
|
70
|
+
justify-content: flex-start
|
71
|
+
&.is-left
|
72
|
+
padding-right: 0.75em
|
73
|
+
&.is-center
|
74
|
+
flex: none
|
75
|
+
justify-content: center
|
76
|
+
padding-left: 0.75em
|
77
|
+
padding-right: 0.75em
|
78
|
+
&.is-right
|
79
|
+
justify-content: flex-end
|
80
|
+
padding-left: 0.75em
|
81
|
+
.icon
|
82
|
+
&:first-child
|
83
|
+
+ltr-property("margin", 0.5em)
|
84
|
+
&:last-child
|
85
|
+
+ltr-property("margin", 0.5em, false)
|
86
|
+
// Alignment
|
87
|
+
&.is-centered
|
88
|
+
ul
|
89
|
+
justify-content: center
|
90
|
+
&.is-right
|
91
|
+
ul
|
92
|
+
justify-content: flex-end
|
93
|
+
// Styles
|
94
|
+
&.is-boxed
|
95
|
+
a
|
96
|
+
border: 1px solid transparent
|
97
|
+
+ltr
|
98
|
+
border-radius: $tabs-boxed-link-radius $tabs-boxed-link-radius 0 0
|
99
|
+
+rtl
|
100
|
+
border-radius: 0 0 $tabs-boxed-link-radius $tabs-boxed-link-radius
|
101
|
+
&:hover
|
102
|
+
background-color: $tabs-boxed-link-hover-background-color
|
103
|
+
border-bottom-color: $tabs-boxed-link-hover-border-bottom-color
|
104
|
+
li
|
105
|
+
&.is-active
|
106
|
+
a
|
107
|
+
background-color: $tabs-boxed-link-active-background-color
|
108
|
+
border-color: $tabs-boxed-link-active-border-color
|
109
|
+
border-bottom-color: $tabs-boxed-link-active-border-bottom-color !important
|
110
|
+
&.is-fullwidth
|
111
|
+
li
|
112
|
+
flex-grow: 1
|
113
|
+
flex-shrink: 0
|
114
|
+
&.is-toggle
|
115
|
+
a
|
116
|
+
border-color: $tabs-toggle-link-border-color
|
117
|
+
border-style: $tabs-toggle-link-border-style
|
118
|
+
border-width: $tabs-toggle-link-border-width
|
119
|
+
margin-bottom: 0
|
120
|
+
position: relative
|
121
|
+
&:hover
|
122
|
+
background-color: $tabs-toggle-link-hover-background-color
|
123
|
+
border-color: $tabs-toggle-link-hover-border-color
|
124
|
+
z-index: 2
|
125
|
+
li
|
126
|
+
& + li
|
127
|
+
+ltr-property("margin", -#{$tabs-toggle-link-border-width}, false)
|
128
|
+
&:first-child a
|
129
|
+
+ltr
|
130
|
+
border-top-left-radius: $tabs-toggle-link-radius
|
131
|
+
border-bottom-left-radius: $tabs-toggle-link-radius
|
132
|
+
+rtl
|
133
|
+
border-top-right-radius: $tabs-toggle-link-radius
|
134
|
+
border-bottom-right-radius: $tabs-toggle-link-radius
|
135
|
+
&:last-child a
|
136
|
+
+ltr
|
137
|
+
border-top-right-radius: $tabs-toggle-link-radius
|
138
|
+
border-bottom-right-radius: $tabs-toggle-link-radius
|
139
|
+
+rtl
|
140
|
+
border-top-left-radius: $tabs-toggle-link-radius
|
141
|
+
border-bottom-left-radius: $tabs-toggle-link-radius
|
142
|
+
&.is-active
|
143
|
+
a
|
144
|
+
background-color: $tabs-toggle-link-active-background-color
|
145
|
+
border-color: $tabs-toggle-link-active-border-color
|
146
|
+
color: $tabs-toggle-link-active-color
|
147
|
+
z-index: 1
|
148
|
+
ul
|
149
|
+
border-bottom: none
|
150
|
+
&.is-toggle-rounded
|
151
|
+
li
|
152
|
+
&:first-child a
|
153
|
+
+ltr
|
154
|
+
border-bottom-left-radius: $radius-rounded
|
155
|
+
border-top-left-radius: $radius-rounded
|
156
|
+
padding-left: 1.25em
|
157
|
+
+rtl
|
158
|
+
border-bottom-right-radius: $radius-rounded
|
159
|
+
border-top-right-radius: $radius-rounded
|
160
|
+
padding-right: 1.25em
|
161
|
+
&:last-child a
|
162
|
+
+ltr
|
163
|
+
border-bottom-right-radius: $radius-rounded
|
164
|
+
border-top-right-radius: $radius-rounded
|
165
|
+
padding-right: 1.25em
|
166
|
+
+rtl
|
167
|
+
border-bottom-left-radius: $radius-rounded
|
168
|
+
border-top-left-radius: $radius-rounded
|
169
|
+
padding-left: 1.25em
|
170
|
+
// Sizes
|
171
|
+
&.is-small
|
172
|
+
font-size: $size-small
|
173
|
+
&.is-medium
|
174
|
+
font-size: $size-medium
|
175
|
+
&.is-large
|
176
|
+
font-size: $size-large
|