bulma-clean-theme 0.14.0 → 1.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/_includes/callouts.html +12 -5
  4. data/_includes/cookie-banner.html +1 -1
  5. data/_includes/hero.html +5 -3
  6. data/_includes/showcase.html +8 -6
  7. data/_layouts/default.html +1 -0
  8. data/_layouts/post.html +7 -3
  9. data/_sass/_main.scss +3 -2
  10. data/node_modules/.package-lock.json +211 -8
  11. data/node_modules/bulma/LICENSE +1 -1
  12. data/node_modules/bulma/README.md +56 -52
  13. data/node_modules/bulma/bulma.scss +4 -0
  14. data/node_modules/bulma/css/bulma.css +19282 -8696
  15. data/node_modules/bulma/css/bulma.css.map +1 -1
  16. data/node_modules/bulma/css/bulma.min.css +3 -1
  17. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  18. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map +1 -0
  19. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  20. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +1 -0
  21. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  22. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css.map +1 -0
  23. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +3 -0
  24. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  25. data/node_modules/bulma/package.json +25 -20
  26. data/node_modules/bulma/sass/_index.scss +10 -0
  27. data/node_modules/bulma/sass/base/_index.scss +6 -0
  28. data/node_modules/bulma/sass/base/animations.scss +15 -0
  29. data/node_modules/bulma/sass/base/generic.scss +239 -0
  30. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  31. data/node_modules/bulma/sass/base/skeleton.scss +126 -0
  32. data/node_modules/bulma/sass/components/_index.scss +13 -0
  33. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  34. data/node_modules/bulma/sass/components/card.scss +162 -0
  35. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  36. data/node_modules/bulma/sass/components/menu.scss +165 -0
  37. data/node_modules/bulma/sass/components/message.scss +183 -0
  38. data/node_modules/bulma/sass/components/modal.scss +164 -0
  39. data/node_modules/bulma/sass/components/navbar.scss +788 -0
  40. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  41. data/node_modules/bulma/sass/components/panel.scss +218 -0
  42. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  43. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  44. data/node_modules/bulma/sass/elements/block.scss +6 -0
  45. data/node_modules/bulma/sass/elements/box.scss +59 -0
  46. data/node_modules/bulma/sass/elements/button.scss +640 -0
  47. data/node_modules/bulma/sass/elements/content.scss +283 -0
  48. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  49. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  50. data/node_modules/bulma/sass/elements/image.scss +62 -0
  51. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  52. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  53. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  54. data/node_modules/bulma/sass/elements/table.scss +261 -0
  55. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  56. data/node_modules/bulma/sass/elements/title.scss +128 -0
  57. data/node_modules/bulma/sass/form/_index.scss +9 -0
  58. data/node_modules/bulma/sass/form/checkbox-radio.scss +32 -0
  59. data/node_modules/bulma/sass/form/file.scss +330 -0
  60. data/node_modules/bulma/sass/form/input-textarea.scss +123 -0
  61. data/node_modules/bulma/sass/form/select.scss +143 -0
  62. data/node_modules/bulma/sass/form/shared.scss +172 -0
  63. data/node_modules/bulma/sass/form/tools.scss +341 -0
  64. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  65. data/node_modules/bulma/sass/grid/columns-v2.scss +957 -0
  66. data/node_modules/bulma/sass/grid/columns.scss +877 -0
  67. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  68. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  69. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  70. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  71. data/node_modules/bulma/sass/helpers/color.scss +364 -0
  72. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  73. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  74. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  75. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  76. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  77. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  78. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  79. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  80. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  81. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  82. data/node_modules/bulma/sass/layout/container.scss +51 -0
  83. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  84. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  85. data/node_modules/bulma/sass/layout/level.scss +107 -0
  86. data/node_modules/bulma/sass/layout/media.scss +106 -0
  87. data/node_modules/bulma/sass/layout/section.scss +34 -0
  88. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  89. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  90. data/node_modules/bulma/sass/themes/light.scss +145 -0
  91. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  92. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  93. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  94. data/node_modules/bulma/sass/utilities/css-variables.scss +425 -0
  95. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  96. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  97. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  98. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  99. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  100. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +19 -0
  101. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  102. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  103. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  104. data/node_modules/bulma-block-list/README.md +12 -6
  105. data/node_modules/bulma-block-list/docs/.nojekyll +0 -0
  106. data/node_modules/bulma-block-list/docs/docs.css +22782 -0
  107. data/node_modules/bulma-block-list/docs/docs.css.map +1 -0
  108. data/node_modules/bulma-block-list/docs/index.html +376 -307
  109. data/node_modules/bulma-block-list/package.json +8 -3
  110. data/node_modules/bulma-block-list/src/block-list.scss +99 -125
  111. data/node_modules/bulma-block-list/src/docs.scss +5 -0
  112. data/package-lock.json +353 -16
  113. data/package.json +2 -2
  114. metadata +97 -82
  115. data/node_modules/bulma/bulma.sass +0 -10
  116. data/node_modules/bulma/css/bulma-rtl.css +0 -11851
  117. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  118. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  119. data/node_modules/bulma/sass/base/_all.sass +0 -6
  120. data/node_modules/bulma/sass/base/animations.sass +0 -5
  121. data/node_modules/bulma/sass/base/generic.sass +0 -145
  122. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  123. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  124. data/node_modules/bulma/sass/components/_all.sass +0 -15
  125. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  126. data/node_modules/bulma/sass/components/card.sass +0 -103
  127. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  128. data/node_modules/bulma/sass/components/level.sass +0 -79
  129. data/node_modules/bulma/sass/components/media.sass +0 -59
  130. data/node_modules/bulma/sass/components/menu.sass +0 -59
  131. data/node_modules/bulma/sass/components/message.sass +0 -101
  132. data/node_modules/bulma/sass/components/modal.sass +0 -117
  133. data/node_modules/bulma/sass/components/navbar.sass +0 -446
  134. data/node_modules/bulma/sass/components/pagination.sass +0 -167
  135. data/node_modules/bulma/sass/components/panel.sass +0 -121
  136. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  137. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  138. data/node_modules/bulma/sass/elements/box.sass +0 -26
  139. data/node_modules/bulma/sass/elements/button.sass +0 -357
  140. data/node_modules/bulma/sass/elements/container.sass +0 -29
  141. data/node_modules/bulma/sass/elements/content.sass +0 -162
  142. data/node_modules/bulma/sass/elements/form.sass +0 -1
  143. data/node_modules/bulma/sass/elements/icon.sass +0 -46
  144. data/node_modules/bulma/sass/elements/image.sass +0 -73
  145. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  146. data/node_modules/bulma/sass/elements/other.sass +0 -31
  147. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  148. data/node_modules/bulma/sass/elements/table.sass +0 -134
  149. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  150. data/node_modules/bulma/sass/elements/title.sass +0 -70
  151. data/node_modules/bulma/sass/form/_all.sass +0 -9
  152. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  153. data/node_modules/bulma/sass/form/file.sass +0 -184
  154. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  155. data/node_modules/bulma/sass/form/select.sass +0 -88
  156. data/node_modules/bulma/sass/form/shared.sass +0 -60
  157. data/node_modules/bulma/sass/form/tools.sass +0 -215
  158. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  159. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  160. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  161. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  162. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  163. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  164. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  165. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  166. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  167. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  168. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  169. data/node_modules/bulma/sass/helpers/typography.sass +0 -103
  170. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  171. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  172. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  173. data/node_modules/bulma/sass/layout/hero.sass +0 -153
  174. data/node_modules/bulma/sass/layout/section.sass +0 -17
  175. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  176. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  177. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  178. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -114
  179. data/node_modules/bulma/sass/utilities/extends.sass +0 -25
  180. data/node_modules/bulma/sass/utilities/functions.sass +0 -135
  181. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -79
  182. data/node_modules/bulma/sass/utilities/mixins.sass +0 -303
  183. data/node_modules/bulma-block-list/docs/Gemfile +0 -3
  184. data/node_modules/bulma-block-list/docs/_config.yml +0 -17
  185. data/node_modules/bulma-block-list/docs/_data/menu.yaml +0 -24
  186. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +0 -156
  187. data/node_modules/bulma-block-list/docs/_sass/_main.scss +0 -20
  188. data/node_modules/bulma-block-list/docs/assets/css/app.scss +0 -7
  189. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  190. data/node_modules/bulma-block-list/src/demo.scss +0 -3
data/package-lock.json CHANGED
@@ -9,37 +9,374 @@
9
9
  "version": "1.0.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "bulma": "^0.9.3",
13
- "bulma-block-list": "^0.7"
12
+ "bulma": "^1.0",
13
+ "bulma-block-list": "^1.0"
14
14
  },
15
15
  "devDependencies": {}
16
16
  },
17
+ "node_modules/anymatch": {
18
+ "version": "3.1.3",
19
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
20
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
21
+ "dependencies": {
22
+ "normalize-path": "^3.0.0",
23
+ "picomatch": "^2.0.4"
24
+ },
25
+ "engines": {
26
+ "node": ">= 8"
27
+ }
28
+ },
29
+ "node_modules/binary-extensions": {
30
+ "version": "2.3.0",
31
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
32
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
33
+ "engines": {
34
+ "node": ">=8"
35
+ },
36
+ "funding": {
37
+ "url": "https://github.com/sponsors/sindresorhus"
38
+ }
39
+ },
40
+ "node_modules/braces": {
41
+ "version": "3.0.2",
42
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
43
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
44
+ "dependencies": {
45
+ "fill-range": "^7.0.1"
46
+ },
47
+ "engines": {
48
+ "node": ">=8"
49
+ }
50
+ },
17
51
  "node_modules/bulma": {
18
- "version": "0.9.4",
19
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
20
- "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
52
+ "version": "1.0.0",
53
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.0.tgz",
54
+ "integrity": "sha512-7n49v/gdHXaHcU9fVobqGXO2OguiCoMh6CLbeX7jq00XrZ5vOSE4LNS0S/0Q6rlBbckY6kk6W7LwqxS0nu4bug==",
55
+ "dependencies": {
56
+ "sass": "^1.71.1"
57
+ }
21
58
  },
22
59
  "node_modules/bulma-block-list": {
23
- "version": "0.7.0",
24
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
25
- "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
60
+ "version": "1.0.0",
61
+ "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-1.0.0.tgz",
62
+ "integrity": "sha512-3lGYDMJjRS3aF/zua7Dq69Aagae+55JxSVX03JdlLvS3cqH8sv7uTZLUbzM1ybdLweNh7bQkTX5ERmVY9lbMIA==",
63
+ "dependencies": {
64
+ "bulma": "^1.0.0"
65
+ }
66
+ },
67
+ "node_modules/chokidar": {
68
+ "version": "3.6.0",
69
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
70
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
71
+ "dependencies": {
72
+ "anymatch": "~3.1.2",
73
+ "braces": "~3.0.2",
74
+ "glob-parent": "~5.1.2",
75
+ "is-binary-path": "~2.1.0",
76
+ "is-glob": "~4.0.1",
77
+ "normalize-path": "~3.0.0",
78
+ "readdirp": "~3.6.0"
79
+ },
80
+ "engines": {
81
+ "node": ">= 8.10.0"
82
+ },
83
+ "funding": {
84
+ "url": "https://paulmillr.com/funding/"
85
+ },
86
+ "optionalDependencies": {
87
+ "fsevents": "~2.3.2"
88
+ }
89
+ },
90
+ "node_modules/fill-range": {
91
+ "version": "7.0.1",
92
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
93
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
94
+ "dependencies": {
95
+ "to-regex-range": "^5.0.1"
96
+ },
97
+ "engines": {
98
+ "node": ">=8"
99
+ }
100
+ },
101
+ "node_modules/fsevents": {
102
+ "version": "2.3.3",
103
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
104
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
105
+ "hasInstallScript": true,
106
+ "optional": true,
107
+ "os": [
108
+ "darwin"
109
+ ],
110
+ "engines": {
111
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
112
+ }
113
+ },
114
+ "node_modules/glob-parent": {
115
+ "version": "5.1.2",
116
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
117
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
118
+ "dependencies": {
119
+ "is-glob": "^4.0.1"
120
+ },
121
+ "engines": {
122
+ "node": ">= 6"
123
+ }
124
+ },
125
+ "node_modules/immutable": {
126
+ "version": "4.3.5",
127
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz",
128
+ "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw=="
129
+ },
130
+ "node_modules/is-binary-path": {
131
+ "version": "2.1.0",
132
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
133
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
134
+ "dependencies": {
135
+ "binary-extensions": "^2.0.0"
136
+ },
137
+ "engines": {
138
+ "node": ">=8"
139
+ }
140
+ },
141
+ "node_modules/is-extglob": {
142
+ "version": "2.1.1",
143
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
144
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
145
+ "engines": {
146
+ "node": ">=0.10.0"
147
+ }
148
+ },
149
+ "node_modules/is-glob": {
150
+ "version": "4.0.3",
151
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
152
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
153
+ "dependencies": {
154
+ "is-extglob": "^2.1.1"
155
+ },
156
+ "engines": {
157
+ "node": ">=0.10.0"
158
+ }
159
+ },
160
+ "node_modules/is-number": {
161
+ "version": "7.0.0",
162
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
163
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
164
+ "engines": {
165
+ "node": ">=0.12.0"
166
+ }
167
+ },
168
+ "node_modules/normalize-path": {
169
+ "version": "3.0.0",
170
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
171
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
172
+ "engines": {
173
+ "node": ">=0.10.0"
174
+ }
175
+ },
176
+ "node_modules/picomatch": {
177
+ "version": "2.3.1",
178
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
179
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
180
+ "engines": {
181
+ "node": ">=8.6"
182
+ },
183
+ "funding": {
184
+ "url": "https://github.com/sponsors/jonschlinkert"
185
+ }
186
+ },
187
+ "node_modules/readdirp": {
188
+ "version": "3.6.0",
189
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
190
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
191
+ "dependencies": {
192
+ "picomatch": "^2.2.1"
193
+ },
194
+ "engines": {
195
+ "node": ">=8.10.0"
196
+ }
197
+ },
198
+ "node_modules/sass": {
199
+ "version": "1.76.0",
200
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.76.0.tgz",
201
+ "integrity": "sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==",
202
+ "dependencies": {
203
+ "chokidar": ">=3.0.0 <4.0.0",
204
+ "immutable": "^4.0.0",
205
+ "source-map-js": ">=0.6.2 <2.0.0"
206
+ },
207
+ "bin": {
208
+ "sass": "sass.js"
209
+ },
210
+ "engines": {
211
+ "node": ">=14.0.0"
212
+ }
213
+ },
214
+ "node_modules/source-map-js": {
215
+ "version": "1.2.0",
216
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
217
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
218
+ "engines": {
219
+ "node": ">=0.10.0"
220
+ }
221
+ },
222
+ "node_modules/to-regex-range": {
223
+ "version": "5.0.1",
224
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
225
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
26
226
  "dependencies": {
27
- "bulma": "^0.9.3"
227
+ "is-number": "^7.0.0"
228
+ },
229
+ "engines": {
230
+ "node": ">=8.0"
28
231
  }
29
232
  }
30
233
  },
31
234
  "dependencies": {
235
+ "anymatch": {
236
+ "version": "3.1.3",
237
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
238
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
239
+ "requires": {
240
+ "normalize-path": "^3.0.0",
241
+ "picomatch": "^2.0.4"
242
+ }
243
+ },
244
+ "binary-extensions": {
245
+ "version": "2.3.0",
246
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
247
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw=="
248
+ },
249
+ "braces": {
250
+ "version": "3.0.2",
251
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
252
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
253
+ "requires": {
254
+ "fill-range": "^7.0.1"
255
+ }
256
+ },
32
257
  "bulma": {
33
- "version": "0.9.4",
34
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
35
- "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
258
+ "version": "1.0.0",
259
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.0.tgz",
260
+ "integrity": "sha512-7n49v/gdHXaHcU9fVobqGXO2OguiCoMh6CLbeX7jq00XrZ5vOSE4LNS0S/0Q6rlBbckY6kk6W7LwqxS0nu4bug==",
261
+ "requires": {
262
+ "sass": "^1.71.1"
263
+ }
36
264
  },
37
265
  "bulma-block-list": {
38
- "version": "0.7.0",
39
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
40
- "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
266
+ "version": "1.0.0",
267
+ "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-1.0.0.tgz",
268
+ "integrity": "sha512-3lGYDMJjRS3aF/zua7Dq69Aagae+55JxSVX03JdlLvS3cqH8sv7uTZLUbzM1ybdLweNh7bQkTX5ERmVY9lbMIA==",
269
+ "requires": {
270
+ "bulma": "^1.0.0"
271
+ }
272
+ },
273
+ "chokidar": {
274
+ "version": "3.6.0",
275
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
276
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
277
+ "requires": {
278
+ "anymatch": "~3.1.2",
279
+ "braces": "~3.0.2",
280
+ "fsevents": "~2.3.2",
281
+ "glob-parent": "~5.1.2",
282
+ "is-binary-path": "~2.1.0",
283
+ "is-glob": "~4.0.1",
284
+ "normalize-path": "~3.0.0",
285
+ "readdirp": "~3.6.0"
286
+ }
287
+ },
288
+ "fill-range": {
289
+ "version": "7.0.1",
290
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
291
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
292
+ "requires": {
293
+ "to-regex-range": "^5.0.1"
294
+ }
295
+ },
296
+ "fsevents": {
297
+ "version": "2.3.3",
298
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
299
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
300
+ "optional": true
301
+ },
302
+ "glob-parent": {
303
+ "version": "5.1.2",
304
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
305
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
306
+ "requires": {
307
+ "is-glob": "^4.0.1"
308
+ }
309
+ },
310
+ "immutable": {
311
+ "version": "4.3.5",
312
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz",
313
+ "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw=="
314
+ },
315
+ "is-binary-path": {
316
+ "version": "2.1.0",
317
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
318
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
319
+ "requires": {
320
+ "binary-extensions": "^2.0.0"
321
+ }
322
+ },
323
+ "is-extglob": {
324
+ "version": "2.1.1",
325
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
326
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
327
+ },
328
+ "is-glob": {
329
+ "version": "4.0.3",
330
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
331
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
332
+ "requires": {
333
+ "is-extglob": "^2.1.1"
334
+ }
335
+ },
336
+ "is-number": {
337
+ "version": "7.0.0",
338
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
339
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
340
+ },
341
+ "normalize-path": {
342
+ "version": "3.0.0",
343
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
344
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
345
+ },
346
+ "picomatch": {
347
+ "version": "2.3.1",
348
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
349
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
350
+ },
351
+ "readdirp": {
352
+ "version": "3.6.0",
353
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
354
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
355
+ "requires": {
356
+ "picomatch": "^2.2.1"
357
+ }
358
+ },
359
+ "sass": {
360
+ "version": "1.76.0",
361
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.76.0.tgz",
362
+ "integrity": "sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==",
363
+ "requires": {
364
+ "chokidar": ">=3.0.0 <4.0.0",
365
+ "immutable": "^4.0.0",
366
+ "source-map-js": ">=0.6.2 <2.0.0"
367
+ }
368
+ },
369
+ "source-map-js": {
370
+ "version": "1.2.0",
371
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
372
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg=="
373
+ },
374
+ "to-regex-range": {
375
+ "version": "5.0.1",
376
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
377
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
41
378
  "requires": {
42
- "bulma": "^0.9.3"
379
+ "is-number": "^7.0.0"
43
380
  }
44
381
  }
45
382
  }
data/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "author": "chrisrhymes",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
- "bulma": "^0.9.3",
14
- "bulma-block-list": "^0.7"
13
+ "bulma": "^1.0",
14
+ "bulma-block-list": "^1.0"
15
15
  }
16
16
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 1.0.0.beta.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-04 00:00:00.000000000 Z
11
+ date: 2024-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '3.9'
19
+ version: '4.3'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '5.0'
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '3.9'
29
+ version: '4.3'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '5.0'
@@ -193,91 +193,106 @@ files:
193
193
  - node_modules/bulma-block-list/LICENSE.txt
194
194
  - node_modules/bulma-block-list/README.md
195
195
  - node_modules/bulma-block-list/changelog.txt
196
- - node_modules/bulma-block-list/docs/Gemfile
197
- - node_modules/bulma-block-list/docs/_config.yml
198
- - node_modules/bulma-block-list/docs/_data/menu.yaml
199
- - node_modules/bulma-block-list/docs/_sass/_block-list.scss
200
- - node_modules/bulma-block-list/docs/_sass/_main.scss
201
- - node_modules/bulma-block-list/docs/assets/css/app.scss
202
- - node_modules/bulma-block-list/docs/favicon.ico
196
+ - node_modules/bulma-block-list/docs/.nojekyll
197
+ - node_modules/bulma-block-list/docs/docs.css
198
+ - node_modules/bulma-block-list/docs/docs.css.map
203
199
  - node_modules/bulma-block-list/docs/index.html
204
200
  - node_modules/bulma-block-list/package.json
205
201
  - node_modules/bulma-block-list/src/block-list.scss
206
- - node_modules/bulma-block-list/src/demo.scss
202
+ - node_modules/bulma-block-list/src/docs.scss
207
203
  - node_modules/bulma/LICENSE
208
204
  - node_modules/bulma/README.md
209
- - node_modules/bulma/bulma.sass
210
- - node_modules/bulma/css/bulma-rtl.css
211
- - node_modules/bulma/css/bulma-rtl.css.map
212
- - node_modules/bulma/css/bulma-rtl.min.css
205
+ - node_modules/bulma/bulma.scss
213
206
  - node_modules/bulma/css/bulma.css
214
207
  - node_modules/bulma/css/bulma.css.map
215
208
  - node_modules/bulma/css/bulma.min.css
209
+ - node_modules/bulma/css/versions/bulma-no-dark-mode.min.css
210
+ - node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map
211
+ - node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css
212
+ - node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map
213
+ - node_modules/bulma/css/versions/bulma-no-helpers.min.css
214
+ - node_modules/bulma/css/versions/bulma-no-helpers.min.css.map
215
+ - node_modules/bulma/css/versions/bulma-prefixed.min.css
216
+ - node_modules/bulma/css/versions/bulma-prefixed.min.css.map
216
217
  - node_modules/bulma/package.json
217
- - node_modules/bulma/sass/base/_all.sass
218
- - node_modules/bulma/sass/base/animations.sass
219
- - node_modules/bulma/sass/base/generic.sass
220
- - node_modules/bulma/sass/base/helpers.sass
221
- - node_modules/bulma/sass/base/minireset.sass
222
- - node_modules/bulma/sass/components/_all.sass
223
- - node_modules/bulma/sass/components/breadcrumb.sass
224
- - node_modules/bulma/sass/components/card.sass
225
- - node_modules/bulma/sass/components/dropdown.sass
226
- - node_modules/bulma/sass/components/level.sass
227
- - node_modules/bulma/sass/components/media.sass
228
- - node_modules/bulma/sass/components/menu.sass
229
- - node_modules/bulma/sass/components/message.sass
230
- - node_modules/bulma/sass/components/modal.sass
231
- - node_modules/bulma/sass/components/navbar.sass
232
- - node_modules/bulma/sass/components/pagination.sass
233
- - node_modules/bulma/sass/components/panel.sass
234
- - node_modules/bulma/sass/components/tabs.sass
235
- - node_modules/bulma/sass/elements/_all.sass
236
- - node_modules/bulma/sass/elements/box.sass
237
- - node_modules/bulma/sass/elements/button.sass
238
- - node_modules/bulma/sass/elements/container.sass
239
- - node_modules/bulma/sass/elements/content.sass
240
- - node_modules/bulma/sass/elements/form.sass
241
- - node_modules/bulma/sass/elements/icon.sass
242
- - node_modules/bulma/sass/elements/image.sass
243
- - node_modules/bulma/sass/elements/notification.sass
244
- - node_modules/bulma/sass/elements/other.sass
245
- - node_modules/bulma/sass/elements/progress.sass
246
- - node_modules/bulma/sass/elements/table.sass
247
- - node_modules/bulma/sass/elements/tag.sass
248
- - node_modules/bulma/sass/elements/title.sass
249
- - node_modules/bulma/sass/form/_all.sass
250
- - node_modules/bulma/sass/form/checkbox-radio.sass
251
- - node_modules/bulma/sass/form/file.sass
252
- - node_modules/bulma/sass/form/input-textarea.sass
253
- - node_modules/bulma/sass/form/select.sass
254
- - node_modules/bulma/sass/form/shared.sass
255
- - node_modules/bulma/sass/form/tools.sass
256
- - node_modules/bulma/sass/grid/_all.sass
257
- - node_modules/bulma/sass/grid/columns.sass
258
- - node_modules/bulma/sass/grid/tiles.sass
259
- - node_modules/bulma/sass/helpers/_all.sass
260
- - node_modules/bulma/sass/helpers/color.sass
261
- - node_modules/bulma/sass/helpers/flexbox.sass
262
- - node_modules/bulma/sass/helpers/float.sass
263
- - node_modules/bulma/sass/helpers/other.sass
264
- - node_modules/bulma/sass/helpers/overflow.sass
265
- - node_modules/bulma/sass/helpers/position.sass
266
- - node_modules/bulma/sass/helpers/spacing.sass
267
- - node_modules/bulma/sass/helpers/typography.sass
268
- - node_modules/bulma/sass/helpers/visibility.sass
269
- - node_modules/bulma/sass/layout/_all.sass
270
- - node_modules/bulma/sass/layout/footer.sass
271
- - node_modules/bulma/sass/layout/hero.sass
272
- - node_modules/bulma/sass/layout/section.sass
273
- - node_modules/bulma/sass/utilities/_all.sass
274
- - node_modules/bulma/sass/utilities/animations.sass
275
- - node_modules/bulma/sass/utilities/controls.sass
276
- - node_modules/bulma/sass/utilities/derived-variables.sass
277
- - node_modules/bulma/sass/utilities/extends.sass
278
- - node_modules/bulma/sass/utilities/functions.sass
279
- - node_modules/bulma/sass/utilities/initial-variables.sass
280
- - node_modules/bulma/sass/utilities/mixins.sass
218
+ - node_modules/bulma/sass/_index.scss
219
+ - node_modules/bulma/sass/base/_index.scss
220
+ - node_modules/bulma/sass/base/animations.scss
221
+ - node_modules/bulma/sass/base/generic.scss
222
+ - node_modules/bulma/sass/base/minireset.scss
223
+ - node_modules/bulma/sass/base/skeleton.scss
224
+ - node_modules/bulma/sass/components/_index.scss
225
+ - node_modules/bulma/sass/components/breadcrumb.scss
226
+ - node_modules/bulma/sass/components/card.scss
227
+ - node_modules/bulma/sass/components/dropdown.scss
228
+ - node_modules/bulma/sass/components/menu.scss
229
+ - node_modules/bulma/sass/components/message.scss
230
+ - node_modules/bulma/sass/components/modal.scss
231
+ - node_modules/bulma/sass/components/navbar.scss
232
+ - node_modules/bulma/sass/components/pagination.scss
233
+ - node_modules/bulma/sass/components/panel.scss
234
+ - node_modules/bulma/sass/components/tabs.scss
235
+ - node_modules/bulma/sass/elements/_index.scss
236
+ - node_modules/bulma/sass/elements/block.scss
237
+ - node_modules/bulma/sass/elements/box.scss
238
+ - node_modules/bulma/sass/elements/button.scss
239
+ - node_modules/bulma/sass/elements/content.scss
240
+ - node_modules/bulma/sass/elements/delete.scss
241
+ - node_modules/bulma/sass/elements/icon.scss
242
+ - node_modules/bulma/sass/elements/image.scss
243
+ - node_modules/bulma/sass/elements/loader.scss
244
+ - node_modules/bulma/sass/elements/notification.scss
245
+ - node_modules/bulma/sass/elements/progress.scss
246
+ - node_modules/bulma/sass/elements/table.scss
247
+ - node_modules/bulma/sass/elements/tag.scss
248
+ - node_modules/bulma/sass/elements/title.scss
249
+ - node_modules/bulma/sass/form/_index.scss
250
+ - node_modules/bulma/sass/form/checkbox-radio.scss
251
+ - node_modules/bulma/sass/form/file.scss
252
+ - node_modules/bulma/sass/form/input-textarea.scss
253
+ - node_modules/bulma/sass/form/select.scss
254
+ - node_modules/bulma/sass/form/shared.scss
255
+ - node_modules/bulma/sass/form/tools.scss
256
+ - node_modules/bulma/sass/grid/_index.scss
257
+ - node_modules/bulma/sass/grid/columns-v2.scss
258
+ - node_modules/bulma/sass/grid/columns.scss
259
+ - node_modules/bulma/sass/grid/grid.scss
260
+ - node_modules/bulma/sass/helpers/_index.scss
261
+ - node_modules/bulma/sass/helpers/aspect-ratio.scss
262
+ - node_modules/bulma/sass/helpers/border.scss
263
+ - node_modules/bulma/sass/helpers/color.scss
264
+ - node_modules/bulma/sass/helpers/flexbox.scss
265
+ - node_modules/bulma/sass/helpers/float.scss
266
+ - node_modules/bulma/sass/helpers/gap.scss
267
+ - node_modules/bulma/sass/helpers/other.scss
268
+ - node_modules/bulma/sass/helpers/overflow.scss
269
+ - node_modules/bulma/sass/helpers/position.scss
270
+ - node_modules/bulma/sass/helpers/spacing.scss
271
+ - node_modules/bulma/sass/helpers/typography.scss
272
+ - node_modules/bulma/sass/helpers/visibility.scss
273
+ - node_modules/bulma/sass/layout/_index.scss
274
+ - node_modules/bulma/sass/layout/container.scss
275
+ - node_modules/bulma/sass/layout/footer.scss
276
+ - node_modules/bulma/sass/layout/hero.scss
277
+ - node_modules/bulma/sass/layout/level.scss
278
+ - node_modules/bulma/sass/layout/media.scss
279
+ - node_modules/bulma/sass/layout/section.scss
280
+ - node_modules/bulma/sass/themes/_index.scss
281
+ - node_modules/bulma/sass/themes/dark.scss
282
+ - node_modules/bulma/sass/themes/light.scss
283
+ - node_modules/bulma/sass/themes/setup.scss
284
+ - node_modules/bulma/sass/utilities/_index.scss
285
+ - node_modules/bulma/sass/utilities/controls.scss
286
+ - node_modules/bulma/sass/utilities/css-variables.scss
287
+ - node_modules/bulma/sass/utilities/derived-variables.scss
288
+ - node_modules/bulma/sass/utilities/extends.scss
289
+ - node_modules/bulma/sass/utilities/functions.scss
290
+ - node_modules/bulma/sass/utilities/initial-variables.scss
291
+ - node_modules/bulma/sass/utilities/mixins.scss
292
+ - node_modules/bulma/versions/bulma-no-dark-mode.scss
293
+ - node_modules/bulma/versions/bulma-no-helpers-prefixed.scss
294
+ - node_modules/bulma/versions/bulma-no-helpers.scss
295
+ - node_modules/bulma/versions/bulma-prefixed.scss
281
296
  - package-lock.json
282
297
  - package.json
283
298
  homepage: https://www.github.com/chrisrhymes/bulma-clean-theme
@@ -295,9 +310,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
295
310
  version: '0'
296
311
  required_rubygems_version: !ruby/object:Gem::Requirement
297
312
  requirements:
298
- - - ">="
313
+ - - ">"
299
314
  - !ruby/object:Gem::Version
300
- version: '0'
315
+ version: 1.3.1
301
316
  requirements: []
302
317
  rubygems_version: 3.3.7
303
318
  signing_key:
@@ -1,10 +0,0 @@
1
- @charset "utf-8"
2
- /*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */
3
- @import "sass/utilities/_all"
4
- @import "sass/base/_all"
5
- @import "sass/elements/_all"
6
- @import "sass/form/_all"
7
- @import "sass/components/_all"
8
- @import "sass/grid/_all"
9
- @import "sass/helpers/_all"
10
- @import "sass/layout/_all"