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,209 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/initial-variables" as iv;
3
+ @use "../utilities/extends";
4
+ @use "../utilities/mixins" as mx;
5
+
6
+ $max-column-count: 12;
7
+ $grip-gap: 0.75rem;
8
+ $column-min-base: 1.5rem;
9
+
10
+ @mixin fixed-grid-properties($suffix: "") {
11
+ @for $i from 1 through $max-column-count {
12
+ &.#{iv.$class-prefix}has-#{$i}-cols#{$suffix} {
13
+ > .#{iv.$class-prefix}grid {
14
+ @include cv.register-var("grid-column-count", #{$i});
15
+ }
16
+ }
17
+ }
18
+ }
19
+
20
+ $grid-container-name: bulma-fixed-grid;
21
+
22
+ .#{iv.$class-prefix}fixed-grid {
23
+ @extend %block;
24
+ container-name: $grid-container-name;
25
+ container-type: inline-size;
26
+
27
+ > .#{iv.$class-prefix}grid {
28
+ @include cv.register-vars(
29
+ (
30
+ "grid-gap-count": calc(#{cv.getVar("grid-column-count")} - 1),
31
+ "grid-column-count": 2,
32
+ )
33
+ );
34
+
35
+ grid-template-columns: repeat(cv.getVar("grid-column-count"), 1fr);
36
+ }
37
+
38
+ @include fixed-grid-properties;
39
+
40
+ @include mx.container-until($grid-container-name, iv.$tablet) {
41
+ @include fixed-grid-properties("-mobile");
42
+ }
43
+
44
+ @include mx.container-from($grid-container-name, iv.$tablet) {
45
+ @include fixed-grid-properties("-tablet");
46
+ }
47
+
48
+ @include mx.container-from($grid-container-name, iv.$desktop) {
49
+ @include fixed-grid-properties("-desktop");
50
+ }
51
+
52
+ @include mx.container-from($grid-container-name, iv.$widescreen) {
53
+ @include fixed-grid-properties("-widescreen");
54
+ }
55
+
56
+ @include mx.container-from($grid-container-name, iv.$fullhd) {
57
+ @include fixed-grid-properties("-fullhd");
58
+ }
59
+
60
+ &.#{iv.$class-prefix}has-auto-count {
61
+ .#{iv.$class-prefix}grid {
62
+ @include mx.container-until($grid-container-name, iv.$tablet) {
63
+ @include cv.register-var("grid-column-count", 2);
64
+ }
65
+
66
+ @include mx.container-from($grid-container-name, iv.$tablet) {
67
+ @include cv.register-var("grid-column-count", 4);
68
+ }
69
+
70
+ @include mx.container-from($grid-container-name, iv.$desktop) {
71
+ @include cv.register-var("grid-column-count", 8);
72
+ }
73
+
74
+ @include mx.container-from($grid-container-name, iv.$widescreen) {
75
+ @include cv.register-var("grid-column-count", 12);
76
+ }
77
+
78
+ @include mx.container-from($grid-container-name, iv.$fullhd) {
79
+ @include cv.register-var("grid-column-count", 16);
80
+ }
81
+ }
82
+ }
83
+ }
84
+
85
+ .#{iv.$class-prefix}grid {
86
+ @include cv.register-vars(
87
+ (
88
+ "grid-gap": $grip-gap,
89
+ "grid-column-min": 9rem,
90
+ "grid-cell-column-span": 1,
91
+ "grid-cell-row-span": 1,
92
+ )
93
+ );
94
+
95
+ @extend %block;
96
+ display: grid;
97
+ gap: cv.getVar("grid-gap");
98
+ column-gap: #{cv.getVarWithBackup("grid-column-gap", "grid-gap")};
99
+ row-gap: #{cv.getVarWithBackup("grid-row-gap", "grid-gap")};
100
+ grid-template-columns: repeat(
101
+ auto-fit,
102
+ minmax(#{cv.getVar("grid-column-min")}, 1fr)
103
+ );
104
+ grid-template-rows: auto;
105
+
106
+ &.is-auto-fill {
107
+ grid-template-columns: repeat(
108
+ auto-fill,
109
+ minmax(#{cv.getVar("grid-column-min")}, 1fr)
110
+ );
111
+ }
112
+
113
+ @for $i from 1 through 32 {
114
+ &.#{iv.$class-prefix}is-col-min-#{$i} {
115
+ @include cv.register-vars(
116
+ (
117
+ "grid-column-min": #{$column-min-base * $i},
118
+ )
119
+ );
120
+ }
121
+ }
122
+ }
123
+
124
+ @mixin cell-properties($suffix: "") {
125
+ @for $i from 1 through $max-column-count {
126
+ $name: $i + $suffix;
127
+
128
+ &.#{iv.$class-prefix}is-col-start-#{$name} {
129
+ @include cv.register-var("grid-cell-column-start", #{$i});
130
+ }
131
+
132
+ &.#{iv.$class-prefix}is-col-end-#{$name} {
133
+ @include cv.register-var("grid-cell-column-end", #{$i});
134
+ }
135
+
136
+ &.#{iv.$class-prefix}is-col-from-end-#{$name} {
137
+ @include cv.register-var("grid-cell-column-start", #{$i * -1});
138
+ }
139
+
140
+ &.#{iv.$class-prefix}is-col-span-#{$name} {
141
+ @include cv.register-var("grid-cell-column-span", #{$i});
142
+ }
143
+
144
+ &.#{iv.$class-prefix}is-row-start-#{$name} {
145
+ @include cv.register-var("grid-cell-row-start", #{$i});
146
+ }
147
+
148
+ &.#{iv.$class-prefix}is-row-end-#{$name} {
149
+ @include cv.register-var("grid-cell-row-end", #{$i});
150
+ }
151
+
152
+ &.#{iv.$class-prefix}is-row-from-end-#{$name} {
153
+ @include cv.register-var("grid-cell-row-start", #{$i * -1});
154
+ }
155
+
156
+ &.#{iv.$class-prefix}is-row-span-#{$name} {
157
+ @include cv.register-var("grid-cell-row-span", #{$i});
158
+ }
159
+ }
160
+ }
161
+
162
+ .#{iv.$class-prefix}cell {
163
+ grid-column-end: span cv.getVar("grid-cell-column-span");
164
+ grid-column-start: cv.getVar("grid-cell-column-start");
165
+ grid-row-end: span cv.getVar("grid-cell-row-span");
166
+ grid-row-start: cv.getVar("grid-cell-row-start");
167
+
168
+ // Sizes
169
+ &.#{iv.$class-prefix}is-col-start-end {
170
+ @include cv.register-var("grid-cell-column-start", -1);
171
+ }
172
+
173
+ &.#{iv.$class-prefix}is-row-start-end {
174
+ @include cv.register-var("grid-cell-row-start", -1);
175
+ }
176
+
177
+ @include cell-properties;
178
+ @include mx.mobile {
179
+ @include cell-properties("-mobile");
180
+ }
181
+
182
+ @include mx.tablet {
183
+ @include cell-properties("-tablet");
184
+ }
185
+
186
+ @include mx.tablet-only {
187
+ @include cell-properties("-tablet-only");
188
+ }
189
+
190
+ @include mx.desktop {
191
+ @include cell-properties("-desktop");
192
+ }
193
+
194
+ @include mx.desktop-only {
195
+ @include cell-properties("-desktop-only");
196
+ }
197
+
198
+ @include mx.widescreen {
199
+ @include cell-properties("-widescreen");
200
+ }
201
+
202
+ @include mx.widescreen-only {
203
+ @include cell-properties("-widescreen-only");
204
+ }
205
+
206
+ @include mx.fullhd {
207
+ @include cell-properties("-fullhd");
208
+ }
209
+ }
@@ -0,0 +1,15 @@
1
+ /* Bulma Helpers */
2
+ @charset "utf-8";
3
+
4
+ @forward "aspect-ratio";
5
+ @forward "border";
6
+ @forward "color";
7
+ @forward "flexbox";
8
+ @forward "float";
9
+ @forward "gap";
10
+ @forward "overflow";
11
+ @forward "position";
12
+ @forward "spacing";
13
+ @forward "typography";
14
+ @forward "visibility";
15
+ @forward "other";
@@ -0,0 +1,10 @@
1
+ @use "../utilities/initial-variables" as iv;
2
+
3
+ @each $pair in iv.$aspect-ratios {
4
+ $w: nth($pair, 1);
5
+ $h: nth($pair, 2);
6
+
7
+ .#{iv.$helpers-prefix}aspect-ratio-#{$w}by#{$h} {
8
+ aspect-ratio: #{$w} / #{$h};
9
+ }
10
+ }
@@ -0,0 +1,15 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/initial-variables" as iv;
3
+
4
+ $radii: (
5
+ "small": "radius-small",
6
+ "normal": "radius",
7
+ "large": "radius-large",
8
+ "rounded": "radius-rounded",
9
+ );
10
+
11
+ @each $name, $var in $radii {
12
+ .#{iv.$helpers-has-prefix}radius-#{$name} {
13
+ border-radius: cv.getVar($var);
14
+ }
15
+ }
@@ -0,0 +1,344 @@
1
+ @use "../utilities/css-variables" as cv;
2
+ @use "../utilities/derived-variables" as dv;
3
+ @use "../utilities/initial-variables" as iv;
4
+
5
+ $digits: (
6
+ "00",
7
+ "05",
8
+ "10",
9
+ "15",
10
+ "20",
11
+ "25",
12
+ "30",
13
+ "35",
14
+ "40",
15
+ "45",
16
+ "50",
17
+ "55",
18
+ "60",
19
+ "65",
20
+ "70",
21
+ "75",
22
+ "80",
23
+ "85",
24
+ "90",
25
+ "95",
26
+ "100"
27
+ );
28
+
29
+ .#{iv.$helpers-has-prefix}background {
30
+ background-color: cv.getVar("background");
31
+ }
32
+
33
+ @each $name, $color in dv.$colors {
34
+ $background: hsl(
35
+ #{cv.getVar($name, "", "-h")},
36
+ #{cv.getVar($name, "", "-s")},
37
+ #{cv.getVar($name, "", "-l")}
38
+ );
39
+
40
+ $color: hsl(
41
+ #{cv.getVar($name, "", "-h")},
42
+ #{cv.getVar($name, "", "-s")},
43
+ #{cv.getVar($name, "", "-l")}
44
+ );
45
+
46
+ .#{iv.$helpers-has-prefix}text-#{$name} {
47
+ color: $color !important;
48
+ }
49
+
50
+ .#{iv.$helpers-has-prefix}background-#{$name} {
51
+ background-color: $background !important;
52
+ }
53
+
54
+ // Invert
55
+ .#{iv.$helpers-has-prefix}text-#{$name}-invert {
56
+ color: hsl(
57
+ #{cv.getVar($name, "", "-h")},
58
+ #{cv.getVar($name, "", "-s")},
59
+ #{cv.getVar($name, "", "-invert-l")}
60
+ ) !important;
61
+ }
62
+
63
+ .#{iv.$helpers-has-prefix}background-#{$name}-invert {
64
+ background-color: hsl(
65
+ #{cv.getVar($name, "", "-h")},
66
+ #{cv.getVar($name, "", "-s")},
67
+ #{cv.getVar($name, "", "-invert-l")}
68
+ ) !important;
69
+ }
70
+
71
+ // On Scheme
72
+ .#{iv.$helpers-has-prefix}text-#{$name}-on-scheme {
73
+ color: hsl(
74
+ #{cv.getVar($name, "", "-h")},
75
+ #{cv.getVar($name, "", "-s")},
76
+ #{cv.getVar($name, "", "-on-scheme-l")}
77
+ ) !important;
78
+ }
79
+
80
+ .#{iv.$helpers-has-prefix}background-#{$name}-on-scheme {
81
+ background-color: hsl(
82
+ #{cv.getVar($name, "", "-h")},
83
+ #{cv.getVar($name, "", "-s")},
84
+ #{cv.getVar($name, "", "-on-scheme-l")}
85
+ ) !important;
86
+ }
87
+
88
+ // Light
89
+ .#{iv.$helpers-has-prefix}text-#{$name}-light {
90
+ color: hsl(
91
+ #{cv.getVar($name, "", "-h")},
92
+ #{cv.getVar($name, "", "-s")},
93
+ #{cv.getVar($name, "", "-light-l")}
94
+ ) !important;
95
+ }
96
+
97
+ .#{iv.$helpers-has-prefix}background-#{$name}-light {
98
+ background-color: hsl(
99
+ #{cv.getVar($name, "", "-h")},
100
+ #{cv.getVar($name, "", "-s")},
101
+ #{cv.getVar($name, "", "-light-l")}
102
+ ) !important;
103
+ }
104
+
105
+ .#{iv.$helpers-has-prefix}text-#{$name}-light-invert {
106
+ color: hsl(
107
+ #{cv.getVar($name, "", "-h")},
108
+ #{cv.getVar($name, "", "-s")},
109
+ #{cv.getVar($name, "", "-light-invert-l")}
110
+ ) !important;
111
+ }
112
+
113
+ .#{iv.$helpers-has-prefix}background-#{$name}-light-invert {
114
+ background-color: hsl(
115
+ #{cv.getVar($name, "", "-h")},
116
+ #{cv.getVar($name, "", "-s")},
117
+ #{cv.getVar($name, "", "-light-invert-l")}
118
+ ) !important;
119
+ }
120
+
121
+ // Dark
122
+ .#{iv.$helpers-has-prefix}text-#{$name}-dark {
123
+ color: hsl(
124
+ #{cv.getVar($name, "", "-h")},
125
+ #{cv.getVar($name, "", "-s")},
126
+ #{cv.getVar($name, "", "-dark-l")}
127
+ ) !important;
128
+ }
129
+
130
+ .#{iv.$helpers-has-prefix}background-#{$name}-dark {
131
+ background-color: hsl(
132
+ #{cv.getVar($name, "", "-h")},
133
+ #{cv.getVar($name, "", "-s")},
134
+ #{cv.getVar($name, "", "-dark-l")}
135
+ ) !important;
136
+ }
137
+
138
+ .#{iv.$helpers-has-prefix}text-#{$name}-dark-invert {
139
+ color: hsl(
140
+ #{cv.getVar($name, "", "-h")},
141
+ #{cv.getVar($name, "", "-s")},
142
+ #{cv.getVar($name, "", "-dark-invert-l")}
143
+ ) !important;
144
+ }
145
+
146
+ .#{iv.$helpers-has-prefix}background-#{$name}-dark-invert {
147
+ background-color: hsl(
148
+ #{cv.getVar($name, "", "-h")},
149
+ #{cv.getVar($name, "", "-s")},
150
+ #{cv.getVar($name, "", "-dark-invert-l")}
151
+ ) !important;
152
+ }
153
+
154
+ // Soft/Bold
155
+ .#{iv.$helpers-has-prefix}text-#{$name}-soft {
156
+ color: hsl(
157
+ #{cv.getVar($name, "", "-h")},
158
+ #{cv.getVar($name, "", "-s")},
159
+ #{cv.getVar("soft-l")}
160
+ ) !important;
161
+ }
162
+
163
+ .#{iv.$helpers-has-prefix}background-#{$name}-soft {
164
+ background-color: hsl(
165
+ #{cv.getVar($name, "", "-h")},
166
+ #{cv.getVar($name, "", "-s")},
167
+ #{cv.getVar("soft-l")}
168
+ ) !important;
169
+ }
170
+
171
+ .#{iv.$helpers-has-prefix}text-#{$name}-bold {
172
+ color: hsl(
173
+ #{cv.getVar($name, "", "-h")},
174
+ #{cv.getVar($name, "", "-s")},
175
+ #{cv.getVar("bold-l")}
176
+ ) !important;
177
+ }
178
+
179
+ .#{iv.$helpers-has-prefix}background-#{$name}-bold {
180
+ background-color: hsl(
181
+ #{cv.getVar($name, "", "-h")},
182
+ #{cv.getVar($name, "", "-s")},
183
+ #{cv.getVar("bold-l")}
184
+ ) !important;
185
+ }
186
+
187
+ .#{iv.$helpers-has-prefix}text-#{$name}-soft-invert {
188
+ color: hsl(
189
+ #{cv.getVar($name, "", "-h")},
190
+ #{cv.getVar($name, "", "-s")},
191
+ #{cv.getVar("soft-invert-l")}
192
+ ) !important;
193
+ }
194
+
195
+ .#{iv.$helpers-has-prefix}background-#{$name}-soft-invert {
196
+ background-color: hsl(
197
+ #{cv.getVar($name, "", "-h")},
198
+ #{cv.getVar($name, "", "-s")},
199
+ #{cv.getVar("soft-invert-l")}
200
+ ) !important;
201
+ }
202
+
203
+ .#{iv.$helpers-has-prefix}text-#{$name}-bold-invert {
204
+ color: hsl(
205
+ #{cv.getVar($name, "", "-h")},
206
+ #{cv.getVar($name, "", "-s")},
207
+ #{cv.getVar("bold-invert-l")}
208
+ ) !important;
209
+ }
210
+
211
+ .#{iv.$helpers-has-prefix}background-#{$name}-bold-invert {
212
+ background-color: hsl(
213
+ #{cv.getVar($name, "", "-h")},
214
+ #{cv.getVar($name, "", "-s")},
215
+ #{cv.getVar("bold-invert-l")}
216
+ ) !important;
217
+ }
218
+
219
+ @each $digit in $digits {
220
+ .#{iv.$helpers-has-prefix}text-#{$name}-#{$digit} {
221
+ color: hsl(
222
+ #{cv.getVar($name, "", "-h")},
223
+ #{cv.getVar($name, "", "-s")},
224
+ #{cv.getVar($name, "", "-#{$digit}-l")}
225
+ ) !important;
226
+ }
227
+
228
+ .#{iv.$helpers-has-prefix}background-#{$name}-#{$digit} {
229
+ background-color: hsl(
230
+ #{cv.getVar($name, "", "-h")},
231
+ #{cv.getVar($name, "", "-s")},
232
+ #{cv.getVar($name, "", "-#{$digit}-l")}
233
+ ) !important;
234
+ }
235
+
236
+ .#{iv.$helpers-has-prefix}text-#{$name}-#{$digit}-invert {
237
+ color: hsl(
238
+ #{cv.getVar($name, "", "-h")},
239
+ #{cv.getVar($name, "", "-s")},
240
+ #{cv.getVar($name, "", "-#{$digit}-invert-l")}
241
+ ) !important;
242
+ }
243
+
244
+ .#{iv.$helpers-has-prefix}background-#{$name}-#{$digit}-invert {
245
+ background-color: hsl(
246
+ #{cv.getVar($name, "", "-h")},
247
+ #{cv.getVar($name, "", "-s")},
248
+ #{cv.getVar($name, "", "-#{$digit}-invert-l")}
249
+ ) !important;
250
+ }
251
+ }
252
+
253
+ // Hover
254
+ a.#{iv.$helpers-has-prefix}text-#{$name},
255
+ button.#{iv.$helpers-has-prefix}text-#{$name},
256
+ #{iv.$helpers-has-prefix}text-#{$name}.is-hoverable {
257
+ &:hover,
258
+ &:focus-visible {
259
+ color: hsl(
260
+ #{cv.getVar($name, "", "-h")},
261
+ #{cv.getVar($name, "", "-s")},
262
+ calc(
263
+ #{cv.getVar($name, "", "-l")} + #{cv.getVar("hover-color-l-delta")}
264
+ )
265
+ ) !important;
266
+ }
267
+
268
+ &:active {
269
+ color: hsl(
270
+ #{cv.getVar($name, "", "-h")},
271
+ #{cv.getVar($name, "", "-s")},
272
+ calc(
273
+ #{cv.getVar($name, "", "-l")} + #{cv.getVar("active-color-l-delta")}
274
+ )
275
+ ) !important;
276
+ }
277
+ }
278
+
279
+ a.#{iv.$helpers-has-prefix}background-#{$name},
280
+ button.#{iv.$helpers-has-prefix}background-#{$name},
281
+ #{iv.$helpers-has-prefix}background-#{$name}.is-hoverable {
282
+ &:hover,
283
+ &:focus-visible {
284
+ background-color: hsl(
285
+ #{cv.getVar($name, "", "-h")},
286
+ #{cv.getVar($name, "", "-s")},
287
+ calc(
288
+ #{cv.getVar($name, "", "-l")} +
289
+ #{cv.getVar("hover-background-l-delta")}
290
+ )
291
+ ) !important;
292
+ }
293
+
294
+ &:active {
295
+ background-color: hsl(
296
+ #{cv.getVar($name, "", "-h")},
297
+ #{cv.getVar($name, "", "-s")},
298
+ calc(
299
+ #{cv.getVar($name, "", "-l")} +
300
+ #{cv.getVar("active-background-l-delta")}
301
+ )
302
+ ) !important;
303
+ }
304
+ }
305
+
306
+ // Palettes
307
+ .#{iv.$helpers-prefix}palette-#{$name} {
308
+ --h: #{cv.getVar($name, "", "-h")};
309
+ --s: #{cv.getVar($name, "", "-s")};
310
+ --l: #{cv.getVar($name, "", "-l")};
311
+ --color: hsl(var(--h), var(--s), var(--l));
312
+
313
+ @each $digit in $digits {
314
+ --#{$digit}-l: #{cv.getVar($name, "", "-#{$digit}-l")};
315
+ --color-#{$digit}: hsl(var(--h), var(--s), var(--#{$digit}-l));
316
+ }
317
+ }
318
+ }
319
+
320
+ @each $name, $shade in dv.$shades {
321
+ .#{iv.$helpers-has-prefix}text-#{$name} {
322
+ color: $shade !important;
323
+ }
324
+
325
+ .#{iv.$helpers-has-prefix}background-#{$name} {
326
+ background-color: $shade !important;
327
+ }
328
+ }
329
+
330
+ .#{iv.$helpers-has-prefix}text-current {
331
+ color: currentColor !important;
332
+ }
333
+
334
+ .#{iv.$helpers-has-prefix}text-inherit {
335
+ color: inherit !important;
336
+ }
337
+
338
+ .#{iv.$helpers-has-prefix}background-current {
339
+ background-color: currentColor !important;
340
+ }
341
+
342
+ .#{iv.$helpers-has-prefix}background-inherit {
343
+ background-color: inherit !important;
344
+ }
@@ -0,0 +1,62 @@
1
+ @use "../utilities/initial-variables" as iv;
2
+
3
+ $flex-direction-values: row, row-reverse, column, column-reverse;
4
+
5
+ @each $value in $flex-direction-values {
6
+ .#{iv.$helpers-prefix}flex-direction-#{$value} {
7
+ flex-direction: $value !important;
8
+ }
9
+ }
10
+
11
+ $flex-wrap-values: nowrap, wrap, wrap-reverse;
12
+
13
+ @each $value in $flex-wrap-values {
14
+ .#{iv.$helpers-prefix}flex-wrap-#{$value} {
15
+ flex-wrap: $value !important;
16
+ }
17
+ }
18
+
19
+ $justify-content-values: flex-start, flex-end, center, space-between,
20
+ space-around, space-evenly, start, end, left, right;
21
+
22
+ @each $value in $justify-content-values {
23
+ .#{iv.$helpers-prefix}justify-content-#{$value} {
24
+ justify-content: $value !important;
25
+ }
26
+ }
27
+
28
+ $align-content-values: flex-start, flex-end, center, space-between, space-around,
29
+ space-evenly, stretch, start, end, baseline;
30
+
31
+ @each $value in $align-content-values {
32
+ .#{iv.$helpers-prefix}align-content-#{$value} {
33
+ align-content: $value !important;
34
+ }
35
+ }
36
+
37
+ $align-items-values: stretch, flex-start, flex-end, center, baseline, start, end,
38
+ self-start, self-end;
39
+
40
+ @each $value in $align-items-values {
41
+ .#{iv.$helpers-prefix}align-items-#{$value} {
42
+ align-items: $value !important;
43
+ }
44
+ }
45
+
46
+ $align-self-values: auto, flex-start, flex-end, center, baseline, stretch;
47
+
48
+ @each $value in $align-self-values {
49
+ .#{iv.$helpers-prefix}align-self-#{$value} {
50
+ align-self: $value !important;
51
+ }
52
+ }
53
+
54
+ $flex-operators: grow, shrink;
55
+
56
+ @each $operator in $flex-operators {
57
+ @for $i from 0 through 5 {
58
+ .#{iv.$helpers-prefix}flex-#{$operator}-#{$i} {
59
+ flex-#{$operator}: $i !important;
60
+ }
61
+ }
62
+ }
@@ -0,0 +1,28 @@
1
+ @use "../utilities/initial-variables" as iv;
2
+ @use "../utilities/mixins" as mx;
3
+
4
+ .#{iv.$helpers-prefix}clearfix {
5
+ @include mx.clearfix;
6
+ }
7
+
8
+ .#{iv.$helpers-prefix}float-left,
9
+ .#{iv.$helpers-prefix}pulled-left {
10
+ float: left !important;
11
+ }
12
+
13
+ .#{iv.$helpers-prefix}float-right,
14
+ .#{iv.$helpers-prefix}pulled-right {
15
+ float: right !important;
16
+ }
17
+
18
+ .#{iv.$helpers-prefix}float-none {
19
+ float: none !important;
20
+ }
21
+
22
+ $clears: both left none right;
23
+
24
+ @each $clear in $clears {
25
+ .#{iv.$helpers-prefix}clear-#{$clear} {
26
+ clear: $clear !important;
27
+ }
28
+ }
@@ -0,0 +1,24 @@
1
+ @use "sass:math";
2
+ @use "sass:string";
3
+ @use "../utilities/initial-variables" as iv;
4
+
5
+ .#{iv.$helpers-prefix}gapless {
6
+ gap: 0 !important;
7
+ }
8
+
9
+ $gaps: "gap", "column-gap", "row-gap";
10
+ $gap-base: 0.5rem;
11
+
12
+ @each $gap in $gaps {
13
+ @for $i from 0 through 8 {
14
+ .#{iv.$helpers-prefix}#{$gap}-#{$i} {
15
+ #{$gap}: ($gap-base * $i) !important;
16
+ }
17
+
18
+ @if $i < 8 {
19
+ .#{iv.$helpers-prefix}#{$gap}-#{$i}\.5 {
20
+ #{$gap}: ($gap-base * $i + math.div($gap-base, 2)) !important;
21
+ }
22
+ }
23
+ }
24
+ }