jekyll-theme-opentoolbox 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +661 -0
  3. data/README.md +73 -0
  4. data/_includes/banner.html +24 -0
  5. data/_includes/callouts.html +39 -0
  6. data/_includes/disqus.html +17 -0
  7. data/_includes/footer-scripts.html +1 -0
  8. data/_includes/footer.html +34 -0
  9. data/_includes/gallery.html +25 -0
  10. data/_includes/google-analytics.html +8 -0
  11. data/_includes/head-scripts.html +0 -0
  12. data/_includes/head.html +19 -0
  13. data/_includes/header.html +45 -0
  14. data/_includes/hero.html +11 -0
  15. data/_includes/image-modal.html +18 -0
  16. data/_includes/join.html +30 -0
  17. data/_includes/latest-posts.html +12 -0
  18. data/_includes/menubar.html +21 -0
  19. data/_includes/notification.html +17 -0
  20. data/_includes/pagination.html +23 -0
  21. data/_includes/post-card.html +29 -0
  22. data/_includes/rating.html +14 -0
  23. data/_includes/review.html +27 -0
  24. data/_includes/share-buttons.html +19 -0
  25. data/_includes/showcase.html +76 -0
  26. data/_includes/sponsors.html +42 -0
  27. data/_includes/sub-pages.html +28 -0
  28. data/_includes/subscribe.html +6 -0
  29. data/_includes/tabs.html +18 -0
  30. data/_includes/tag.html +3 -0
  31. data/_includes/toc.html +82 -0
  32. data/_includes/vimeo.html +3 -0
  33. data/_includes/youtube.html +8 -0
  34. data/_layouts/blog.html +20 -0
  35. data/_layouts/default.html +66 -0
  36. data/_layouts/page.html +11 -0
  37. data/_layouts/post.html +23 -0
  38. data/_layouts/product-category.html +42 -0
  39. data/_layouts/product.html +61 -0
  40. data/_layouts/recipe.html +98 -0
  41. data/_layouts/resource.html +9 -0
  42. data/_posts/2021-03-24-hello.md +13 -0
  43. data/_sass/_layout.scss +37 -0
  44. data/_sass/_main.scss +22 -0
  45. data/_sass/_showcase.scss +13 -0
  46. data/_sass/syntax.scss +209 -0
  47. data/assets/css/app.scss +157 -0
  48. data/assets/css/highlight.css +78 -0
  49. data/assets/js/app.js +1 -0
  50. data/blog/index.html +6 -0
  51. data/node_modules/bulma/CHANGELOG.md +1558 -0
  52. data/node_modules/bulma/LICENSE +21 -0
  53. data/node_modules/bulma/README.md +134 -0
  54. data/node_modules/bulma/bulma.sass +10 -0
  55. data/node_modules/bulma/css/bulma-rtl.css +11811 -0
  56. data/node_modules/bulma/css/bulma-rtl.css.map +1 -0
  57. data/node_modules/bulma/css/bulma-rtl.min.css +1 -0
  58. data/node_modules/bulma/css/bulma.css +11811 -0
  59. data/node_modules/bulma/css/bulma.css.map +1 -0
  60. data/node_modules/bulma/css/bulma.min.css +1 -0
  61. data/node_modules/bulma/package.json +81 -0
  62. data/node_modules/bulma/sass/base/_all.sass +6 -0
  63. data/node_modules/bulma/sass/base/animations.sass +5 -0
  64. data/node_modules/bulma/sass/base/generic.sass +145 -0
  65. data/node_modules/bulma/sass/base/helpers.sass +1 -0
  66. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  67. data/node_modules/bulma/sass/components/_all.sass +15 -0
  68. data/node_modules/bulma/sass/components/breadcrumb.sass +77 -0
  69. data/node_modules/bulma/sass/components/card.sass +103 -0
  70. data/node_modules/bulma/sass/components/dropdown.sass +83 -0
  71. data/node_modules/bulma/sass/components/level.sass +79 -0
  72. data/node_modules/bulma/sass/components/media.sass +59 -0
  73. data/node_modules/bulma/sass/components/menu.sass +59 -0
  74. data/node_modules/bulma/sass/components/message.sass +101 -0
  75. data/node_modules/bulma/sass/components/modal.sass +117 -0
  76. data/node_modules/bulma/sass/components/navbar.sass +446 -0
  77. data/node_modules/bulma/sass/components/pagination.sass +166 -0
  78. data/node_modules/bulma/sass/components/panel.sass +121 -0
  79. data/node_modules/bulma/sass/components/tabs.sass +176 -0
  80. data/node_modules/bulma/sass/elements/_all.sass +16 -0
  81. data/node_modules/bulma/sass/elements/box.sass +26 -0
  82. data/node_modules/bulma/sass/elements/button.sass +345 -0
  83. data/node_modules/bulma/sass/elements/container.sass +29 -0
  84. data/node_modules/bulma/sass/elements/content.sass +159 -0
  85. data/node_modules/bulma/sass/elements/form.sass +1 -0
  86. data/node_modules/bulma/sass/elements/icon.sass +46 -0
  87. data/node_modules/bulma/sass/elements/image.sass +73 -0
  88. data/node_modules/bulma/sass/elements/notification.sass +52 -0
  89. data/node_modules/bulma/sass/elements/other.sass +31 -0
  90. data/node_modules/bulma/sass/elements/progress.sass +73 -0
  91. data/node_modules/bulma/sass/elements/table.sass +133 -0
  92. data/node_modules/bulma/sass/elements/tag.sass +140 -0
  93. data/node_modules/bulma/sass/elements/title.sass +70 -0
  94. data/node_modules/bulma/sass/form/_all.sass +9 -0
  95. data/node_modules/bulma/sass/form/checkbox-radio.sass +22 -0
  96. data/node_modules/bulma/sass/form/file.sass +184 -0
  97. data/node_modules/bulma/sass/form/input-textarea.sass +66 -0
  98. data/node_modules/bulma/sass/form/select.sass +87 -0
  99. data/node_modules/bulma/sass/form/shared.sass +60 -0
  100. data/node_modules/bulma/sass/form/tools.sass +215 -0
  101. data/node_modules/bulma/sass/grid/_all.sass +5 -0
  102. data/node_modules/bulma/sass/grid/columns.sass +513 -0
  103. data/node_modules/bulma/sass/grid/tiles.sass +36 -0
  104. data/node_modules/bulma/sass/helpers/_all.sass +12 -0
  105. data/node_modules/bulma/sass/helpers/color.sass +39 -0
  106. data/node_modules/bulma/sass/helpers/flexbox.sass +35 -0
  107. data/node_modules/bulma/sass/helpers/float.sass +10 -0
  108. data/node_modules/bulma/sass/helpers/other.sass +14 -0
  109. data/node_modules/bulma/sass/helpers/overflow.sass +2 -0
  110. data/node_modules/bulma/sass/helpers/position.sass +7 -0
  111. data/node_modules/bulma/sass/helpers/spacing.sass +31 -0
  112. data/node_modules/bulma/sass/helpers/typography.sass +103 -0
  113. data/node_modules/bulma/sass/helpers/visibility.sass +122 -0
  114. data/node_modules/bulma/sass/layout/_all.sass +6 -0
  115. data/node_modules/bulma/sass/layout/footer.sass +11 -0
  116. data/node_modules/bulma/sass/layout/hero.sass +153 -0
  117. data/node_modules/bulma/sass/layout/section.sass +17 -0
  118. data/node_modules/bulma/sass/utilities/_all.sass +9 -0
  119. data/node_modules/bulma/sass/utilities/animations.sass +1 -0
  120. data/node_modules/bulma/sass/utilities/controls.sass +49 -0
  121. data/node_modules/bulma/sass/utilities/derived-variables.sass +114 -0
  122. data/node_modules/bulma/sass/utilities/extends.sass +25 -0
  123. data/node_modules/bulma/sass/utilities/functions.sass +136 -0
  124. data/node_modules/bulma/sass/utilities/initial-variables.sass +78 -0
  125. data/node_modules/bulma/sass/utilities/mixins.sass +280 -0
  126. data/node_modules/bulma-block-list/LICENSE.txt +21 -0
  127. data/node_modules/bulma-block-list/README.md +32 -0
  128. data/node_modules/bulma-block-list/docs/Gemfile +3 -0
  129. data/node_modules/bulma-block-list/docs/_config.yml +15 -0
  130. data/node_modules/bulma-block-list/docs/_data/menu.yaml +20 -0
  131. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +109 -0
  132. data/node_modules/bulma-block-list/docs/_sass/_main.scss +20 -0
  133. data/node_modules/bulma-block-list/docs/assets/css/app.scss +7 -0
  134. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  135. data/node_modules/bulma-block-list/docs/index.html +260 -0
  136. data/node_modules/bulma-block-list/node_modules/bulma/CHANGELOG.md +1390 -0
  137. data/node_modules/bulma-block-list/node_modules/bulma/LICENSE +21 -0
  138. data/node_modules/bulma-block-list/node_modules/bulma/README.md +130 -0
  139. data/node_modules/bulma-block-list/node_modules/bulma/bulma.sass +9 -0
  140. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css +10855 -0
  141. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css.map +1 -0
  142. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.min.css +1 -0
  143. data/node_modules/bulma-block-list/node_modules/bulma/package.json +77 -0
  144. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/_all.sass +5 -0
  145. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/generic.sass +142 -0
  146. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/helpers.sass +281 -0
  147. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/minireset.sass +79 -0
  148. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/_all.sass +15 -0
  149. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  150. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/card.sass +79 -0
  151. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/dropdown.sass +81 -0
  152. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/level.sass +77 -0
  153. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/list.sass +39 -0
  154. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/media.sass +50 -0
  155. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/menu.sass +57 -0
  156. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/message.sass +99 -0
  157. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/modal.sass +113 -0
  158. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/navbar.sass +441 -0
  159. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/pagination.sass +150 -0
  160. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/panel.sass +119 -0
  161. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/tabs.sass +151 -0
  162. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/_all.sass +15 -0
  163. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/box.sass +24 -0
  164. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/button.sass +323 -0
  165. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/container.sass +24 -0
  166. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/content.sass +155 -0
  167. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/form.sass +1 -0
  168. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/icon.sass +21 -0
  169. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/image.sass +71 -0
  170. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/notification.sass +43 -0
  171. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/other.sass +39 -0
  172. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/progress.sass +67 -0
  173. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/table.sass +127 -0
  174. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/tag.sass +128 -0
  175. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/title.sass +70 -0
  176. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/_all.sass +8 -0
  177. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/checkbox-radio.sass +21 -0
  178. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/file.sass +180 -0
  179. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/input-textarea.sass +64 -0
  180. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/select.sass +85 -0
  181. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/shared.sass +55 -0
  182. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/tools.sass +205 -0
  183. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/_all.sass +4 -0
  184. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/columns.sass +504 -0
  185. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/tiles.sass +34 -0
  186. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/_all.sass +5 -0
  187. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/footer.sass +9 -0
  188. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/hero.sass +145 -0
  189. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/section.sass +13 -0
  190. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/_all.sass +8 -0
  191. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/animations.sass +5 -0
  192. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/controls.sass +50 -0
  193. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/derived-variables.sass +106 -0
  194. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/functions.sass +110 -0
  195. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/initial-variables.sass +77 -0
  196. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  197. data/node_modules/bulma-block-list/package.json +56 -0
  198. data/node_modules/bulma-block-list/src/block-list.scss +109 -0
  199. data/node_modules/bulma-block-list/src/demo.scss +3 -0
  200. data/package-lock.json +28 -0
  201. data/package.json +20 -0
  202. metadata +441 -0
@@ -0,0 +1,142 @@
1
+ $body-background-color: $scheme-main !default
2
+ $body-size: 16px !default
3
+ $body-min-width: 300px !default
4
+ $body-rendering: optimizeLegibility !default
5
+ $body-family: $family-primary !default
6
+ $body-overflow-x: hidden !default
7
+ $body-overflow-y: scroll !default
8
+
9
+ $body-color: $text !default
10
+ $body-font-size: 1em !default
11
+ $body-weight: $weight-normal !default
12
+ $body-line-height: 1.5 !default
13
+
14
+ $code-family: $family-code !default
15
+ $code-padding: 0.25em 0.5em 0.25em !default
16
+ $code-weight: normal !default
17
+ $code-size: 0.875em !default
18
+
19
+ $small-font-size: 0.875em !default
20
+
21
+ $hr-background-color: $background !default
22
+ $hr-height: 2px !default
23
+ $hr-margin: 1.5rem 0 !default
24
+
25
+ $strong-color: $text-strong !default
26
+ $strong-weight: $weight-bold !default
27
+
28
+ $pre-font-size: 0.875em !default
29
+ $pre-padding: 1.25rem 1.5rem !default
30
+ $pre-code-font-size: 1em !default
31
+
32
+ html
33
+ background-color: $body-background-color
34
+ font-size: $body-size
35
+ -moz-osx-font-smoothing: grayscale
36
+ -webkit-font-smoothing: antialiased
37
+ min-width: $body-min-width
38
+ overflow-x: $body-overflow-x
39
+ overflow-y: $body-overflow-y
40
+ text-rendering: $body-rendering
41
+ text-size-adjust: 100%
42
+
43
+ article,
44
+ aside,
45
+ figure,
46
+ footer,
47
+ header,
48
+ hgroup,
49
+ section
50
+ display: block
51
+
52
+ body,
53
+ button,
54
+ input,
55
+ select,
56
+ textarea
57
+ font-family: $body-family
58
+
59
+ code,
60
+ pre
61
+ -moz-osx-font-smoothing: auto
62
+ -webkit-font-smoothing: auto
63
+ font-family: $code-family
64
+
65
+ body
66
+ color: $body-color
67
+ font-size: $body-font-size
68
+ font-weight: $body-weight
69
+ line-height: $body-line-height
70
+
71
+ // Inline
72
+
73
+ a
74
+ color: $link
75
+ cursor: pointer
76
+ text-decoration: none
77
+ strong
78
+ color: currentColor
79
+ &:hover
80
+ color: $link-hover
81
+
82
+ code
83
+ background-color: $code-background
84
+ color: $code
85
+ font-size: $code-size
86
+ font-weight: $code-weight
87
+ padding: $code-padding
88
+
89
+ hr
90
+ background-color: $hr-background-color
91
+ border: none
92
+ display: block
93
+ height: $hr-height
94
+ margin: $hr-margin
95
+
96
+ img
97
+ height: auto
98
+ max-width: 100%
99
+
100
+ input[type="checkbox"],
101
+ input[type="radio"]
102
+ vertical-align: baseline
103
+
104
+ small
105
+ font-size: $small-font-size
106
+
107
+ span
108
+ font-style: inherit
109
+ font-weight: inherit
110
+
111
+ strong
112
+ color: $strong-color
113
+ font-weight: $strong-weight
114
+
115
+ // Block
116
+
117
+ fieldset
118
+ border: none
119
+
120
+ pre
121
+ +overflow-touch
122
+ background-color: $pre-background
123
+ color: $pre
124
+ font-size: $pre-font-size
125
+ overflow-x: auto
126
+ padding: $pre-padding
127
+ white-space: pre
128
+ word-wrap: normal
129
+ code
130
+ background-color: transparent
131
+ color: currentColor
132
+ font-size: $pre-code-font-size
133
+ padding: 0
134
+
135
+ table
136
+ td,
137
+ th
138
+ vertical-align: top
139
+ &:not([align])
140
+ text-align: left
141
+ th
142
+ color: $text-strong
@@ -0,0 +1,281 @@
1
+ // Float
2
+
3
+ .is-clearfix
4
+ +clearfix
5
+
6
+ .is-pulled-left
7
+ float: left !important
8
+
9
+ .is-pulled-right
10
+ float: right !important
11
+
12
+ // Overflow
13
+
14
+ .is-clipped
15
+ overflow: hidden !important
16
+
17
+ // Overlay
18
+
19
+ .is-overlay
20
+ @extend %overlay
21
+
22
+ // Typography
23
+
24
+ =typography-size($target:'')
25
+ @each $size in $sizes
26
+ $i: index($sizes, $size)
27
+ .is-size-#{$i}#{if($target == '', '', '-' + $target)}
28
+ font-size: $size !important
29
+
30
+ +typography-size()
31
+
32
+ +mobile
33
+ +typography-size('mobile')
34
+
35
+ +tablet
36
+ +typography-size('tablet')
37
+
38
+ +touch
39
+ +typography-size('touch')
40
+
41
+ +desktop
42
+ +typography-size('desktop')
43
+
44
+ +widescreen
45
+ +typography-size('widescreen')
46
+
47
+ +fullhd
48
+ +typography-size('fullhd')
49
+
50
+ $alignments: ('centered': 'center', 'justified': 'justify', 'left': 'left', 'right': 'right')
51
+
52
+ @each $alignment, $text-align in $alignments
53
+ .has-text-#{$alignment}
54
+ text-align: #{$text-align} !important
55
+
56
+ @each $alignment, $text-align in $alignments
57
+ +mobile
58
+ .has-text-#{$alignment}-mobile
59
+ text-align: #{$text-align} !important
60
+ +tablet
61
+ .has-text-#{$alignment}-tablet
62
+ text-align: #{$text-align} !important
63
+ +tablet-only
64
+ .has-text-#{$alignment}-tablet-only
65
+ text-align: #{$text-align} !important
66
+ +touch
67
+ .has-text-#{$alignment}-touch
68
+ text-align: #{$text-align} !important
69
+ +desktop
70
+ .has-text-#{$alignment}-desktop
71
+ text-align: #{$text-align} !important
72
+ +desktop-only
73
+ .has-text-#{$alignment}-desktop-only
74
+ text-align: #{$text-align} !important
75
+ +widescreen
76
+ .has-text-#{$alignment}-widescreen
77
+ text-align: #{$text-align} !important
78
+ +widescreen-only
79
+ .has-text-#{$alignment}-widescreen-only
80
+ text-align: #{$text-align} !important
81
+ +fullhd
82
+ .has-text-#{$alignment}-fullhd
83
+ text-align: #{$text-align} !important
84
+
85
+ .is-capitalized
86
+ text-transform: capitalize !important
87
+
88
+ .is-lowercase
89
+ text-transform: lowercase !important
90
+
91
+ .is-uppercase
92
+ text-transform: uppercase !important
93
+
94
+ .is-italic
95
+ font-style: italic !important
96
+
97
+ @each $name, $pair in $colors
98
+ $color: nth($pair, 1)
99
+ .has-text-#{$name}
100
+ color: $color !important
101
+ a.has-text-#{$name}
102
+ &:hover,
103
+ &:focus
104
+ color: bulmaDarken($color, 10%) !important
105
+ .has-background-#{$name}
106
+ background-color: $color !important
107
+
108
+ @each $name, $shade in $shades
109
+ .has-text-#{$name}
110
+ color: $shade !important
111
+ .has-background-#{$name}
112
+ background-color: $shade !important
113
+
114
+ .has-text-weight-light
115
+ font-weight: $weight-light !important
116
+ .has-text-weight-normal
117
+ font-weight: $weight-normal !important
118
+ .has-text-weight-medium
119
+ font-weight: $weight-medium !important
120
+ .has-text-weight-semibold
121
+ font-weight: $weight-semibold !important
122
+ .has-text-weight-bold
123
+ font-weight: $weight-bold !important
124
+
125
+ .is-family-primary
126
+ font-family: $family-primary !important
127
+
128
+ .is-family-secondary
129
+ font-family: $family-secondary !important
130
+
131
+ .is-family-sans-serif
132
+ font-family: $family-sans-serif !important
133
+
134
+ .is-family-monospace
135
+ font-family: $family-monospace !important
136
+
137
+ .is-family-code
138
+ font-family: $family-code !important
139
+
140
+ // Visibility
141
+
142
+ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
143
+
144
+ @each $display in $displays
145
+ .is-#{$display}
146
+ display: #{$display} !important
147
+ +mobile
148
+ .is-#{$display}-mobile
149
+ display: #{$display} !important
150
+ +tablet
151
+ .is-#{$display}-tablet
152
+ display: #{$display} !important
153
+ +tablet-only
154
+ .is-#{$display}-tablet-only
155
+ display: #{$display} !important
156
+ +touch
157
+ .is-#{$display}-touch
158
+ display: #{$display} !important
159
+ +desktop
160
+ .is-#{$display}-desktop
161
+ display: #{$display} !important
162
+ +desktop-only
163
+ .is-#{$display}-desktop-only
164
+ display: #{$display} !important
165
+ +widescreen
166
+ .is-#{$display}-widescreen
167
+ display: #{$display} !important
168
+ +widescreen-only
169
+ .is-#{$display}-widescreen-only
170
+ display: #{$display} !important
171
+ +fullhd
172
+ .is-#{$display}-fullhd
173
+ display: #{$display} !important
174
+
175
+ .is-hidden
176
+ display: none !important
177
+
178
+ .is-sr-only
179
+ border: none !important
180
+ clip: rect(0, 0, 0, 0) !important
181
+ height: 0.01em !important
182
+ overflow: hidden !important
183
+ padding: 0 !important
184
+ position: absolute !important
185
+ white-space: nowrap !important
186
+ width: 0.01em !important
187
+
188
+ +mobile
189
+ .is-hidden-mobile
190
+ display: none !important
191
+
192
+ +tablet
193
+ .is-hidden-tablet
194
+ display: none !important
195
+
196
+ +tablet-only
197
+ .is-hidden-tablet-only
198
+ display: none !important
199
+
200
+ +touch
201
+ .is-hidden-touch
202
+ display: none !important
203
+
204
+ +desktop
205
+ .is-hidden-desktop
206
+ display: none !important
207
+
208
+ +desktop-only
209
+ .is-hidden-desktop-only
210
+ display: none !important
211
+
212
+ +widescreen
213
+ .is-hidden-widescreen
214
+ display: none !important
215
+
216
+ +widescreen-only
217
+ .is-hidden-widescreen-only
218
+ display: none !important
219
+
220
+ +fullhd
221
+ .is-hidden-fullhd
222
+ display: none !important
223
+
224
+ .is-invisible
225
+ visibility: hidden !important
226
+
227
+ +mobile
228
+ .is-invisible-mobile
229
+ visibility: hidden !important
230
+
231
+ +tablet
232
+ .is-invisible-tablet
233
+ visibility: hidden !important
234
+
235
+ +tablet-only
236
+ .is-invisible-tablet-only
237
+ visibility: hidden !important
238
+
239
+ +touch
240
+ .is-invisible-touch
241
+ visibility: hidden !important
242
+
243
+ +desktop
244
+ .is-invisible-desktop
245
+ visibility: hidden !important
246
+
247
+ +desktop-only
248
+ .is-invisible-desktop-only
249
+ visibility: hidden !important
250
+
251
+ +widescreen
252
+ .is-invisible-widescreen
253
+ visibility: hidden !important
254
+
255
+ +widescreen-only
256
+ .is-invisible-widescreen-only
257
+ visibility: hidden !important
258
+
259
+ +fullhd
260
+ .is-invisible-fullhd
261
+ visibility: hidden !important
262
+
263
+ // Other
264
+
265
+ .is-marginless
266
+ margin: 0 !important
267
+
268
+ .is-paddingless
269
+ padding: 0 !important
270
+
271
+ .is-radiusless
272
+ border-radius: 0 !important
273
+
274
+ .is-shadowless
275
+ box-shadow: none !important
276
+
277
+ .is-unselectable
278
+ @extend %unselectable
279
+
280
+ .is-relative
281
+ position: relative !important
@@ -0,0 +1,79 @@
1
+ /*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
2
+ // Blocks
3
+ html,
4
+ body,
5
+ p,
6
+ ol,
7
+ ul,
8
+ li,
9
+ dl,
10
+ dt,
11
+ dd,
12
+ blockquote,
13
+ figure,
14
+ fieldset,
15
+ legend,
16
+ textarea,
17
+ pre,
18
+ iframe,
19
+ hr,
20
+ h1,
21
+ h2,
22
+ h3,
23
+ h4,
24
+ h5,
25
+ h6
26
+ margin: 0
27
+ padding: 0
28
+
29
+ // Headings
30
+ h1,
31
+ h2,
32
+ h3,
33
+ h4,
34
+ h5,
35
+ h6
36
+ font-size: 100%
37
+ font-weight: normal
38
+
39
+ // List
40
+ ul
41
+ list-style: none
42
+
43
+ // Form
44
+ button,
45
+ input,
46
+ select,
47
+ textarea
48
+ margin: 0
49
+
50
+ // Box sizing
51
+ html
52
+ box-sizing: border-box
53
+
54
+ *
55
+ &,
56
+ &::before,
57
+ &::after
58
+ box-sizing: inherit
59
+
60
+ // Media
61
+ img,
62
+ video
63
+ height: auto
64
+ max-width: 100%
65
+
66
+ // Iframe
67
+ iframe
68
+ border: 0
69
+
70
+ // Table
71
+ table
72
+ border-collapse: collapse
73
+ border-spacing: 0
74
+
75
+ td,
76
+ th
77
+ padding: 0
78
+ &:not([align])
79
+ text-align: left
@@ -0,0 +1,15 @@
1
+ @charset "utf-8"
2
+
3
+ @import "breadcrumb.sass"
4
+ @import "card.sass"
5
+ @import "dropdown.sass"
6
+ @import "level.sass"
7
+ @import "list.sass"
8
+ @import "media.sass"
9
+ @import "menu.sass"
10
+ @import "message.sass"
11
+ @import "modal.sass"
12
+ @import "navbar.sass"
13
+ @import "pagination.sass"
14
+ @import "panel.sass"
15
+ @import "tabs.sass"
@@ -0,0 +1,75 @@
1
+ $breadcrumb-item-color: $link !default
2
+ $breadcrumb-item-hover-color: $link-hover !default
3
+ $breadcrumb-item-active-color: $text-strong !default
4
+
5
+ $breadcrumb-item-padding-vertical: 0 !default
6
+ $breadcrumb-item-padding-horizontal: 0.75em !default
7
+
8
+ $breadcrumb-item-separator-color: $border-hover !default
9
+
10
+ .breadcrumb
11
+ @extend %block
12
+ @extend %unselectable
13
+ font-size: $size-normal
14
+ white-space: nowrap
15
+ a
16
+ align-items: center
17
+ color: $breadcrumb-item-color
18
+ display: flex
19
+ justify-content: center
20
+ padding: $breadcrumb-item-padding-vertical $breadcrumb-item-padding-horizontal
21
+ &:hover
22
+ color: $breadcrumb-item-hover-color
23
+ li
24
+ align-items: center
25
+ display: flex
26
+ &:first-child a
27
+ padding-left: 0
28
+ &.is-active
29
+ a
30
+ color: $breadcrumb-item-active-color
31
+ cursor: default
32
+ pointer-events: none
33
+ & + li::before
34
+ color: $breadcrumb-item-separator-color
35
+ content: "\0002f"
36
+ ul,
37
+ ol
38
+ align-items: flex-start
39
+ display: flex
40
+ flex-wrap: wrap
41
+ justify-content: flex-start
42
+ .icon
43
+ &:first-child
44
+ margin-right: 0.5em
45
+ &:last-child
46
+ margin-left: 0.5em
47
+ // Alignment
48
+ &.is-centered
49
+ ol,
50
+ ul
51
+ justify-content: center
52
+ &.is-right
53
+ ol,
54
+ ul
55
+ justify-content: flex-end
56
+ // Sizes
57
+ &.is-small
58
+ font-size: $size-small
59
+ &.is-medium
60
+ font-size: $size-medium
61
+ &.is-large
62
+ font-size: $size-large
63
+ // Styles
64
+ &.has-arrow-separator
65
+ li + li::before
66
+ content: "\02192"
67
+ &.has-bullet-separator
68
+ li + li::before
69
+ content: "\02022"
70
+ &.has-dot-separator
71
+ li + li::before
72
+ content: "\000b7"
73
+ &.has-succeeds-separator
74
+ li + li::before
75
+ content: "\0227B"
@@ -0,0 +1,79 @@
1
+ $card-color: $text !default
2
+ $card-background-color: $scheme-main !default
3
+ $card-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default
4
+
5
+ $card-header-background-color: transparent !default
6
+ $card-header-color: $text-strong !default
7
+ $card-header-padding: 0.75rem 1rem !default
8
+ $card-header-shadow: 0 0.125em 0.25em rgba($scheme-invert, 0.1) !default
9
+ $card-header-weight: $weight-bold !default
10
+
11
+ $card-content-background-color: transparent !default
12
+ $card-content-padding: 1.5rem !default
13
+
14
+ $card-footer-background-color: transparent !default
15
+ $card-footer-border-top: 1px solid $border-light !default
16
+ $card-footer-padding: 0.75rem !default
17
+
18
+ $card-media-margin: $block-spacing !default
19
+
20
+ .card
21
+ background-color: $card-background-color
22
+ box-shadow: $card-shadow
23
+ color: $card-color
24
+ max-width: 100%
25
+ position: relative
26
+
27
+ .card-header
28
+ background-color: $card-header-background-color
29
+ align-items: stretch
30
+ box-shadow: $card-header-shadow
31
+ display: flex
32
+
33
+ .card-header-title
34
+ align-items: center
35
+ color: $card-header-color
36
+ display: flex
37
+ flex-grow: 1
38
+ font-weight: $card-header-weight
39
+ padding: $card-header-padding
40
+ &.is-centered
41
+ justify-content: center
42
+
43
+ .card-header-icon
44
+ align-items: center
45
+ cursor: pointer
46
+ display: flex
47
+ justify-content: center
48
+ padding: $card-header-padding
49
+
50
+ .card-image
51
+ display: block
52
+ position: relative
53
+
54
+ .card-content
55
+ background-color: $card-content-background-color
56
+ padding: $card-content-padding
57
+
58
+ .card-footer
59
+ background-color: $card-footer-background-color
60
+ border-top: $card-footer-border-top
61
+ align-items: stretch
62
+ display: flex
63
+
64
+ .card-footer-item
65
+ align-items: center
66
+ display: flex
67
+ flex-basis: 0
68
+ flex-grow: 1
69
+ flex-shrink: 0
70
+ justify-content: center
71
+ padding: $card-footer-padding
72
+ &:not(:last-child)
73
+ border-right: $card-footer-border-top
74
+
75
+ // Combinations
76
+
77
+ .card
78
+ .media:not(:last-child)
79
+ margin-bottom: $card-media-margin