intia-theme 0.1.0 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/hero.html +5 -3
  3. data/_includes/introduction.html +1 -1
  4. data/_includes/story-slider.html +1 -1
  5. data/_layouts/404.html +7 -0
  6. data/_sass/_layout.scss +40 -11
  7. data/_sass/_main.scss +32 -11
  8. data/assets/img/404.png +0 -0
  9. data/assets/img/arrow-down.png +0 -0
  10. data/assets/img/arrow-left.png +0 -0
  11. data/assets/js/main.js +4 -1
  12. data/favicon.png +0 -0
  13. data/node_modules/bulma/CHANGELOG.md +1558 -0
  14. data/node_modules/bulma/LICENSE +21 -0
  15. data/node_modules/bulma/README.md +134 -0
  16. data/node_modules/bulma/bulma.sass +10 -0
  17. data/node_modules/bulma/css/bulma-rtl.css +11811 -0
  18. data/node_modules/bulma/css/bulma-rtl.css.map +1 -0
  19. data/node_modules/bulma/css/bulma-rtl.min.css +1 -0
  20. data/node_modules/bulma/css/bulma.css +11811 -0
  21. data/node_modules/bulma/css/bulma.css.map +1 -0
  22. data/node_modules/bulma/css/bulma.min.css +1 -0
  23. data/node_modules/bulma/package.json +82 -0
  24. data/node_modules/bulma/sass/base/_all.sass +6 -0
  25. data/node_modules/bulma/sass/base/animations.sass +5 -0
  26. data/node_modules/bulma/sass/base/generic.sass +145 -0
  27. data/node_modules/bulma/sass/base/helpers.sass +1 -0
  28. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  29. data/node_modules/bulma/sass/components/_all.sass +15 -0
  30. data/node_modules/bulma/sass/components/breadcrumb.sass +77 -0
  31. data/node_modules/bulma/sass/components/card.sass +103 -0
  32. data/node_modules/bulma/sass/components/dropdown.sass +83 -0
  33. data/node_modules/bulma/sass/components/level.sass +79 -0
  34. data/node_modules/bulma/sass/components/media.sass +59 -0
  35. data/node_modules/bulma/sass/components/menu.sass +59 -0
  36. data/node_modules/bulma/sass/components/message.sass +101 -0
  37. data/node_modules/bulma/sass/components/modal.sass +117 -0
  38. data/node_modules/bulma/sass/components/navbar.sass +446 -0
  39. data/node_modules/bulma/sass/components/pagination.sass +166 -0
  40. data/node_modules/bulma/sass/components/panel.sass +121 -0
  41. data/node_modules/bulma/sass/components/tabs.sass +176 -0
  42. data/node_modules/bulma/sass/elements/_all.sass +16 -0
  43. data/node_modules/bulma/sass/elements/box.sass +26 -0
  44. data/node_modules/bulma/sass/elements/button.sass +345 -0
  45. data/node_modules/bulma/sass/elements/container.sass +29 -0
  46. data/node_modules/bulma/sass/elements/content.sass +159 -0
  47. data/node_modules/bulma/sass/elements/form.sass +1 -0
  48. data/node_modules/bulma/sass/elements/icon.sass +46 -0
  49. data/node_modules/bulma/sass/elements/image.sass +73 -0
  50. data/node_modules/bulma/sass/elements/notification.sass +52 -0
  51. data/node_modules/bulma/sass/elements/other.sass +31 -0
  52. data/node_modules/bulma/sass/elements/progress.sass +73 -0
  53. data/node_modules/bulma/sass/elements/table.sass +133 -0
  54. data/node_modules/bulma/sass/elements/tag.sass +140 -0
  55. data/node_modules/bulma/sass/elements/title.sass +70 -0
  56. data/node_modules/bulma/sass/form/_all.sass +9 -0
  57. data/node_modules/bulma/sass/form/checkbox-radio.sass +22 -0
  58. data/node_modules/bulma/sass/form/file.sass +184 -0
  59. data/node_modules/bulma/sass/form/input-textarea.sass +66 -0
  60. data/node_modules/bulma/sass/form/select.sass +87 -0
  61. data/node_modules/bulma/sass/form/shared.sass +60 -0
  62. data/node_modules/bulma/sass/form/tools.sass +215 -0
  63. data/node_modules/bulma/sass/grid/_all.sass +5 -0
  64. data/node_modules/bulma/sass/grid/columns.sass +513 -0
  65. data/node_modules/bulma/sass/grid/tiles.sass +36 -0
  66. data/node_modules/bulma/sass/helpers/_all.sass +12 -0
  67. data/node_modules/bulma/sass/helpers/color.sass +39 -0
  68. data/node_modules/bulma/sass/helpers/flexbox.sass +35 -0
  69. data/node_modules/bulma/sass/helpers/float.sass +10 -0
  70. data/node_modules/bulma/sass/helpers/other.sass +14 -0
  71. data/node_modules/bulma/sass/helpers/overflow.sass +2 -0
  72. data/node_modules/bulma/sass/helpers/position.sass +7 -0
  73. data/node_modules/bulma/sass/helpers/spacing.sass +31 -0
  74. data/node_modules/bulma/sass/helpers/typography.sass +103 -0
  75. data/node_modules/bulma/sass/helpers/visibility.sass +122 -0
  76. data/node_modules/bulma/sass/layout/_all.sass +6 -0
  77. data/node_modules/bulma/sass/layout/footer.sass +11 -0
  78. data/node_modules/bulma/sass/layout/hero.sass +153 -0
  79. data/node_modules/bulma/sass/layout/section.sass +17 -0
  80. data/node_modules/bulma/sass/utilities/_all.sass +9 -0
  81. data/node_modules/bulma/sass/utilities/animations.sass +1 -0
  82. data/node_modules/bulma/sass/utilities/controls.sass +49 -0
  83. data/node_modules/bulma/sass/utilities/derived-variables.sass +114 -0
  84. data/node_modules/bulma/sass/utilities/extends.sass +25 -0
  85. data/node_modules/bulma/sass/utilities/functions.sass +136 -0
  86. data/node_modules/bulma/sass/utilities/initial-variables.sass +78 -0
  87. data/node_modules/bulma/sass/utilities/mixins.sass +280 -0
  88. data/node_modules/bulma-block-list/LICENSE.txt +21 -0
  89. data/node_modules/bulma-block-list/README.md +32 -0
  90. data/node_modules/bulma-block-list/node_modules/bulma/CHANGELOG.md +1390 -0
  91. data/node_modules/bulma-block-list/node_modules/bulma/LICENSE +21 -0
  92. data/node_modules/bulma-block-list/node_modules/bulma/README.md +130 -0
  93. data/node_modules/bulma-block-list/node_modules/bulma/bulma.sass +9 -0
  94. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css +10855 -0
  95. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css.map +1 -0
  96. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.min.css +1 -0
  97. data/node_modules/bulma-block-list/node_modules/bulma/package.json +80 -0
  98. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/_all.sass +5 -0
  99. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/generic.sass +142 -0
  100. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/helpers.sass +281 -0
  101. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/minireset.sass +79 -0
  102. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/_all.sass +15 -0
  103. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  104. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/card.sass +79 -0
  105. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/dropdown.sass +81 -0
  106. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/level.sass +77 -0
  107. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/list.sass +39 -0
  108. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/media.sass +50 -0
  109. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/menu.sass +57 -0
  110. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/message.sass +99 -0
  111. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/modal.sass +113 -0
  112. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/navbar.sass +441 -0
  113. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/pagination.sass +150 -0
  114. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/panel.sass +119 -0
  115. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/tabs.sass +151 -0
  116. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/_all.sass +15 -0
  117. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/box.sass +24 -0
  118. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/button.sass +323 -0
  119. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/container.sass +24 -0
  120. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/content.sass +155 -0
  121. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/form.sass +1 -0
  122. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/icon.sass +21 -0
  123. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/image.sass +71 -0
  124. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/notification.sass +43 -0
  125. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/other.sass +39 -0
  126. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/progress.sass +67 -0
  127. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/table.sass +127 -0
  128. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/tag.sass +128 -0
  129. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/title.sass +70 -0
  130. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/_all.sass +8 -0
  131. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/checkbox-radio.sass +21 -0
  132. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/file.sass +180 -0
  133. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/input-textarea.sass +64 -0
  134. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/select.sass +85 -0
  135. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/shared.sass +55 -0
  136. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/tools.sass +205 -0
  137. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/_all.sass +4 -0
  138. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/columns.sass +504 -0
  139. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/tiles.sass +34 -0
  140. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/_all.sass +5 -0
  141. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/footer.sass +9 -0
  142. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/hero.sass +145 -0
  143. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/section.sass +13 -0
  144. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/_all.sass +8 -0
  145. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/animations.sass +5 -0
  146. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/controls.sass +50 -0
  147. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/derived-variables.sass +106 -0
  148. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/functions.sass +110 -0
  149. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/initial-variables.sass +77 -0
  150. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  151. data/node_modules/bulma-block-list/package.json +59 -0
  152. data/node_modules/bulma-block-list/src/block-list.scss +109 -0
  153. data/node_modules/bulma-block-list/src/demo.scss +3 -0
  154. data/node_modules/bulma-carousel/CHANGELOG.md +307 -0
  155. data/node_modules/bulma-carousel/LICENSE +21 -0
  156. data/node_modules/bulma-carousel/README.md +13 -0
  157. data/node_modules/bulma-carousel/dist/css/bulma-carousel.min.css +1 -0
  158. data/node_modules/bulma-carousel/dist/js/bulma-carousel.js +2371 -0
  159. data/node_modules/bulma-carousel/package.json +108 -0
  160. data/node_modules/bulma-carousel/src/demo/_data/events.yml +15 -0
  161. data/node_modules/bulma-carousel/src/demo/_data/getters.yml +26 -0
  162. data/node_modules/bulma-carousel/src/demo/_data/menu.yml +26 -0
  163. data/node_modules/bulma-carousel/src/demo/_data/methods.yml +57 -0
  164. data/node_modules/bulma-carousel/src/demo/_data/options.yml +79 -0
  165. data/node_modules/bulma-carousel/src/demo/_data/setters.yml +0 -0
  166. data/node_modules/bulma-carousel/src/demo/_data/tree.yml +30 -0
  167. data/node_modules/bulma-carousel/src/demo/_includes/anchor.html +3 -0
  168. data/node_modules/bulma-carousel/src/demo/_includes/breadcrumb.html +5 -0
  169. data/node_modules/bulma-carousel/src/demo/_includes/events.html +33 -0
  170. data/node_modules/bulma-carousel/src/demo/_includes/getters.html +28 -0
  171. data/node_modules/bulma-carousel/src/demo/_includes/head.html +22 -0
  172. data/node_modules/bulma-carousel/src/demo/_includes/menu.html +22 -0
  173. data/node_modules/bulma-carousel/src/demo/_includes/methods.html +49 -0
  174. data/node_modules/bulma-carousel/src/demo/_includes/options.html +33 -0
  175. data/node_modules/bulma-carousel/src/demo/_includes/setters.html +28 -0
  176. data/node_modules/bulma-carousel/src/demo/_includes/tree.html +25 -0
  177. data/node_modules/bulma-carousel/src/demo/_includes/variables.html +28 -0
  178. data/node_modules/bulma-carousel/src/demo/_layouts/default.html +47 -0
  179. data/node_modules/bulma-carousel/src/demo/assets/css/bulma-carousel.min.css +1 -0
  180. data/node_modules/bulma-carousel/src/demo/assets/css/documentation.min.css +1 -0
  181. data/node_modules/bulma-carousel/src/demo/assets/css/highlight.css +78 -0
  182. data/node_modules/bulma-carousel/src/demo/assets/images/1.jpg +0 -0
  183. data/node_modules/bulma-carousel/src/demo/assets/images/2.jpg +0 -0
  184. data/node_modules/bulma-carousel/src/demo/assets/images/3.jpg +0 -0
  185. data/node_modules/bulma-carousel/src/demo/assets/images/4.jpg +0 -0
  186. data/node_modules/bulma-carousel/src/demo/assets/images/5.jpg +0 -0
  187. data/node_modules/bulma-carousel/src/demo/assets/images/6.jpg +0 -0
  188. data/node_modules/bulma-carousel/src/demo/assets/images/left.svg +3 -0
  189. data/node_modules/bulma-carousel/src/demo/assets/images/right.svg +3 -0
  190. data/node_modules/bulma-carousel/src/demo/assets/js/bulma-carousel.min.js +1 -0
  191. data/node_modules/bulma-carousel/src/demo/assets/js/doc.js +111 -0
  192. data/node_modules/bulma-carousel/src/demo/assets/js/main.js +23 -0
  193. data/node_modules/bulma-carousel/src/demo/changelog.html +17 -0
  194. data/node_modules/bulma-carousel/src/demo/customization.html +78 -0
  195. data/node_modules/bulma-carousel/src/demo/demonstration/index.html +402 -0
  196. data/node_modules/bulma-carousel/src/demo/index.html +396 -0
  197. data/node_modules/bulma-carousel/src/js/components/Media.js +129 -0
  198. data/node_modules/bulma-carousel/src/js/components/autoplay.js +111 -0
  199. data/node_modules/bulma-carousel/src/js/components/breakpoint.js +91 -0
  200. data/node_modules/bulma-carousel/src/js/components/infinite.js +60 -0
  201. data/node_modules/bulma-carousel/src/js/components/loop.js +35 -0
  202. data/node_modules/bulma-carousel/src/js/components/navigation.js +107 -0
  203. data/node_modules/bulma-carousel/src/js/components/pagination.js +103 -0
  204. data/node_modules/bulma-carousel/src/js/components/swipe.js +106 -0
  205. data/node_modules/bulma-carousel/src/js/components/transitioner.js +74 -0
  206. data/node_modules/bulma-carousel/src/js/components/transitions/fade.js +90 -0
  207. data/node_modules/bulma-carousel/src/js/components/transitions/translate.js +98 -0
  208. data/node_modules/bulma-carousel/src/js/defaultOptions.js +50 -0
  209. data/node_modules/bulma-carousel/src/js/index.js +428 -0
  210. data/node_modules/bulma-carousel/src/js/templates/index.js +5 -0
  211. data/node_modules/bulma-carousel/src/js/templates/item.js +3 -0
  212. data/node_modules/bulma-carousel/src/js/templates/navigation.js +4 -0
  213. data/node_modules/bulma-carousel/src/js/templates/pagination-page.js +3 -0
  214. data/node_modules/bulma-carousel/src/js/templates/pagination.js +3 -0
  215. data/node_modules/bulma-carousel/src/js/utils/coordinate.js +98 -0
  216. data/node_modules/bulma-carousel/src/js/utils/css.js +84 -0
  217. data/node_modules/bulma-carousel/src/js/utils/detect-prefixes.js +50 -0
  218. data/node_modules/bulma-carousel/src/js/utils/detect-supportsPassive.js +16 -0
  219. data/node_modules/bulma-carousel/src/js/utils/device.js +17 -0
  220. data/node_modules/bulma-carousel/src/js/utils/dom.js +10 -0
  221. data/node_modules/bulma-carousel/src/js/utils/eventEmitter.js +19 -0
  222. data/node_modules/bulma-carousel/src/js/utils/events.js +65 -0
  223. data/node_modules/bulma-carousel/src/js/utils/index.js +16 -0
  224. data/node_modules/bulma-carousel/src/js/utils/type.js +21 -0
  225. data/node_modules/bulma-carousel/src/sass/index.sass +145 -0
  226. data/package-lock.json +32 -0
  227. data/package.json +10 -0
  228. metadata +222 -4
  229. data/_config.yml +0 -72
  230. data/assets/img/arrow.png +0 -0
@@ -0,0 +1,151 @@
1
+ $tabs-border-bottom-color: $border !default
2
+ $tabs-border-bottom-style: solid !default
3
+ $tabs-border-bottom-width: 1px !default
4
+ $tabs-link-color: $text !default
5
+ $tabs-link-hover-border-bottom-color: $text-strong !default
6
+ $tabs-link-hover-color: $text-strong !default
7
+ $tabs-link-active-border-bottom-color: $link !default
8
+ $tabs-link-active-color: $link !default
9
+ $tabs-link-padding: 0.5em 1em !default
10
+
11
+ $tabs-boxed-link-radius: $radius !default
12
+ $tabs-boxed-link-hover-background-color: $background !default
13
+ $tabs-boxed-link-hover-border-bottom-color: $border !default
14
+
15
+ $tabs-boxed-link-active-background-color: $scheme-main !default
16
+ $tabs-boxed-link-active-border-color: $border !default
17
+ $tabs-boxed-link-active-border-bottom-color: transparent !default
18
+
19
+ $tabs-toggle-link-border-color: $border !default
20
+ $tabs-toggle-link-border-style: solid !default
21
+ $tabs-toggle-link-border-width: 1px !default
22
+ $tabs-toggle-link-hover-background-color: $background !default
23
+ $tabs-toggle-link-hover-border-color: $border-hover !default
24
+ $tabs-toggle-link-radius: $radius !default
25
+ $tabs-toggle-link-active-background-color: $link !default
26
+ $tabs-toggle-link-active-border-color: $link !default
27
+ $tabs-toggle-link-active-color: $link-invert !default
28
+
29
+ .tabs
30
+ @extend %block
31
+ +overflow-touch
32
+ @extend %unselectable
33
+ align-items: stretch
34
+ display: flex
35
+ font-size: $size-normal
36
+ justify-content: space-between
37
+ overflow: hidden
38
+ overflow-x: auto
39
+ white-space: nowrap
40
+ a
41
+ align-items: center
42
+ border-bottom-color: $tabs-border-bottom-color
43
+ border-bottom-style: $tabs-border-bottom-style
44
+ border-bottom-width: $tabs-border-bottom-width
45
+ color: $tabs-link-color
46
+ display: flex
47
+ justify-content: center
48
+ margin-bottom: -#{$tabs-border-bottom-width}
49
+ padding: $tabs-link-padding
50
+ vertical-align: top
51
+ &:hover
52
+ border-bottom-color: $tabs-link-hover-border-bottom-color
53
+ color: $tabs-link-hover-color
54
+ li
55
+ display: block
56
+ &.is-active
57
+ a
58
+ border-bottom-color: $tabs-link-active-border-bottom-color
59
+ color: $tabs-link-active-color
60
+ ul
61
+ align-items: center
62
+ border-bottom-color: $tabs-border-bottom-color
63
+ border-bottom-style: $tabs-border-bottom-style
64
+ border-bottom-width: $tabs-border-bottom-width
65
+ display: flex
66
+ flex-grow: 1
67
+ flex-shrink: 0
68
+ justify-content: flex-start
69
+ &.is-left
70
+ padding-right: 0.75em
71
+ &.is-center
72
+ flex: none
73
+ justify-content: center
74
+ padding-left: 0.75em
75
+ padding-right: 0.75em
76
+ &.is-right
77
+ justify-content: flex-end
78
+ padding-left: 0.75em
79
+ .icon
80
+ &:first-child
81
+ margin-right: 0.5em
82
+ &:last-child
83
+ margin-left: 0.5em
84
+ // Alignment
85
+ &.is-centered
86
+ ul
87
+ justify-content: center
88
+ &.is-right
89
+ ul
90
+ justify-content: flex-end
91
+ // Styles
92
+ &.is-boxed
93
+ a
94
+ border: 1px solid transparent
95
+ border-radius: $tabs-boxed-link-radius $tabs-boxed-link-radius 0 0
96
+ &:hover
97
+ background-color: $tabs-boxed-link-hover-background-color
98
+ border-bottom-color: $tabs-boxed-link-hover-border-bottom-color
99
+ li
100
+ &.is-active
101
+ a
102
+ background-color: $tabs-boxed-link-active-background-color
103
+ border-color: $tabs-boxed-link-active-border-color
104
+ border-bottom-color: $tabs-boxed-link-active-border-bottom-color !important
105
+ &.is-fullwidth
106
+ li
107
+ flex-grow: 1
108
+ flex-shrink: 0
109
+ &.is-toggle
110
+ a
111
+ border-color: $tabs-toggle-link-border-color
112
+ border-style: $tabs-toggle-link-border-style
113
+ border-width: $tabs-toggle-link-border-width
114
+ margin-bottom: 0
115
+ position: relative
116
+ &:hover
117
+ background-color: $tabs-toggle-link-hover-background-color
118
+ border-color: $tabs-toggle-link-hover-border-color
119
+ z-index: 2
120
+ li
121
+ & + li
122
+ margin-left: -#{$tabs-toggle-link-border-width}
123
+ &:first-child a
124
+ border-radius: $tabs-toggle-link-radius 0 0 $tabs-toggle-link-radius
125
+ &:last-child a
126
+ border-radius: 0 $tabs-toggle-link-radius $tabs-toggle-link-radius 0
127
+ &.is-active
128
+ a
129
+ background-color: $tabs-toggle-link-active-background-color
130
+ border-color: $tabs-toggle-link-active-border-color
131
+ color: $tabs-toggle-link-active-color
132
+ z-index: 1
133
+ ul
134
+ border-bottom: none
135
+ &.is-toggle-rounded
136
+ li
137
+ &:first-child a
138
+ border-bottom-left-radius: $radius-rounded
139
+ border-top-left-radius: $radius-rounded
140
+ padding-left: 1.25em
141
+ &:last-child a
142
+ border-bottom-right-radius: $radius-rounded
143
+ border-top-right-radius: $radius-rounded
144
+ padding-right: 1.25em
145
+ // Sizes
146
+ &.is-small
147
+ font-size: $size-small
148
+ &.is-medium
149
+ font-size: $size-medium
150
+ &.is-large
151
+ font-size: $size-large
@@ -0,0 +1,15 @@
1
+ @charset "utf-8"
2
+
3
+ @import "box.sass"
4
+ @import "button.sass"
5
+ @import "container.sass"
6
+ @import "content.sass"
7
+ @import "icon.sass"
8
+ @import "image.sass"
9
+ @import "notification.sass"
10
+ @import "progress.sass"
11
+ @import "table.sass"
12
+ @import "tag.sass"
13
+ @import "title.sass"
14
+
15
+ @import "other.sass"
@@ -0,0 +1,24 @@
1
+ $box-color: $text !default
2
+ $box-background-color: $scheme-main !default
3
+ $box-radius: $radius-large !default
4
+ $box-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default
5
+ $box-padding: 1.25rem !default
6
+
7
+ $box-link-hover-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link !default
8
+ $box-link-active-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link !default
9
+
10
+ .box
11
+ @extend %block
12
+ background-color: $box-background-color
13
+ border-radius: $box-radius
14
+ box-shadow: $box-shadow
15
+ color: $box-color
16
+ display: block
17
+ padding: $box-padding
18
+
19
+ a.box
20
+ &:hover,
21
+ &:focus
22
+ box-shadow: $box-link-hover-shadow
23
+ &:active
24
+ box-shadow: $box-link-active-shadow
@@ -0,0 +1,323 @@
1
+ $button-color: $text-strong !default
2
+ $button-background-color: $scheme-main !default
3
+ $button-family: false !default
4
+
5
+ $button-border-color: $border !default
6
+ $button-border-width: $control-border-width !default
7
+
8
+ $button-padding-vertical: calc(0.5em - #{$button-border-width}) !default
9
+ $button-padding-horizontal: 1em !default
10
+
11
+ $button-hover-color: $link-hover !default
12
+ $button-hover-border-color: $link-hover-border !default
13
+
14
+ $button-focus-color: $link-focus !default
15
+ $button-focus-border-color: $link-focus-border !default
16
+ $button-focus-box-shadow-size: 0 0 0 0.125em !default
17
+ $button-focus-box-shadow-color: bulmaRgba($link, 0.25) !default
18
+
19
+ $button-active-color: $link-active !default
20
+ $button-active-border-color: $link-active-border !default
21
+
22
+ $button-text-color: $text !default
23
+ $button-text-decoration: underline !default
24
+ $button-text-hover-background-color: $background !default
25
+ $button-text-hover-color: $text-strong !default
26
+
27
+ $button-disabled-background-color: $scheme-main !default
28
+ $button-disabled-border-color: $border !default
29
+ $button-disabled-shadow: none !default
30
+ $button-disabled-opacity: 0.5 !default
31
+
32
+ $button-static-color: $text-light !default
33
+ $button-static-background-color: $scheme-main-ter !default
34
+ $button-static-border-color: $border !default
35
+
36
+ // The button sizes use mixins so they can be used at different breakpoints
37
+ =button-small
38
+ border-radius: $radius-small
39
+ font-size: $size-small
40
+ =button-normal
41
+ font-size: $size-normal
42
+ =button-medium
43
+ font-size: $size-medium
44
+ =button-large
45
+ font-size: $size-large
46
+
47
+ .button
48
+ @extend %control
49
+ @extend %unselectable
50
+ background-color: $button-background-color
51
+ border-color: $button-border-color
52
+ border-width: $button-border-width
53
+ color: $button-color
54
+ cursor: pointer
55
+ @if $button-family
56
+ font-family: $button-family
57
+ justify-content: center
58
+ padding-bottom: $button-padding-vertical
59
+ padding-left: $button-padding-horizontal
60
+ padding-right: $button-padding-horizontal
61
+ padding-top: $button-padding-vertical
62
+ text-align: center
63
+ white-space: nowrap
64
+ strong
65
+ color: inherit
66
+ .icon
67
+ &,
68
+ &.is-small,
69
+ &.is-medium,
70
+ &.is-large
71
+ height: 1.5em
72
+ width: 1.5em
73
+ &:first-child:not(:last-child)
74
+ margin-left: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})
75
+ margin-right: $button-padding-horizontal / 4
76
+ &:last-child:not(:first-child)
77
+ margin-left: $button-padding-horizontal / 4
78
+ margin-right: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})
79
+ &:first-child:last-child
80
+ margin-left: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})
81
+ margin-right: calc(#{-1 / 2 * $button-padding-horizontal} - #{$button-border-width})
82
+ // States
83
+ &:hover,
84
+ &.is-hovered
85
+ border-color: $button-hover-border-color
86
+ color: $button-hover-color
87
+ &:focus,
88
+ &.is-focused
89
+ border-color: $button-focus-border-color
90
+ color: $button-focus-color
91
+ &:not(:active)
92
+ box-shadow: $button-focus-box-shadow-size $button-focus-box-shadow-color
93
+ &:active,
94
+ &.is-active
95
+ border-color: $button-active-border-color
96
+ color: $button-active-color
97
+ // Colors
98
+ &.is-text
99
+ background-color: transparent
100
+ border-color: transparent
101
+ color: $button-text-color
102
+ text-decoration: $button-text-decoration
103
+ &:hover,
104
+ &.is-hovered,
105
+ &:focus,
106
+ &.is-focused
107
+ background-color: $button-text-hover-background-color
108
+ color: $button-text-hover-color
109
+ &:active,
110
+ &.is-active
111
+ background-color: bulmaDarken($button-text-hover-background-color, 5%)
112
+ color: $button-text-hover-color
113
+ &[disabled],
114
+ fieldset[disabled] &
115
+ background-color: transparent
116
+ border-color: transparent
117
+ box-shadow: none
118
+ @each $name, $pair in $colors
119
+ $color: nth($pair, 1)
120
+ $color-invert: nth($pair, 2)
121
+ &.is-#{$name}
122
+ background-color: $color
123
+ border-color: transparent
124
+ color: $color-invert
125
+ &:hover,
126
+ &.is-hovered
127
+ background-color: bulmaDarken($color, 2.5%)
128
+ border-color: transparent
129
+ color: $color-invert
130
+ &:focus,
131
+ &.is-focused
132
+ border-color: transparent
133
+ color: $color-invert
134
+ &:not(:active)
135
+ box-shadow: $button-focus-box-shadow-size bulmaRgba($color, 0.25)
136
+ &:active,
137
+ &.is-active
138
+ background-color: bulmaDarken($color, 5%)
139
+ border-color: transparent
140
+ color: $color-invert
141
+ &[disabled],
142
+ fieldset[disabled] &
143
+ background-color: $color
144
+ border-color: transparent
145
+ box-shadow: none
146
+ &.is-inverted
147
+ background-color: $color-invert
148
+ color: $color
149
+ &:hover,
150
+ &.is-hovered
151
+ background-color: bulmaDarken($color-invert, 5%)
152
+ &[disabled],
153
+ fieldset[disabled] &
154
+ background-color: $color-invert
155
+ border-color: transparent
156
+ box-shadow: none
157
+ color: $color
158
+ &.is-loading
159
+ &::after
160
+ border-color: transparent transparent $color-invert $color-invert !important
161
+ &.is-outlined
162
+ background-color: transparent
163
+ border-color: $color
164
+ color: $color
165
+ &:hover,
166
+ &.is-hovered,
167
+ &:focus,
168
+ &.is-focused
169
+ background-color: $color
170
+ border-color: $color
171
+ color: $color-invert
172
+ &.is-loading
173
+ &::after
174
+ border-color: transparent transparent $color $color !important
175
+ &:hover,
176
+ &.is-hovered,
177
+ &:focus,
178
+ &.is-focused
179
+ &::after
180
+ border-color: transparent transparent $color-invert $color-invert !important
181
+ &[disabled],
182
+ fieldset[disabled] &
183
+ background-color: transparent
184
+ border-color: $color
185
+ box-shadow: none
186
+ color: $color
187
+ &.is-inverted.is-outlined
188
+ background-color: transparent
189
+ border-color: $color-invert
190
+ color: $color-invert
191
+ &:hover,
192
+ &.is-hovered,
193
+ &:focus,
194
+ &.is-focused
195
+ background-color: $color-invert
196
+ color: $color
197
+ &.is-loading
198
+ &:hover,
199
+ &.is-hovered,
200
+ &:focus,
201
+ &.is-focused
202
+ &::after
203
+ border-color: transparent transparent $color $color !important
204
+ &[disabled],
205
+ fieldset[disabled] &
206
+ background-color: transparent
207
+ border-color: $color-invert
208
+ box-shadow: none
209
+ color: $color-invert
210
+ // If light and dark colors are provided
211
+ @if length($pair) >= 4
212
+ $color-light: nth($pair, 3)
213
+ $color-dark: nth($pair, 4)
214
+ &.is-light
215
+ background-color: $color-light
216
+ color: $color-dark
217
+ &:hover,
218
+ &.is-hovered
219
+ background-color: bulmaDarken($color-light, 2.5%)
220
+ border-color: transparent
221
+ color: $color-dark
222
+ &:active,
223
+ &.is-active
224
+ background-color: bulmaDarken($color-light, 5%)
225
+ border-color: transparent
226
+ color: $color-dark
227
+ // Sizes
228
+ &.is-small
229
+ +button-small
230
+ &.is-normal
231
+ +button-normal
232
+ &.is-medium
233
+ +button-medium
234
+ &.is-large
235
+ +button-large
236
+ // Modifiers
237
+ &[disabled],
238
+ fieldset[disabled] &
239
+ background-color: $button-disabled-background-color
240
+ border-color: $button-disabled-border-color
241
+ box-shadow: $button-disabled-shadow
242
+ opacity: $button-disabled-opacity
243
+ &.is-fullwidth
244
+ display: flex
245
+ width: 100%
246
+ &.is-loading
247
+ color: transparent !important
248
+ pointer-events: none
249
+ &::after
250
+ @extend %loader
251
+ +center(1em)
252
+ position: absolute !important
253
+ &.is-static
254
+ background-color: $button-static-background-color
255
+ border-color: $button-static-border-color
256
+ color: $button-static-color
257
+ box-shadow: none
258
+ pointer-events: none
259
+ &.is-rounded
260
+ border-radius: $radius-rounded
261
+ padding-left: calc(#{$button-padding-horizontal} + 0.25em)
262
+ padding-right: calc(#{$button-padding-horizontal} + 0.25em)
263
+
264
+ .buttons
265
+ align-items: center
266
+ display: flex
267
+ flex-wrap: wrap
268
+ justify-content: flex-start
269
+ .button
270
+ margin-bottom: 0.5rem
271
+ &:not(:last-child):not(.is-fullwidth)
272
+ margin-right: 0.5rem
273
+ &:last-child
274
+ margin-bottom: -0.5rem
275
+ &:not(:last-child)
276
+ margin-bottom: 1rem
277
+ // Sizes
278
+ &.are-small
279
+ .button:not(.is-normal):not(.is-medium):not(.is-large)
280
+ +button-small
281
+ &.are-medium
282
+ .button:not(.is-small):not(.is-normal):not(.is-large)
283
+ +button-medium
284
+ &.are-large
285
+ .button:not(.is-small):not(.is-normal):not(.is-medium)
286
+ +button-large
287
+ &.has-addons
288
+ .button
289
+ &:not(:first-child)
290
+ border-bottom-left-radius: 0
291
+ border-top-left-radius: 0
292
+ &:not(:last-child)
293
+ border-bottom-right-radius: 0
294
+ border-top-right-radius: 0
295
+ margin-right: -1px
296
+ &:last-child
297
+ margin-right: 0
298
+ &:hover,
299
+ &.is-hovered
300
+ z-index: 2
301
+ &:focus,
302
+ &.is-focused,
303
+ &:active,
304
+ &.is-active,
305
+ &.is-selected
306
+ z-index: 3
307
+ &:hover
308
+ z-index: 4
309
+ &.is-expanded
310
+ flex-grow: 1
311
+ flex-shrink: 1
312
+ &.is-centered
313
+ justify-content: center
314
+ &:not(.has-addons)
315
+ .button:not(.is-fullwidth)
316
+ margin-left: 0.25rem
317
+ margin-right: 0.25rem
318
+ &.is-right
319
+ justify-content: flex-end
320
+ &:not(.has-addons)
321
+ .button:not(.is-fullwidth)
322
+ margin-left: 0.25rem
323
+ margin-right: 0.25rem
@@ -0,0 +1,24 @@
1
+ $container-offset: (2 * $gap) !default
2
+
3
+ .container
4
+ flex-grow: 1
5
+ margin: 0 auto
6
+ position: relative
7
+ width: auto
8
+ &.is-fluid
9
+ max-width: none
10
+ padding-left: $gap
11
+ padding-right: $gap
12
+ width: 100%
13
+ +desktop
14
+ max-width: $desktop - $container-offset
15
+ +until-widescreen
16
+ &.is-widescreen
17
+ max-width: $widescreen - $container-offset
18
+ +until-fullhd
19
+ &.is-fullhd
20
+ max-width: $fullhd - $container-offset
21
+ +widescreen
22
+ max-width: $widescreen - $container-offset
23
+ +fullhd
24
+ max-width: $fullhd - $container-offset
@@ -0,0 +1,155 @@
1
+ $content-heading-color: $text-strong !default
2
+ $content-heading-weight: $weight-semibold !default
3
+ $content-heading-line-height: 1.125 !default
4
+
5
+ $content-blockquote-background-color: $background !default
6
+ $content-blockquote-border-left: 5px solid $border !default
7
+ $content-blockquote-padding: 1.25em 1.5em !default
8
+
9
+ $content-pre-padding: 1.25em 1.5em !default
10
+
11
+ $content-table-cell-border: 1px solid $border !default
12
+ $content-table-cell-border-width: 0 0 1px !default
13
+ $content-table-cell-padding: 0.5em 0.75em !default
14
+ $content-table-cell-heading-color: $text-strong !default
15
+ $content-table-head-cell-border-width: 0 0 2px !default
16
+ $content-table-head-cell-color: $text-strong !default
17
+ $content-table-foot-cell-border-width: 2px 0 0 !default
18
+ $content-table-foot-cell-color: $text-strong !default
19
+
20
+ .content
21
+ @extend %block
22
+ // Inline
23
+ li + li
24
+ margin-top: 0.25em
25
+ // Block
26
+ p,
27
+ dl,
28
+ ol,
29
+ ul,
30
+ blockquote,
31
+ pre,
32
+ table
33
+ &:not(:last-child)
34
+ margin-bottom: 1em
35
+ h1,
36
+ h2,
37
+ h3,
38
+ h4,
39
+ h5,
40
+ h6
41
+ color: $content-heading-color
42
+ font-weight: $content-heading-weight
43
+ line-height: $content-heading-line-height
44
+ h1
45
+ font-size: 2em
46
+ margin-bottom: 0.5em
47
+ &:not(:first-child)
48
+ margin-top: 1em
49
+ h2
50
+ font-size: 1.75em
51
+ margin-bottom: 0.5714em
52
+ &:not(:first-child)
53
+ margin-top: 1.1428em
54
+ h3
55
+ font-size: 1.5em
56
+ margin-bottom: 0.6666em
57
+ &:not(:first-child)
58
+ margin-top: 1.3333em
59
+ h4
60
+ font-size: 1.25em
61
+ margin-bottom: 0.8em
62
+ h5
63
+ font-size: 1.125em
64
+ margin-bottom: 0.8888em
65
+ h6
66
+ font-size: 1em
67
+ margin-bottom: 1em
68
+ blockquote
69
+ background-color: $content-blockquote-background-color
70
+ border-left: $content-blockquote-border-left
71
+ padding: $content-blockquote-padding
72
+ ol
73
+ list-style-position: outside
74
+ margin-left: 2em
75
+ margin-top: 1em
76
+ &:not([type])
77
+ list-style-type: decimal
78
+ &.is-lower-alpha
79
+ list-style-type: lower-alpha
80
+ &.is-lower-roman
81
+ list-style-type: lower-roman
82
+ &.is-upper-alpha
83
+ list-style-type: upper-alpha
84
+ &.is-upper-roman
85
+ list-style-type: upper-roman
86
+ ul
87
+ list-style: disc outside
88
+ margin-left: 2em
89
+ margin-top: 1em
90
+ ul
91
+ list-style-type: circle
92
+ margin-top: 0.5em
93
+ ul
94
+ list-style-type: square
95
+ dd
96
+ margin-left: 2em
97
+ figure
98
+ margin-left: 2em
99
+ margin-right: 2em
100
+ text-align: center
101
+ &:not(:first-child)
102
+ margin-top: 2em
103
+ &:not(:last-child)
104
+ margin-bottom: 2em
105
+ img
106
+ display: inline-block
107
+ figcaption
108
+ font-style: italic
109
+ pre
110
+ +overflow-touch
111
+ overflow-x: auto
112
+ padding: $content-pre-padding
113
+ white-space: pre
114
+ word-wrap: normal
115
+ sup,
116
+ sub
117
+ font-size: 75%
118
+ table
119
+ width: 100%
120
+ td,
121
+ th
122
+ border: $content-table-cell-border
123
+ border-width: $content-table-cell-border-width
124
+ padding: $content-table-cell-padding
125
+ vertical-align: top
126
+ th
127
+ color: $content-table-cell-heading-color
128
+ &:not([align])
129
+ text-align: left
130
+ thead
131
+ td,
132
+ th
133
+ border-width: $content-table-head-cell-border-width
134
+ color: $content-table-head-cell-color
135
+ tfoot
136
+ td,
137
+ th
138
+ border-width: $content-table-foot-cell-border-width
139
+ color: $content-table-foot-cell-color
140
+ tbody
141
+ tr
142
+ &:last-child
143
+ td,
144
+ th
145
+ border-bottom-width: 0
146
+ .tabs
147
+ li + li
148
+ margin-top: 0
149
+ // Sizes
150
+ &.is-small
151
+ font-size: $size-small
152
+ &.is-medium
153
+ font-size: $size-medium
154
+ &.is-large
155
+ font-size: $size-large
@@ -0,0 +1 @@
1
+ @warn "The form.sass file is DEPRECATED. It has moved into its own /form folder. Please import sass/form/_all instead."