mere-blog-theme 0.5 → 1.0.1

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 (189) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -24
  3. data/_includes/author-media.html +23 -20
  4. data/_includes/google-analytics.html +6 -3
  5. data/_includes/head.html +21 -11
  6. data/_includes/hero.html +12 -7
  7. data/_includes/navbar.html +19 -19
  8. data/_includes/pagination.html +41 -21
  9. data/_includes/post-item.html +18 -15
  10. data/_includes/social-buttons.html +25 -26
  11. data/_layouts/author.html +50 -38
  12. data/_layouts/default.html +21 -19
  13. data/_layouts/homepage.html +9 -12
  14. data/_layouts/post.html +29 -28
  15. data/_sass/_intro.scss +6 -4
  16. data/_sass/_layout.scss +29 -18
  17. data/_sass/_main.scss +17 -18
  18. data/_sass/syntax.scss +14 -6
  19. data/assets/css/app.scss +1 -1
  20. data/assets/js/app.js +9 -11
  21. data/node_modules/.package-lock.json +4 -4
  22. data/node_modules/bulma/LICENSE +1 -1
  23. data/node_modules/bulma/README.md +67 -55
  24. data/node_modules/bulma/bulma.scss +4 -0
  25. data/node_modules/bulma/css/bulma.css +18412 -8566
  26. data/node_modules/bulma/css/bulma.css.map +1 -1
  27. data/node_modules/bulma/css/bulma.min.css +3 -1
  28. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +19648 -0
  29. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
  30. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  31. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +11136 -0
  32. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
  33. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  34. data/node_modules/bulma/css/versions/bulma-no-helpers.css +11136 -0
  35. data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -0
  36. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  37. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +21551 -0
  38. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  39. data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
  40. data/node_modules/bulma/package.json +25 -19
  41. data/node_modules/bulma/sass/_index.scss +10 -0
  42. data/node_modules/bulma/sass/base/_index.scss +6 -0
  43. data/node_modules/bulma/sass/base/animations.scss +15 -0
  44. data/node_modules/bulma/sass/base/generic.scss +239 -0
  45. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  46. data/node_modules/bulma/sass/base/skeleton.scss +114 -0
  47. data/node_modules/bulma/sass/components/_index.scss +13 -0
  48. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  49. data/node_modules/bulma/sass/components/card.scss +162 -0
  50. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  51. data/node_modules/bulma/sass/components/menu.scss +165 -0
  52. data/node_modules/bulma/sass/components/message.scss +183 -0
  53. data/node_modules/bulma/sass/components/modal.scss +164 -0
  54. data/node_modules/bulma/sass/components/navbar.scss +799 -0
  55. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  56. data/node_modules/bulma/sass/components/panel.scss +218 -0
  57. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  58. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  59. data/node_modules/bulma/sass/elements/block.scss +6 -0
  60. data/node_modules/bulma/sass/elements/box.scss +59 -0
  61. data/node_modules/bulma/sass/elements/button.scss +647 -0
  62. data/node_modules/bulma/sass/elements/content.scss +289 -0
  63. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  64. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  65. data/node_modules/bulma/sass/elements/image.scss +62 -0
  66. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  67. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  68. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  69. data/node_modules/bulma/sass/elements/table.scss +261 -0
  70. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  71. data/node_modules/bulma/sass/elements/title.scss +128 -0
  72. data/node_modules/bulma/sass/form/_index.scss +9 -0
  73. data/node_modules/bulma/sass/form/checkbox-radio.scss +36 -0
  74. data/node_modules/bulma/sass/form/file.scss +330 -0
  75. data/node_modules/bulma/sass/form/input-textarea.scss +113 -0
  76. data/node_modules/bulma/sass/form/select.scss +144 -0
  77. data/node_modules/bulma/sass/form/shared.scss +176 -0
  78. data/node_modules/bulma/sass/form/tools.scss +352 -0
  79. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  80. data/node_modules/bulma/sass/grid/columns.scss +961 -0
  81. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  82. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  83. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  84. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  85. data/node_modules/bulma/sass/helpers/color.scss +344 -0
  86. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  87. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  88. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  89. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  90. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  91. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  92. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  93. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  94. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  95. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  96. data/node_modules/bulma/sass/layout/container.scss +59 -0
  97. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  98. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  99. data/node_modules/bulma/sass/layout/level.scss +107 -0
  100. data/node_modules/bulma/sass/layout/media.scss +106 -0
  101. data/node_modules/bulma/sass/layout/section.scss +38 -0
  102. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  103. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  104. data/node_modules/bulma/sass/themes/light.scss +146 -0
  105. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  106. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  107. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  108. data/node_modules/bulma/sass/utilities/css-variables.scss +426 -0
  109. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  110. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  111. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  112. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  113. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  114. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +20 -0
  115. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  116. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  117. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  118. data/package-lock.json +5 -12
  119. data/package.json +1 -1
  120. metadata +107 -80
  121. data/node_modules/bulma/CHANGELOG.md +0 -1539
  122. data/node_modules/bulma/bulma.sass +0 -10
  123. data/node_modules/bulma/css/bulma-rtl.css +0 -11705
  124. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  125. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  126. data/node_modules/bulma/sass/base/_all.sass +0 -6
  127. data/node_modules/bulma/sass/base/animations.sass +0 -5
  128. data/node_modules/bulma/sass/base/generic.sass +0 -145
  129. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  130. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  131. data/node_modules/bulma/sass/components/_all.sass +0 -15
  132. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  133. data/node_modules/bulma/sass/components/card.sass +0 -102
  134. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  135. data/node_modules/bulma/sass/components/level.sass +0 -79
  136. data/node_modules/bulma/sass/components/media.sass +0 -59
  137. data/node_modules/bulma/sass/components/menu.sass +0 -59
  138. data/node_modules/bulma/sass/components/message.sass +0 -101
  139. data/node_modules/bulma/sass/components/modal.sass +0 -117
  140. data/node_modules/bulma/sass/components/navbar.sass +0 -445
  141. data/node_modules/bulma/sass/components/pagination.sass +0 -158
  142. data/node_modules/bulma/sass/components/panel.sass +0 -121
  143. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  144. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  145. data/node_modules/bulma/sass/elements/box.sass +0 -26
  146. data/node_modules/bulma/sass/elements/button.sass +0 -345
  147. data/node_modules/bulma/sass/elements/container.sass +0 -29
  148. data/node_modules/bulma/sass/elements/content.sass +0 -157
  149. data/node_modules/bulma/sass/elements/form.sass +0 -1
  150. data/node_modules/bulma/sass/elements/icon.sass +0 -40
  151. data/node_modules/bulma/sass/elements/image.sass +0 -73
  152. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  153. data/node_modules/bulma/sass/elements/other.sass +0 -41
  154. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  155. data/node_modules/bulma/sass/elements/table.sass +0 -133
  156. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  157. data/node_modules/bulma/sass/elements/title.sass +0 -72
  158. data/node_modules/bulma/sass/form/_all.sass +0 -9
  159. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  160. data/node_modules/bulma/sass/form/file.sass +0 -182
  161. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  162. data/node_modules/bulma/sass/form/select.sass +0 -87
  163. data/node_modules/bulma/sass/form/shared.sass +0 -60
  164. data/node_modules/bulma/sass/form/tools.sass +0 -215
  165. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  166. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  167. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  168. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  169. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  170. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  171. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  172. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  173. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  174. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  175. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  176. data/node_modules/bulma/sass/helpers/typography.sass +0 -100
  177. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  178. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  179. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  180. data/node_modules/bulma/sass/layout/hero.sass +0 -149
  181. data/node_modules/bulma/sass/layout/section.sass +0 -15
  182. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  183. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  184. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  185. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -110
  186. data/node_modules/bulma/sass/utilities/extends.sass +0 -22
  187. data/node_modules/bulma/sass/utilities/functions.sass +0 -115
  188. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
  189. data/node_modules/bulma/sass/utilities/mixins.sass +0 -268
@@ -0,0 +1,289 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/derived-variables" as dv;
3
+ @use "../utilities/initial-variables" as iv;
4
+ @use "../utilities/extends";
5
+ @use "../utilities/mixins" as mx;
6
+
7
+ $content-heading-color: #{cv.getVar("text-strong")} !default;
8
+ $content-heading-weight: #{cv.getVar("weight-extrabold")} !default;
9
+ $content-heading-line-height: 1.125 !default;
10
+
11
+ $content-block-margin-bottom: 1em !default;
12
+
13
+ $content-blockquote-background-color: #{cv.getVar("background")} !default;
14
+ $content-blockquote-border-left: 5px solid #{cv.getVar("border")} !default;
15
+ $content-blockquote-padding: 1.25em 1.5em !default;
16
+
17
+ $content-pre-padding: 1.25em 1.5em !default;
18
+
19
+ $content-table-cell-border: 1px solid #{cv.getVar("border")} !default;
20
+ $content-table-cell-border-width: 0 0 1px !default;
21
+ $content-table-cell-padding: 0.5em 0.75em !default;
22
+ $content-table-cell-heading-color: #{cv.getVar("text-strong")} !default;
23
+ $content-table-head-cell-border-width: 0 0 2px !default;
24
+ $content-table-head-cell-color: #{cv.getVar("text-strong")} !default;
25
+ $content-table-body-last-row-cell-border-bottom-width: 0 !default;
26
+ $content-table-foot-cell-border-width: 2px 0 0 !default;
27
+ $content-table-foot-cell-color: #{cv.getVar("text-strong")} !default;
28
+
29
+ .#{iv.$class-prefix}content {
30
+ @include cv.register-vars(
31
+ (
32
+ "content-heading-color": #{$content-heading-color},
33
+ "content-heading-weight": #{$content-heading-weight},
34
+ "content-heading-line-height": #{$content-heading-line-height},
35
+ "content-block-margin-bottom": #{$content-block-margin-bottom},
36
+ "content-blockquote-background-color": #{$content-blockquote-background-color},
37
+ "content-blockquote-border-left": #{$content-blockquote-border-left},
38
+ "content-blockquote-padding": #{$content-blockquote-padding},
39
+ "content-pre-padding": #{$content-pre-padding},
40
+ "content-table-cell-border": #{$content-table-cell-border},
41
+ "content-table-cell-border-width": #{$content-table-cell-border-width},
42
+ "content-table-cell-padding": #{$content-table-cell-padding},
43
+ "content-table-cell-heading-color": #{$content-table-cell-heading-color},
44
+ "content-table-head-cell-border-width": #{$content-table-head-cell-border-width},
45
+ "content-table-head-cell-color": #{$content-table-head-cell-color},
46
+ "content-table-body-last-row-cell-border-bottom-width": #{$content-table-body-last-row-cell-border-bottom-width},
47
+ "content-table-foot-cell-border-width": #{$content-table-foot-cell-border-width},
48
+ "content-table-foot-cell-color": #{$content-table-foot-cell-color},
49
+ )
50
+ );
51
+ }
52
+
53
+ .#{iv.$class-prefix}content {
54
+ @extend %block;
55
+
56
+ // Inline
57
+ li + li {
58
+ margin-top: 0.25em;
59
+ }
60
+
61
+ // Block
62
+ p,
63
+ dl,
64
+ ol,
65
+ ul,
66
+ blockquote,
67
+ pre,
68
+ table {
69
+ &:not(:last-child) {
70
+ margin-bottom: cv.getVar("content-block-margin-bottom");
71
+ }
72
+ }
73
+
74
+ h1,
75
+ h2,
76
+ h3,
77
+ h4,
78
+ h5,
79
+ h6 {
80
+ color: cv.getVar("content-heading-color");
81
+ font-weight: cv.getVar("content-heading-weight");
82
+ line-height: cv.getVar("content-heading-line-height");
83
+ }
84
+
85
+ h1 {
86
+ font-size: 2em;
87
+ margin-bottom: 0.5em;
88
+
89
+ &:not(:first-child) {
90
+ margin-top: 1em;
91
+ }
92
+ }
93
+
94
+ h2 {
95
+ font-size: 1.75em;
96
+ margin-bottom: 0.5714em;
97
+
98
+ &:not(:first-child) {
99
+ margin-top: 1.1428em;
100
+ }
101
+ }
102
+
103
+ h3 {
104
+ font-size: 1.5em;
105
+ margin-bottom: 0.6666em;
106
+
107
+ &:not(:first-child) {
108
+ margin-top: 1.3333em;
109
+ }
110
+ }
111
+
112
+ h4 {
113
+ font-size: 1.25em;
114
+ margin-bottom: 0.8em;
115
+ }
116
+
117
+ h5 {
118
+ font-size: 1.125em;
119
+ margin-bottom: 0.8888em;
120
+ }
121
+
122
+ h6 {
123
+ font-size: 1em;
124
+ margin-bottom: 1em;
125
+ }
126
+
127
+ blockquote {
128
+ background-color: cv.getVar("content-blockquote-background-color");
129
+ border-inline-start: cv.getVar("content-blockquote-border-left");
130
+ padding: cv.getVar("content-blockquote-padding");
131
+ }
132
+
133
+ ol {
134
+ list-style-position: outside;
135
+ margin-inline-start: 2em;
136
+
137
+ &:not(:first-child) {
138
+ margin-top: 1em;
139
+ }
140
+
141
+ &:not([type]) {
142
+ list-style-type: decimal;
143
+
144
+ &.#{iv.$class-prefix}is-lower-alpha {
145
+ list-style-type: lower-alpha;
146
+ }
147
+
148
+ &.#{iv.$class-prefix}is-lower-roman {
149
+ list-style-type: lower-roman;
150
+ }
151
+
152
+ &.#{iv.$class-prefix}is-upper-alpha {
153
+ list-style-type: upper-alpha;
154
+ }
155
+
156
+ &.#{iv.$class-prefix}is-upper-roman {
157
+ list-style-type: upper-roman;
158
+ }
159
+ }
160
+ }
161
+
162
+ ul {
163
+ list-style: disc outside;
164
+ margin-inline-start: 2em;
165
+
166
+ &:not(:first-child) {
167
+ margin-top: 1em;
168
+ }
169
+
170
+ ul {
171
+ list-style-type: circle;
172
+ margin-bottom: 0.25em;
173
+ margin-top: 0.25em;
174
+
175
+ ul {
176
+ list-style-type: square;
177
+ }
178
+ }
179
+ }
180
+
181
+ dd {
182
+ margin-inline-start: 2em;
183
+ }
184
+
185
+ figure:not([class]) {
186
+ margin-left: 2em;
187
+ margin-right: 2em;
188
+ text-align: center;
189
+
190
+ &:not(:first-child) {
191
+ margin-top: 2em;
192
+ }
193
+
194
+ &:not(:last-child) {
195
+ margin-bottom: 2em;
196
+ }
197
+
198
+ img {
199
+ display: inline-block;
200
+ }
201
+
202
+ figcaption {
203
+ font-style: italic;
204
+ }
205
+ }
206
+
207
+ pre {
208
+ @include mx.overflow-touch;
209
+ overflow-x: auto;
210
+ padding: cv.getVar("content-pre-padding");
211
+ white-space: pre;
212
+ word-wrap: normal;
213
+ }
214
+
215
+ sup,
216
+ sub {
217
+ font-size: 75%;
218
+ }
219
+
220
+ table {
221
+ td,
222
+ th {
223
+ border: cv.getVar("content-table-cell-border");
224
+ border-width: cv.getVar("content-table-cell-border-width");
225
+ padding: cv.getVar("content-table-cell-padding");
226
+ vertical-align: top;
227
+ }
228
+
229
+ th {
230
+ color: cv.getVar("content-table-cell-heading-color");
231
+
232
+ &:not([align]) {
233
+ text-align: inherit;
234
+ }
235
+ }
236
+
237
+ thead {
238
+ td,
239
+ th {
240
+ border-width: cv.getVar("content-table-head-cell-border-width");
241
+ color: cv.getVar("content-table-head-cell-color");
242
+ }
243
+ }
244
+
245
+ tfoot {
246
+ td,
247
+ th {
248
+ border-width: cv.getVar("content-table-foot-cell-border-width");
249
+ color: cv.getVar("content-table-foot-cell-color");
250
+ }
251
+ }
252
+
253
+ tbody {
254
+ tr {
255
+ &:last-child {
256
+ td,
257
+ th {
258
+ border-bottom-width: cv.getVar(
259
+ "content-table-body-last-row-cell-border-bottom-width"
260
+ );
261
+ }
262
+ }
263
+ }
264
+ }
265
+ }
266
+
267
+ .#{iv.$class-prefix}tabs {
268
+ li + li {
269
+ margin-top: 0;
270
+ }
271
+ }
272
+
273
+ // Sizes
274
+ &.#{iv.$class-prefix}is-small {
275
+ font-size: cv.getVar("size-small");
276
+ }
277
+
278
+ &.#{iv.$class-prefix}is-normal {
279
+ font-size: cv.getVar("size-normal");
280
+ }
281
+
282
+ &.#{iv.$class-prefix}is-medium {
283
+ font-size: cv.getVar("size-medium");
284
+ }
285
+
286
+ &.#{iv.$class-prefix}is-large {
287
+ font-size: cv.getVar("size-large");
288
+ }
289
+ }
@@ -0,0 +1,6 @@
1
+ @use "../utilities/initial-variables" as iv;
2
+ @use "../utilities/mixins" as mx;
3
+
4
+ .#{iv.$class-prefix}delete {
5
+ @include mx.delete;
6
+ }
@@ -0,0 +1,67 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/initial-variables" as iv;
3
+
4
+ $icon-dimensions: 1.5rem !default;
5
+ $icon-dimensions-small: 1rem !default;
6
+ $icon-dimensions-medium: 2rem !default;
7
+ $icon-dimensions-large: 3rem !default;
8
+ $icon-text-spacing: 0.25em !default;
9
+
10
+ .#{iv.$class-prefix}icon,
11
+ .#{iv.$class-prefix}icon-text {
12
+ @include cv.register-vars(
13
+ (
14
+ "icon-dimensions": #{$icon-dimensions},
15
+ "icon-dimensions-small": #{$icon-dimensions-small},
16
+ "icon-dimensions-medium": #{$icon-dimensions-medium},
17
+ "icon-dimensions-large": #{$icon-dimensions-large},
18
+ "icon-text-spacing": #{$icon-text-spacing},
19
+ )
20
+ );
21
+ }
22
+
23
+ .#{iv.$class-prefix}icon {
24
+ align-items: center;
25
+ display: inline-flex;
26
+ flex-shrink: 0;
27
+ justify-content: center;
28
+ height: cv.getVar("icon-dimensions");
29
+ transition-duration: cv.getVar("duration");
30
+ transition-property: color;
31
+ width: cv.getVar("icon-dimensions");
32
+
33
+ // Sizes
34
+ &.#{iv.$class-prefix}is-small {
35
+ height: cv.getVar("icon-dimensions-small");
36
+ width: cv.getVar("icon-dimensions-small");
37
+ }
38
+
39
+ &.#{iv.$class-prefix}is-medium {
40
+ height: cv.getVar("icon-dimensions-medium");
41
+ width: cv.getVar("icon-dimensions-medium");
42
+ }
43
+
44
+ &.#{iv.$class-prefix}is-large {
45
+ height: cv.getVar("icon-dimensions-large");
46
+ width: cv.getVar("icon-dimensions-large");
47
+ }
48
+ }
49
+
50
+ .#{iv.$class-prefix}icon-text {
51
+ align-items: flex-start;
52
+ color: inherit;
53
+ display: inline-flex;
54
+ flex-wrap: wrap;
55
+ gap: cv.getVar("icon-text-spacing");
56
+ line-height: cv.getVar("icon-dimensions");
57
+ vertical-align: top;
58
+
59
+ .#{iv.$class-prefix}icon {
60
+ flex-grow: 0;
61
+ flex-shrink: 0;
62
+ }
63
+ }
64
+
65
+ div.#{iv.$class-prefix}icon-text {
66
+ display: flex;
67
+ }
@@ -0,0 +1,62 @@
1
+ @use "../utilities/initial-variables" as iv;
2
+ @use "../utilities/css-variables" as cv;
3
+ @use "../utilities/mixins" as mx;
4
+
5
+ $dimensions: 16 24 32 48 64 96 128 !default;
6
+
7
+ .#{iv.$class-prefix}image {
8
+ display: block;
9
+ position: relative;
10
+
11
+ img {
12
+ display: block;
13
+ height: auto;
14
+ width: 100%;
15
+
16
+ &.#{iv.$class-prefix}is-rounded {
17
+ border-radius: cv.getVar("radius-rounded");
18
+ }
19
+ }
20
+
21
+ &.#{iv.$class-prefix}is-fullwidth {
22
+ width: 100%;
23
+ }
24
+
25
+ // Ratio
26
+ &.#{iv.$class-prefix}is-square {
27
+ img,
28
+ .#{iv.$class-prefix}has-ratio {
29
+ @include mx.overlay;
30
+ height: 100%;
31
+ width: 100%;
32
+ }
33
+ }
34
+
35
+ &.#{iv.$class-prefix}is-square {
36
+ aspect-ratio: 1;
37
+ }
38
+
39
+ @each $pair in iv.$aspect-ratios {
40
+ $w: nth($pair, 1);
41
+ $h: nth($pair, 2);
42
+
43
+ &.#{iv.$class-prefix}is-#{$w}by#{$h} {
44
+ aspect-ratio: #{$w} / #{$h};
45
+
46
+ img,
47
+ .#{iv.$class-prefix}has-ratio {
48
+ @include mx.overlay;
49
+ height: 100%;
50
+ width: 100%;
51
+ }
52
+ }
53
+ }
54
+
55
+ // Sizes
56
+ @each $dimension in $dimensions {
57
+ &.#{iv.$class-prefix}is-#{$dimension}x#{$dimension} {
58
+ height: $dimension * 1px;
59
+ width: $dimension * 1px;
60
+ }
61
+ }
62
+ }
@@ -0,0 +1,15 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/initial-variables" as iv;
3
+
4
+ .#{iv.$class-prefix}loader {
5
+ animation: spinAround 500ms infinite linear;
6
+ border: 2px solid cv.getVar("border");
7
+ border-radius: cv.getVar("radius-rounded");
8
+ border-right-color: transparent;
9
+ border-top-color: transparent;
10
+ content: "";
11
+ display: block;
12
+ height: 1em;
13
+ position: relative;
14
+ width: 1em;
15
+ }
@@ -0,0 +1,105 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/derived-variables" as dv;
3
+ @use "../utilities/initial-variables" as iv;
4
+ @use "../utilities/extends";
5
+ @use "../utilities/mixins" as mx;
6
+
7
+ $notification-code-background-color: cv.getVar("scheme-main") !default;
8
+ $notification-radius: cv.getVar("radius") !default;
9
+ $notification-padding: 1.375em 1.5em !default;
10
+
11
+ $notification-colors: dv.$colors !default;
12
+
13
+ .#{iv.$class-prefix}notification {
14
+ @include cv.register-vars(
15
+ (
16
+ "notification-h": #{cv.getVar("scheme-h")},
17
+ "notification-s": #{cv.getVar("scheme-s")},
18
+ "notification-background-l": #{cv.getVar("background-l")},
19
+ "notification-color-l": #{cv.getVar("text-strong-l")},
20
+ "notification-code-background-color": #{$notification-code-background-color},
21
+ "notification-radius": #{$notification-radius},
22
+ "notification-padding": #{$notification-padding},
23
+ )
24
+ );
25
+ }
26
+
27
+ .#{iv.$class-prefix}notification {
28
+ @extend %block;
29
+
30
+ background-color: hsl(
31
+ cv.getVar("notification-h"),
32
+ cv.getVar("notification-s"),
33
+ cv.getVar("notification-background-l")
34
+ );
35
+ border-radius: cv.getVar("notification-radius");
36
+ color: hsl(
37
+ cv.getVar("notification-h"),
38
+ cv.getVar("notification-s"),
39
+ cv.getVar("notification-color-l")
40
+ );
41
+ padding: cv.getVar("notification-padding");
42
+ position: relative;
43
+
44
+ a:not(.#{iv.$class-prefix}button):not(.#{iv.$class-prefix}dropdown-item) {
45
+ color: currentColor;
46
+ text-decoration: underline;
47
+ }
48
+
49
+ strong {
50
+ color: currentColor;
51
+ }
52
+
53
+ code,
54
+ pre {
55
+ background: cv.getVar("notification-code-background-color");
56
+ }
57
+
58
+ pre code {
59
+ background: transparent;
60
+ }
61
+
62
+ & > .#{iv.$class-prefix}delete {
63
+ position: absolute;
64
+ inset-inline-end: 1rem;
65
+ top: 1rem;
66
+ }
67
+
68
+ .#{iv.$class-prefix}title,
69
+ .#{iv.$class-prefix}subtitle,
70
+ .#{iv.$class-prefix}content {
71
+ color: currentColor;
72
+ }
73
+
74
+ // Colors
75
+ @each $name, $pair in $notification-colors {
76
+ &.#{iv.$class-prefix}is-#{$name} {
77
+ @include cv.register-vars(
78
+ (
79
+ "notification-h": #{cv.getVar($name, "", "-h")},
80
+ "notification-s": #{cv.getVar($name, "", "-s")},
81
+ "notification-background-l": #{cv.getVar($name, "", "-l")},
82
+ "notification-color-l": #{cv.getVar($name, "", "-invert-l")},
83
+ )
84
+ );
85
+
86
+ &.#{iv.$class-prefix}is-light {
87
+ @include cv.register-vars(
88
+ (
89
+ "notification-background-l": 90%,
90
+ "notification-color-l": #{cv.getVar($name, "", "-light-invert-l")},
91
+ )
92
+ );
93
+ }
94
+
95
+ &.#{iv.$class-prefix}is-dark {
96
+ @include cv.register-vars(
97
+ (
98
+ "notification-background-l": 20%,
99
+ "notification-color-l": #{cv.getVar($name, "", "-dark-invert-l")},
100
+ )
101
+ );
102
+ }
103
+ }
104
+ }
105
+ }
@@ -0,0 +1,115 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/derived-variables" as dv;
3
+ @use "../utilities/initial-variables" as iv;
4
+ @use "../utilities/extends";
5
+ @use "../utilities/mixins" as mx;
6
+
7
+ $progress-bar-background-color: cv.getVar("border-weak") !default;
8
+ $progress-value-background-color: cv.getVar("text") !default;
9
+ $progress-border-radius: cv.getVar("radius-rounded") !default;
10
+
11
+ $progress-indeterminate-duration: 1.5s !default;
12
+
13
+ $progress-colors: dv.$colors !default;
14
+
15
+ .#{iv.$class-prefix}progress {
16
+ @include cv.register-vars(
17
+ (
18
+ "progress-border-radius": #{$progress-border-radius},
19
+ "progress-bar-background-color": #{$progress-bar-background-color},
20
+ "progress-value-background-color": #{$progress-value-background-color},
21
+ "progress-indeterminate-duration": #{$progress-indeterminate-duration},
22
+ )
23
+ );
24
+ }
25
+
26
+ .#{iv.$class-prefix}progress {
27
+ @extend %block;
28
+
29
+ appearance: none;
30
+ border: none;
31
+ border-radius: cv.getVar("progress-border-radius");
32
+ display: block;
33
+ height: cv.getVar("size-normal");
34
+ overflow: hidden;
35
+ padding: 0;
36
+ width: 100%;
37
+
38
+ &::-webkit-progress-bar {
39
+ background-color: cv.getVar("progress-bar-background-color");
40
+ }
41
+
42
+ &::-webkit-progress-value {
43
+ background-color: cv.getVar("progress-value-background-color");
44
+ }
45
+
46
+ &::-moz-progress-bar {
47
+ background-color: cv.getVar("progress-value-background-color");
48
+ }
49
+
50
+ &::-ms-fill {
51
+ background-color: cv.getVar("progress-value-background-color");
52
+ border: none;
53
+ }
54
+
55
+ // Colors
56
+ @each $name, $pair in $progress-colors {
57
+ &.#{iv.$class-prefix}is-#{$name} {
58
+ @include cv.register-var(
59
+ "progress-value-background-color",
60
+ #{cv.getVar($name)}
61
+ );
62
+ }
63
+ }
64
+
65
+ &:indeterminate {
66
+ animation-duration: cv.getVar("progress-indeterminate-duration");
67
+ animation-iteration-count: infinite;
68
+ animation-name: moveIndeterminate;
69
+ animation-timing-function: linear;
70
+ background-color: cv.getVar("progress-bar-background-color");
71
+ background-image: linear-gradient(
72
+ to right,
73
+ cv.getVar("progress-value-background-color") 30%,
74
+ cv.getVar("progress-bar-background-color") 30%
75
+ );
76
+ background-position: top left;
77
+ background-repeat: no-repeat;
78
+ background-size: 150% 150%;
79
+
80
+ &::-webkit-progress-bar {
81
+ background-color: transparent;
82
+ }
83
+
84
+ &::-moz-progress-bar {
85
+ background-color: transparent;
86
+ }
87
+
88
+ &::-ms-fill {
89
+ animation-name: none;
90
+ }
91
+ }
92
+
93
+ // Sizes
94
+ &.#{iv.$class-prefix}is-small {
95
+ height: cv.getVar("size-small");
96
+ }
97
+
98
+ &.#{iv.$class-prefix}is-medium {
99
+ height: cv.getVar("size-medium");
100
+ }
101
+
102
+ &.#{iv.$class-prefix}is-large {
103
+ height: cv.getVar("size-large");
104
+ }
105
+ }
106
+
107
+ @keyframes moveIndeterminate {
108
+ from {
109
+ background-position: 200% 0;
110
+ }
111
+
112
+ to {
113
+ background-position: (-200%) 0;
114
+ }
115
+ }