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

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