@medyll/cssfabric 0.0.10

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 (165) hide show
  1. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  2. package/.idea/cssfabric.iml +11 -0
  3. package/.idea/misc.xml +9 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/vcs.xml +6 -0
  6. package/.vscode/settings.json +24 -0
  7. package/README.md +240 -0
  8. package/cssfabric.config.js +3 -0
  9. package/cssfabric.json +8 -0
  10. package/gulpfile.js +610 -0
  11. package/lib/_generated/export.variables.json +583 -0
  12. package/lib/index.d.ts +2 -0
  13. package/lib/index.js +7 -0
  14. package/lib/scripts/cssfabric.d.ts +24 -0
  15. package/lib/scripts/cssfabric.js +48 -0
  16. package/lib/scripts/cssfabricClassNames.d.ts +14 -0
  17. package/lib/scripts/cssfabricClassNames.js +150 -0
  18. package/lib/scripts/utils.d.ts +5 -0
  19. package/lib/scripts/utils.js +40 -0
  20. package/lib/styles/core/animation/animation.css +0 -0
  21. package/lib/styles/core/animation/animation.min.css +0 -0
  22. package/lib/styles/core/base/base.css +222 -0
  23. package/lib/styles/core/base/base.min.css +1 -0
  24. package/lib/styles/core/box/box.css +2263 -0
  25. package/lib/styles/core/box/box.min.css +1 -0
  26. package/lib/styles/core/box/box.responsive.css +13590 -0
  27. package/lib/styles/core/box/box.responsive.min.css +1 -0
  28. package/lib/styles/core/color/color.css +923 -0
  29. package/lib/styles/core/color/color.min.css +1 -0
  30. package/lib/styles/core/color/color.responsive.css +5550 -0
  31. package/lib/styles/core/color/color.responsive.min.css +1 -0
  32. package/lib/styles/core/flex/flex.css +140 -0
  33. package/lib/styles/core/flex/flex.min.css +1 -0
  34. package/lib/styles/core/flex/flex.responsive.css +852 -0
  35. package/lib/styles/core/flex/flex.responsive.min.css +1 -0
  36. package/lib/styles/core/grid/grid.css +50 -0
  37. package/lib/styles/core/grid/grid.min.css +1 -0
  38. package/lib/styles/core/grid/grid.responsive.css +312 -0
  39. package/lib/styles/core/grid/grid.responsive.min.css +1 -0
  40. package/lib/styles/core/main.css +2263 -0
  41. package/lib/styles/core/main.min.css +1 -0
  42. package/lib/styles/core/menu/menu.css +97 -0
  43. package/lib/styles/core/menu/menu.min.css +1 -0
  44. package/lib/styles/core/menu/menu.responsive.css +504 -0
  45. package/lib/styles/core/menu/menu.responsive.min.css +1 -0
  46. package/lib/styles/core/overflow/overflow.css +60 -0
  47. package/lib/styles/core/overflow/overflow.min.css +1 -0
  48. package/lib/styles/core/overflow/overflow.responsive.css +367 -0
  49. package/lib/styles/core/overflow/overflow.responsive.min.css +1 -0
  50. package/lib/styles/core/scale/scale.css +639 -0
  51. package/lib/styles/core/scale/scale.min.css +1 -0
  52. package/lib/styles/core/scale/scale.responsive.css +3846 -0
  53. package/lib/styles/core/scale/scale.responsive.min.css +1 -0
  54. package/lib/styles/core/table/table.css +72 -0
  55. package/lib/styles/core/table/table.min.css +1 -0
  56. package/lib/styles/core/table/table.responsive.css +444 -0
  57. package/lib/styles/core/table/table.responsive.min.css +1 -0
  58. package/lib/styles/core/text/text.css +147 -0
  59. package/lib/styles/core/text/text.min.css +1 -0
  60. package/lib/styles/core/text/text.responsive.css +894 -0
  61. package/lib/styles/core/text/text.responsive.min.css +1 -0
  62. package/lib/styles/core/theme/theme.css +197 -0
  63. package/lib/styles/core/theme/theme.min.css +1 -0
  64. package/lib/styles/core/vars.css +278 -0
  65. package/lib/styles/core/vars.min.css +1 -0
  66. package/lib/styles/core/zindex/zindex.css +279 -0
  67. package/lib/styles/core/zindex/zindex.min.css +1 -0
  68. package/lib/styles/cssfabric.css +7631 -0
  69. package/lib/styles/cssfabric.min.css +15 -0
  70. package/lib/styles/cssfabric.responsive.css +26359 -0
  71. package/lib/styles/cssfabric.responsive.min.css +9 -0
  72. package/package.json +67 -0
  73. package/src/_generated/export.variables.json +756 -0
  74. package/src/_generated/export.variables.md +240 -0
  75. package/src/_generated/index.d.ts +3 -0
  76. package/src/cssfabric/_utils.scss +205 -0
  77. package/src/cssfabric/index.d.ts +3 -0
  78. package/src/cssfabric/modules/_cssfabric-config.scss +89 -0
  79. package/src/cssfabric/modules/_mixins.scss +1 -0
  80. package/src/cssfabric/modules/animation/_animation-build.scss +121 -0
  81. package/src/cssfabric/modules/animation/_animation-vars.scss +17 -0
  82. package/src/cssfabric/modules/animation/animation.scss +3 -0
  83. package/src/cssfabric/modules/base/_base-vars.scss +17 -0
  84. package/src/cssfabric/modules/base/base.scss +80 -0
  85. package/src/cssfabric/modules/box/_box-build.scss +215 -0
  86. package/src/cssfabric/modules/box/_box-vars.scss +119 -0
  87. package/src/cssfabric/modules/box/box-responsive.scss +18 -0
  88. package/src/cssfabric/modules/box/box.scss +3 -0
  89. package/src/cssfabric/modules/color/_color-build.scss +108 -0
  90. package/src/cssfabric/modules/color/_color-vars.scss +80 -0
  91. package/src/cssfabric/modules/color/color-responsive.scss +23 -0
  92. package/src/cssfabric/modules/color/color.scss +3 -0
  93. package/src/cssfabric/modules/css-fabric.scss +2 -0
  94. package/src/cssfabric/modules/flex/_flex-build.scss +169 -0
  95. package/src/cssfabric/modules/flex/_flex-vars.scss +87 -0
  96. package/src/cssfabric/modules/flex/flex-responsive.scss +25 -0
  97. package/src/cssfabric/modules/flex/flex.scss +3 -0
  98. package/src/cssfabric/modules/grid/_grid-build.scss +91 -0
  99. package/src/cssfabric/modules/grid/_grid-vars.scss +87 -0
  100. package/src/cssfabric/modules/grid/grid-responsive.scss +25 -0
  101. package/src/cssfabric/modules/grid/grid.scss +3 -0
  102. package/src/cssfabric/modules/main.scss +3 -0
  103. package/src/cssfabric/modules/menu/_menu-build.scss +119 -0
  104. package/src/cssfabric/modules/menu/_menu-vars.scss +29 -0
  105. package/src/cssfabric/modules/menu/menu-responsive.scss +19 -0
  106. package/src/cssfabric/modules/menu/menu.scss +3 -0
  107. package/src/cssfabric/modules/overflow/_overflow-build.scss +22 -0
  108. package/src/cssfabric/modules/overflow/_overflow-vars.scss +31 -0
  109. package/src/cssfabric/modules/overflow/overflow-responsive.scss +25 -0
  110. package/src/cssfabric/modules/overflow/overflow.scss +5 -0
  111. package/src/cssfabric/modules/scale/_scale-build.scss +129 -0
  112. package/src/cssfabric/modules/scale/_scale-vars.scss +75 -0
  113. package/src/cssfabric/modules/scale/scale-responsive.scss +23 -0
  114. package/src/cssfabric/modules/scale/scale.scss +3 -0
  115. package/src/cssfabric/modules/table/_table-build.scss +134 -0
  116. package/src/cssfabric/modules/table/_table-vars.scss +30 -0
  117. package/src/cssfabric/modules/table/table-responsive.scss +24 -0
  118. package/src/cssfabric/modules/table/table.scss +3 -0
  119. package/src/cssfabric/modules/text/_text-build.scss +109 -0
  120. package/src/cssfabric/modules/text/_text-vars.scss +87 -0
  121. package/src/cssfabric/modules/text/text-responsive.scss +25 -0
  122. package/src/cssfabric/modules/text/text.scss +5 -0
  123. package/src/cssfabric/modules/theme/_theme-build.scss +77 -0
  124. package/src/cssfabric/modules/theme/_theme-vars.scss +47 -0
  125. package/src/cssfabric/modules/theme/theme.scss +5 -0
  126. package/src/cssfabric/modules/vars.scss +120 -0
  127. package/src/cssfabric/modules/zindex/_zindex-vars.scss +19 -0
  128. package/src/cssfabric/modules/zindex/zindex.scss +18 -0
  129. package/src/index.d.ts +3 -0
  130. package/src/index.ts +4 -0
  131. package/src/scripts/cssfabric.ts +54 -0
  132. package/src/scripts/cssfabricClassNames.ts +216 -0
  133. package/src/scripts/utils.ts +37 -0
  134. package/src/vendor/index.d.ts +3 -0
  135. package/src/vendor/normalize/normalize.min.css +2 -0
  136. package/src/vendor/sass-json-export/CHANGELOG.md +26 -0
  137. package/src/vendor/sass-json-export/Gruntfile.js +60 -0
  138. package/src/vendor/sass-json-export/LICENSE +20 -0
  139. package/src/vendor/sass-json-export/README.md +90 -0
  140. package/src/vendor/sass-json-export/package.json +60 -0
  141. package/src/vendor/sass-json-export/stylesheets/encode/api/_json.scss +26 -0
  142. package/src/vendor/sass-json-export/stylesheets/encode/encode.scss +17 -0
  143. package/src/vendor/sass-json-export/stylesheets/encode/helpers/_quote.scss +9 -0
  144. package/src/vendor/sass-json-export/stylesheets/encode/mixins/_json.scss +42 -0
  145. package/src/vendor/sass-json-export/stylesheets/encode/types/_bool.scss +7 -0
  146. package/src/vendor/sass-json-export/stylesheets/encode/types/_color.scss +8 -0
  147. package/src/vendor/sass-json-export/stylesheets/encode/types/_list.scss +14 -0
  148. package/src/vendor/sass-json-export/stylesheets/encode/types/_map.scss +15 -0
  149. package/src/vendor/sass-json-export/stylesheets/encode/types/_null.scss +7 -0
  150. package/src/vendor/sass-json-export/stylesheets/encode/types/_number.scss +8 -0
  151. package/src/vendor/sass-json-export/stylesheets/encode/types/_string.scss +8 -0
  152. package/src/vendor/sass-json-export/stylesheets/sass-json-export.scss +2 -0
  153. package/src/vendor/sass-json-export/test/encode/_index.scss +14 -0
  154. package/src/vendor/sass-json-export/test/encode/api/_json.scss +29 -0
  155. package/src/vendor/sass-json-export/test/encode/helpers/_quote.scss +6 -0
  156. package/src/vendor/sass-json-export/test/encode/types/_bool.scss +6 -0
  157. package/src/vendor/sass-json-export/test/encode/types/_color.scss +7 -0
  158. package/src/vendor/sass-json-export/test/encode/types/_list.scss +25 -0
  159. package/src/vendor/sass-json-export/test/encode/types/_map.scss +17 -0
  160. package/src/vendor/sass-json-export/test/encode/types/_null.scss +8 -0
  161. package/src/vendor/sass-json-export/test/encode/types/_number.scss +68 -0
  162. package/src/vendor/sass-json-export/test/encode/types/_string.scss +9 -0
  163. package/src/vendor/sass-json-export/test/test.scss +9 -0
  164. package/tsconfig.json +46 -0
  165. package/webpack.config.js +53 -0
@@ -0,0 +1,639 @@
1
+ .w-full, .scale-w-full {
2
+ width: 100%;
3
+ }
4
+ .w-full-max, .scale-w-full-max {
5
+ max-width: 100%;
6
+ }
7
+ .w-full-min, .scale-w-full-min {
8
+ min-width: 100%;
9
+ }
10
+
11
+ .w-mid, .scale-w-mid {
12
+ width: 50%;
13
+ }
14
+ .w-mid-max, .scale-w-mid-max {
15
+ max-width: 50%;
16
+ }
17
+ .w-mid-min, .scale-w-mid-min {
18
+ min-width: 50%;
19
+ }
20
+
21
+ .w-quarter, .scale-w-quarter {
22
+ width: 25%;
23
+ }
24
+ .w-quarter-max, .scale-w-quarter-max {
25
+ max-width: 25%;
26
+ }
27
+ .w-quarter-min, .scale-w-quarter-min {
28
+ min-width: 25%;
29
+ }
30
+
31
+ .w-tiers, .scale-w-tiers {
32
+ width: 33%;
33
+ }
34
+ .w-tiers-max, .scale-w-tiers-max {
35
+ max-width: 33%;
36
+ }
37
+ .w-tiers-min, .scale-w-tiers-min {
38
+ min-width: 33%;
39
+ }
40
+
41
+ .w-content-max, .scale-w-content-max {
42
+ width: max-content;
43
+ }
44
+ .w-content-max-max, .scale-w-content-max-max {
45
+ max-width: max-content;
46
+ }
47
+ .w-content-max-min, .scale-w-content-max-min {
48
+ min-width: max-content;
49
+ }
50
+
51
+ .w-content-min, .scale-w-content-min {
52
+ width: min-content;
53
+ }
54
+ .w-content-min-max, .scale-w-content-min-max {
55
+ max-width: min-content;
56
+ }
57
+ .w-content-min-min, .scale-w-content-min-min {
58
+ min-width: min-content;
59
+ }
60
+
61
+ .w-1, .scale-w-1 {
62
+ width: 1rem;
63
+ }
64
+ .w-1-max, .scale-w-1-max {
65
+ max-width: 1rem;
66
+ }
67
+ .w-1-min, .scale-w-1-min {
68
+ min-width: 1rem;
69
+ }
70
+
71
+ .w-2, .scale-w-2 {
72
+ width: 2rem;
73
+ }
74
+ .w-2-max, .scale-w-2-max {
75
+ max-width: 2rem;
76
+ }
77
+ .w-2-min, .scale-w-2-min {
78
+ min-width: 2rem;
79
+ }
80
+
81
+ .w-4, .scale-w-4 {
82
+ width: 4rem;
83
+ }
84
+ .w-4-max, .scale-w-4-max {
85
+ max-width: 4rem;
86
+ }
87
+ .w-4-min, .scale-w-4-min {
88
+ min-width: 4rem;
89
+ }
90
+
91
+ .w-8, .scale-w-8 {
92
+ width: 8rem;
93
+ }
94
+ .w-8-max, .scale-w-8-max {
95
+ max-width: 8rem;
96
+ }
97
+ .w-8-min, .scale-w-8-min {
98
+ min-width: 8rem;
99
+ }
100
+
101
+ .w-16, .scale-w-16 {
102
+ width: 16rem;
103
+ }
104
+ .w-16-max, .scale-w-16-max {
105
+ max-width: 16rem;
106
+ }
107
+ .w-16-min, .scale-w-16-min {
108
+ min-width: 16rem;
109
+ }
110
+
111
+ .w-24, .scale-w-24 {
112
+ width: 24rem;
113
+ }
114
+ .w-24-max, .scale-w-24-max {
115
+ max-width: 24rem;
116
+ }
117
+ .w-24-min, .scale-w-24-min {
118
+ min-width: 24rem;
119
+ }
120
+
121
+ .w-32, .scale-w-32 {
122
+ width: 32rem;
123
+ }
124
+ .w-32-max, .scale-w-32-max {
125
+ max-width: 32rem;
126
+ }
127
+ .w-32-min, .scale-w-32-min {
128
+ min-width: 32rem;
129
+ }
130
+
131
+ .w-48, .scale-w-48 {
132
+ width: 48rem;
133
+ }
134
+ .w-48-max, .scale-w-48-max {
135
+ max-width: 48rem;
136
+ }
137
+ .w-48-min, .scale-w-48-min {
138
+ min-width: 48rem;
139
+ }
140
+
141
+ .w-64, .scale-w-64 {
142
+ width: 64rem;
143
+ }
144
+ .w-64-max, .scale-w-64-max {
145
+ max-width: 64rem;
146
+ }
147
+ .w-64-min, .scale-w-64-min {
148
+ min-width: 64rem;
149
+ }
150
+
151
+ .w-1-5, .scale-w-1-5 {
152
+ width: 20%;
153
+ }
154
+ .w-1-5-max, .scale-w-1-5-max {
155
+ max-width: 20%;
156
+ }
157
+ .w-1-5-min, .scale-w-1-5-min {
158
+ min-width: 20%;
159
+ }
160
+
161
+ .w-2-5, .scale-w-2-5 {
162
+ width: 40%;
163
+ }
164
+ .w-2-5-max, .scale-w-2-5-max {
165
+ max-width: 40%;
166
+ }
167
+ .w-2-5-min, .scale-w-2-5-min {
168
+ min-width: 40%;
169
+ }
170
+
171
+ .w-3-5, .scale-w-3-5 {
172
+ width: 60%;
173
+ }
174
+ .w-3-5-max, .scale-w-3-5-max {
175
+ max-width: 60%;
176
+ }
177
+ .w-3-5-min, .scale-w-3-5-min {
178
+ min-width: 60%;
179
+ }
180
+
181
+ .w-4-5, .scale-w-4-5 {
182
+ width: 80%;
183
+ }
184
+ .w-4-5-max, .scale-w-4-5-max {
185
+ max-width: 80%;
186
+ }
187
+ .w-4-5-min, .scale-w-4-5-min {
188
+ min-width: 80%;
189
+ }
190
+
191
+ .w-5-5, .scale-w-5-5 {
192
+ width: 100%;
193
+ }
194
+ .w-5-5-max, .scale-w-5-5-max {
195
+ max-width: 100%;
196
+ }
197
+ .w-5-5-min, .scale-w-5-5-min {
198
+ min-width: 100%;
199
+ }
200
+
201
+ .w-1-12, .scale-w-1-12 {
202
+ width: 8.3333333333%;
203
+ }
204
+ .w-1-12-max, .scale-w-1-12-max {
205
+ max-width: 8.3333333333%;
206
+ }
207
+ .w-1-12-min, .scale-w-1-12-min {
208
+ min-width: 8.3333333333%;
209
+ }
210
+
211
+ .w-2-12, .scale-w-2-12 {
212
+ width: 16.6666666667%;
213
+ }
214
+ .w-2-12-max, .scale-w-2-12-max {
215
+ max-width: 16.6666666667%;
216
+ }
217
+ .w-2-12-min, .scale-w-2-12-min {
218
+ min-width: 16.6666666667%;
219
+ }
220
+
221
+ .w-3-12, .scale-w-3-12 {
222
+ width: 25%;
223
+ }
224
+ .w-3-12-max, .scale-w-3-12-max {
225
+ max-width: 25%;
226
+ }
227
+ .w-3-12-min, .scale-w-3-12-min {
228
+ min-width: 25%;
229
+ }
230
+
231
+ .w-4-12, .scale-w-4-12 {
232
+ width: 33.3333333333%;
233
+ }
234
+ .w-4-12-max, .scale-w-4-12-max {
235
+ max-width: 33.3333333333%;
236
+ }
237
+ .w-4-12-min, .scale-w-4-12-min {
238
+ min-width: 33.3333333333%;
239
+ }
240
+
241
+ .w-5-12, .scale-w-5-12 {
242
+ width: 41.6666666667%;
243
+ }
244
+ .w-5-12-max, .scale-w-5-12-max {
245
+ max-width: 41.6666666667%;
246
+ }
247
+ .w-5-12-min, .scale-w-5-12-min {
248
+ min-width: 41.6666666667%;
249
+ }
250
+
251
+ .w-6-12, .scale-w-6-12 {
252
+ width: 50%;
253
+ }
254
+ .w-6-12-max, .scale-w-6-12-max {
255
+ max-width: 50%;
256
+ }
257
+ .w-6-12-min, .scale-w-6-12-min {
258
+ min-width: 50%;
259
+ }
260
+
261
+ .w-7-12, .scale-w-7-12 {
262
+ width: 58.3333333333%;
263
+ }
264
+ .w-7-12-max, .scale-w-7-12-max {
265
+ max-width: 58.3333333333%;
266
+ }
267
+ .w-7-12-min, .scale-w-7-12-min {
268
+ min-width: 58.3333333333%;
269
+ }
270
+
271
+ .w-8-12, .scale-w-8-12 {
272
+ width: 66.6666666667%;
273
+ }
274
+ .w-8-12-max, .scale-w-8-12-max {
275
+ max-width: 66.6666666667%;
276
+ }
277
+ .w-8-12-min, .scale-w-8-12-min {
278
+ min-width: 66.6666666667%;
279
+ }
280
+
281
+ .w-9-12, .scale-w-9-12 {
282
+ width: 75%;
283
+ }
284
+ .w-9-12-max, .scale-w-9-12-max {
285
+ max-width: 75%;
286
+ }
287
+ .w-9-12-min, .scale-w-9-12-min {
288
+ min-width: 75%;
289
+ }
290
+
291
+ .w-10-12, .scale-w-10-12 {
292
+ width: 83.3333333333%;
293
+ }
294
+ .w-10-12-max, .scale-w-10-12-max {
295
+ max-width: 83.3333333333%;
296
+ }
297
+ .w-10-12-min, .scale-w-10-12-min {
298
+ min-width: 83.3333333333%;
299
+ }
300
+
301
+ .w-11-12, .scale-w-11-12 {
302
+ width: 91.6666666667%;
303
+ }
304
+ .w-11-12-max, .scale-w-11-12-max {
305
+ max-width: 91.6666666667%;
306
+ }
307
+ .w-11-12-min, .scale-w-11-12-min {
308
+ min-width: 91.6666666667%;
309
+ }
310
+
311
+ .w-12-12, .scale-w-12-12 {
312
+ width: 100%;
313
+ }
314
+ .w-12-12-max, .scale-w-12-12-max {
315
+ max-width: 100%;
316
+ }
317
+ .w-12-12-min, .scale-w-12-12-min {
318
+ min-width: 100%;
319
+ }
320
+
321
+ .h-full, .scale-h-full {
322
+ height: 100%;
323
+ }
324
+ .h-full-max, .scale-h-full-max {
325
+ max-height: 100%;
326
+ }
327
+ .h-full-min, .scale-h-full-min {
328
+ min-height: 100%;
329
+ }
330
+
331
+ .h-mid, .scale-h-mid {
332
+ height: 50%;
333
+ }
334
+ .h-mid-max, .scale-h-mid-max {
335
+ max-height: 50%;
336
+ }
337
+ .h-mid-min, .scale-h-mid-min {
338
+ min-height: 50%;
339
+ }
340
+
341
+ .h-quarter, .scale-h-quarter {
342
+ height: 25%;
343
+ }
344
+ .h-quarter-max, .scale-h-quarter-max {
345
+ max-height: 25%;
346
+ }
347
+ .h-quarter-min, .scale-h-quarter-min {
348
+ min-height: 25%;
349
+ }
350
+
351
+ .h-tiers, .scale-h-tiers {
352
+ height: 33%;
353
+ }
354
+ .h-tiers-max, .scale-h-tiers-max {
355
+ max-height: 33%;
356
+ }
357
+ .h-tiers-min, .scale-h-tiers-min {
358
+ min-height: 33%;
359
+ }
360
+
361
+ .h-content-max, .scale-h-content-max {
362
+ height: max-content;
363
+ }
364
+ .h-content-max-max, .scale-h-content-max-max {
365
+ max-height: max-content;
366
+ }
367
+ .h-content-max-min, .scale-h-content-max-min {
368
+ min-height: max-content;
369
+ }
370
+
371
+ .h-content-min, .scale-h-content-min {
372
+ height: min-content;
373
+ }
374
+ .h-content-min-max, .scale-h-content-min-max {
375
+ max-height: min-content;
376
+ }
377
+ .h-content-min-min, .scale-h-content-min-min {
378
+ min-height: min-content;
379
+ }
380
+
381
+ .h-1, .scale-h-1 {
382
+ height: 1rem;
383
+ }
384
+ .h-1-max, .scale-h-1-max {
385
+ max-height: 1rem;
386
+ }
387
+ .h-1-min, .scale-h-1-min {
388
+ min-height: 1rem;
389
+ }
390
+
391
+ .h-2, .scale-h-2 {
392
+ height: 2rem;
393
+ }
394
+ .h-2-max, .scale-h-2-max {
395
+ max-height: 2rem;
396
+ }
397
+ .h-2-min, .scale-h-2-min {
398
+ min-height: 2rem;
399
+ }
400
+
401
+ .h-4, .scale-h-4 {
402
+ height: 4rem;
403
+ }
404
+ .h-4-max, .scale-h-4-max {
405
+ max-height: 4rem;
406
+ }
407
+ .h-4-min, .scale-h-4-min {
408
+ min-height: 4rem;
409
+ }
410
+
411
+ .h-8, .scale-h-8 {
412
+ height: 8rem;
413
+ }
414
+ .h-8-max, .scale-h-8-max {
415
+ max-height: 8rem;
416
+ }
417
+ .h-8-min, .scale-h-8-min {
418
+ min-height: 8rem;
419
+ }
420
+
421
+ .h-16, .scale-h-16 {
422
+ height: 16rem;
423
+ }
424
+ .h-16-max, .scale-h-16-max {
425
+ max-height: 16rem;
426
+ }
427
+ .h-16-min, .scale-h-16-min {
428
+ min-height: 16rem;
429
+ }
430
+
431
+ .h-24, .scale-h-24 {
432
+ height: 24rem;
433
+ }
434
+ .h-24-max, .scale-h-24-max {
435
+ max-height: 24rem;
436
+ }
437
+ .h-24-min, .scale-h-24-min {
438
+ min-height: 24rem;
439
+ }
440
+
441
+ .h-32, .scale-h-32 {
442
+ height: 32rem;
443
+ }
444
+ .h-32-max, .scale-h-32-max {
445
+ max-height: 32rem;
446
+ }
447
+ .h-32-min, .scale-h-32-min {
448
+ min-height: 32rem;
449
+ }
450
+
451
+ .h-48, .scale-h-48 {
452
+ height: 48rem;
453
+ }
454
+ .h-48-max, .scale-h-48-max {
455
+ max-height: 48rem;
456
+ }
457
+ .h-48-min, .scale-h-48-min {
458
+ min-height: 48rem;
459
+ }
460
+
461
+ .h-64, .scale-h-64 {
462
+ height: 64rem;
463
+ }
464
+ .h-64-max, .scale-h-64-max {
465
+ max-height: 64rem;
466
+ }
467
+ .h-64-min, .scale-h-64-min {
468
+ min-height: 64rem;
469
+ }
470
+
471
+ .h-1-5, .scale-h-1-5 {
472
+ height: 20%;
473
+ }
474
+ .h-1-5-max, .scale-h-1-5-max {
475
+ max-height: 20%;
476
+ }
477
+ .h-1-5-min, .scale-h-1-5-min {
478
+ min-height: 20%;
479
+ }
480
+
481
+ .h-2-5, .scale-h-2-5 {
482
+ height: 40%;
483
+ }
484
+ .h-2-5-max, .scale-h-2-5-max {
485
+ max-height: 40%;
486
+ }
487
+ .h-2-5-min, .scale-h-2-5-min {
488
+ min-height: 40%;
489
+ }
490
+
491
+ .h-3-5, .scale-h-3-5 {
492
+ height: 60%;
493
+ }
494
+ .h-3-5-max, .scale-h-3-5-max {
495
+ max-height: 60%;
496
+ }
497
+ .h-3-5-min, .scale-h-3-5-min {
498
+ min-height: 60%;
499
+ }
500
+
501
+ .h-4-5, .scale-h-4-5 {
502
+ height: 80%;
503
+ }
504
+ .h-4-5-max, .scale-h-4-5-max {
505
+ max-height: 80%;
506
+ }
507
+ .h-4-5-min, .scale-h-4-5-min {
508
+ min-height: 80%;
509
+ }
510
+
511
+ .h-5-5, .scale-h-5-5 {
512
+ height: 100%;
513
+ }
514
+ .h-5-5-max, .scale-h-5-5-max {
515
+ max-height: 100%;
516
+ }
517
+ .h-5-5-min, .scale-h-5-5-min {
518
+ min-height: 100%;
519
+ }
520
+
521
+ .h-1-12, .scale-h-1-12 {
522
+ height: 8.3333333333%;
523
+ }
524
+ .h-1-12-max, .scale-h-1-12-max {
525
+ max-height: 8.3333333333%;
526
+ }
527
+ .h-1-12-min, .scale-h-1-12-min {
528
+ min-height: 8.3333333333%;
529
+ }
530
+
531
+ .h-2-12, .scale-h-2-12 {
532
+ height: 16.6666666667%;
533
+ }
534
+ .h-2-12-max, .scale-h-2-12-max {
535
+ max-height: 16.6666666667%;
536
+ }
537
+ .h-2-12-min, .scale-h-2-12-min {
538
+ min-height: 16.6666666667%;
539
+ }
540
+
541
+ .h-3-12, .scale-h-3-12 {
542
+ height: 25%;
543
+ }
544
+ .h-3-12-max, .scale-h-3-12-max {
545
+ max-height: 25%;
546
+ }
547
+ .h-3-12-min, .scale-h-3-12-min {
548
+ min-height: 25%;
549
+ }
550
+
551
+ .h-4-12, .scale-h-4-12 {
552
+ height: 33.3333333333%;
553
+ }
554
+ .h-4-12-max, .scale-h-4-12-max {
555
+ max-height: 33.3333333333%;
556
+ }
557
+ .h-4-12-min, .scale-h-4-12-min {
558
+ min-height: 33.3333333333%;
559
+ }
560
+
561
+ .h-5-12, .scale-h-5-12 {
562
+ height: 41.6666666667%;
563
+ }
564
+ .h-5-12-max, .scale-h-5-12-max {
565
+ max-height: 41.6666666667%;
566
+ }
567
+ .h-5-12-min, .scale-h-5-12-min {
568
+ min-height: 41.6666666667%;
569
+ }
570
+
571
+ .h-6-12, .scale-h-6-12 {
572
+ height: 50%;
573
+ }
574
+ .h-6-12-max, .scale-h-6-12-max {
575
+ max-height: 50%;
576
+ }
577
+ .h-6-12-min, .scale-h-6-12-min {
578
+ min-height: 50%;
579
+ }
580
+
581
+ .h-7-12, .scale-h-7-12 {
582
+ height: 58.3333333333%;
583
+ }
584
+ .h-7-12-max, .scale-h-7-12-max {
585
+ max-height: 58.3333333333%;
586
+ }
587
+ .h-7-12-min, .scale-h-7-12-min {
588
+ min-height: 58.3333333333%;
589
+ }
590
+
591
+ .h-8-12, .scale-h-8-12 {
592
+ height: 66.6666666667%;
593
+ }
594
+ .h-8-12-max, .scale-h-8-12-max {
595
+ max-height: 66.6666666667%;
596
+ }
597
+ .h-8-12-min, .scale-h-8-12-min {
598
+ min-height: 66.6666666667%;
599
+ }
600
+
601
+ .h-9-12, .scale-h-9-12 {
602
+ height: 75%;
603
+ }
604
+ .h-9-12-max, .scale-h-9-12-max {
605
+ max-height: 75%;
606
+ }
607
+ .h-9-12-min, .scale-h-9-12-min {
608
+ min-height: 75%;
609
+ }
610
+
611
+ .h-10-12, .scale-h-10-12 {
612
+ height: 83.3333333333%;
613
+ }
614
+ .h-10-12-max, .scale-h-10-12-max {
615
+ max-height: 83.3333333333%;
616
+ }
617
+ .h-10-12-min, .scale-h-10-12-min {
618
+ min-height: 83.3333333333%;
619
+ }
620
+
621
+ .h-11-12, .scale-h-11-12 {
622
+ height: 91.6666666667%;
623
+ }
624
+ .h-11-12-max, .scale-h-11-12-max {
625
+ max-height: 91.6666666667%;
626
+ }
627
+ .h-11-12-min, .scale-h-11-12-min {
628
+ min-height: 91.6666666667%;
629
+ }
630
+
631
+ .h-12-12, .scale-h-12-12 {
632
+ height: 100%;
633
+ }
634
+ .h-12-12-max, .scale-h-12-12-max {
635
+ max-height: 100%;
636
+ }
637
+ .h-12-12-min, .scale-h-12-12-min {
638
+ min-height: 100%;
639
+ }
@@ -0,0 +1 @@
1
+ .scale-w-full,.w-full{width:100%}.scale-w-full-max,.w-full-max{max-width:100%}.scale-w-full-min,.w-full-min{min-width:100%}.scale-w-mid,.w-mid{width:50%}.scale-w-mid-max,.w-mid-max{max-width:50%}.scale-w-mid-min,.w-mid-min{min-width:50%}.scale-w-quarter,.w-quarter{width:25%}.scale-w-quarter-max,.w-quarter-max{max-width:25%}.scale-w-quarter-min,.w-quarter-min{min-width:25%}.scale-w-tiers,.w-tiers{width:33%}.scale-w-tiers-max,.w-tiers-max{max-width:33%}.scale-w-tiers-min,.w-tiers-min{min-width:33%}.scale-w-content-max,.w-content-max{width:max-content}.scale-w-content-max-max,.w-content-max-max{max-width:max-content}.scale-w-content-max-min,.w-content-max-min{min-width:max-content}.scale-w-content-min,.w-content-min{width:min-content}.scale-w-content-min-max,.w-content-min-max{max-width:min-content}.scale-w-content-min-min,.w-content-min-min{min-width:min-content}.scale-w-1,.w-1{width:1rem}.scale-w-1-max,.w-1-max{max-width:1rem}.scale-w-1-min,.w-1-min{min-width:1rem}.scale-w-2,.w-2{width:2rem}.scale-w-2-max,.w-2-max{max-width:2rem}.scale-w-2-min,.w-2-min{min-width:2rem}.scale-w-4,.w-4{width:4rem}.scale-w-4-max,.w-4-max{max-width:4rem}.scale-w-4-min,.w-4-min{min-width:4rem}.scale-w-8,.w-8{width:8rem}.scale-w-8-max,.w-8-max{max-width:8rem}.scale-w-8-min,.w-8-min{min-width:8rem}.scale-w-16,.w-16{width:16rem}.scale-w-16-max,.w-16-max{max-width:16rem}.scale-w-16-min,.w-16-min{min-width:16rem}.scale-w-24,.w-24{width:24rem}.scale-w-24-max,.w-24-max{max-width:24rem}.scale-w-24-min,.w-24-min{min-width:24rem}.scale-w-32,.w-32{width:32rem}.scale-w-32-max,.w-32-max{max-width:32rem}.scale-w-32-min,.w-32-min{min-width:32rem}.scale-w-48,.w-48{width:48rem}.scale-w-48-max,.w-48-max{max-width:48rem}.scale-w-48-min,.w-48-min{min-width:48rem}.scale-w-64,.w-64{width:64rem}.scale-w-64-max,.w-64-max{max-width:64rem}.scale-w-64-min,.w-64-min{min-width:64rem}.scale-w-1-5,.w-1-5{width:20%}.scale-w-1-5-max,.w-1-5-max{max-width:20%}.scale-w-1-5-min,.w-1-5-min{min-width:20%}.scale-w-2-5,.w-2-5{width:40%}.scale-w-2-5-max,.w-2-5-max{max-width:40%}.scale-w-2-5-min,.w-2-5-min{min-width:40%}.scale-w-3-5,.w-3-5{width:60%}.scale-w-3-5-max,.w-3-5-max{max-width:60%}.scale-w-3-5-min,.w-3-5-min{min-width:60%}.scale-w-4-5,.w-4-5{width:80%}.scale-w-4-5-max,.w-4-5-max{max-width:80%}.scale-w-4-5-min,.w-4-5-min{min-width:80%}.scale-w-5-5,.w-5-5{width:100%}.scale-w-5-5-max,.w-5-5-max{max-width:100%}.scale-w-5-5-min,.w-5-5-min{min-width:100%}.scale-w-1-12,.w-1-12{width:8.3333333333%}.scale-w-1-12-max,.w-1-12-max{max-width:8.3333333333%}.scale-w-1-12-min,.w-1-12-min{min-width:8.3333333333%}.scale-w-2-12,.w-2-12{width:16.6666666667%}.scale-w-2-12-max,.w-2-12-max{max-width:16.6666666667%}.scale-w-2-12-min,.w-2-12-min{min-width:16.6666666667%}.scale-w-3-12,.w-3-12{width:25%}.scale-w-3-12-max,.w-3-12-max{max-width:25%}.scale-w-3-12-min,.w-3-12-min{min-width:25%}.scale-w-4-12,.w-4-12{width:33.3333333333%}.scale-w-4-12-max,.w-4-12-max{max-width:33.3333333333%}.scale-w-4-12-min,.w-4-12-min{min-width:33.3333333333%}.scale-w-5-12,.w-5-12{width:41.6666666667%}.scale-w-5-12-max,.w-5-12-max{max-width:41.6666666667%}.scale-w-5-12-min,.w-5-12-min{min-width:41.6666666667%}.scale-w-6-12,.w-6-12{width:50%}.scale-w-6-12-max,.w-6-12-max{max-width:50%}.scale-w-6-12-min,.w-6-12-min{min-width:50%}.scale-w-7-12,.w-7-12{width:58.3333333333%}.scale-w-7-12-max,.w-7-12-max{max-width:58.3333333333%}.scale-w-7-12-min,.w-7-12-min{min-width:58.3333333333%}.scale-w-8-12,.w-8-12{width:66.6666666667%}.scale-w-8-12-max,.w-8-12-max{max-width:66.6666666667%}.scale-w-8-12-min,.w-8-12-min{min-width:66.6666666667%}.scale-w-9-12,.w-9-12{width:75%}.scale-w-9-12-max,.w-9-12-max{max-width:75%}.scale-w-9-12-min,.w-9-12-min{min-width:75%}.scale-w-10-12,.w-10-12{width:83.3333333333%}.scale-w-10-12-max,.w-10-12-max{max-width:83.3333333333%}.scale-w-10-12-min,.w-10-12-min{min-width:83.3333333333%}.scale-w-11-12,.w-11-12{width:91.6666666667%}.scale-w-11-12-max,.w-11-12-max{max-width:91.6666666667%}.scale-w-11-12-min,.w-11-12-min{min-width:91.6666666667%}.scale-w-12-12,.w-12-12{width:100%}.scale-w-12-12-max,.w-12-12-max{max-width:100%}.scale-w-12-12-min,.w-12-12-min{min-width:100%}.h-full,.scale-h-full{height:100%}.h-full-max,.scale-h-full-max{max-height:100%}.h-full-min,.scale-h-full-min{min-height:100%}.h-mid,.scale-h-mid{height:50%}.h-mid-max,.scale-h-mid-max{max-height:50%}.h-mid-min,.scale-h-mid-min{min-height:50%}.h-quarter,.scale-h-quarter{height:25%}.h-quarter-max,.scale-h-quarter-max{max-height:25%}.h-quarter-min,.scale-h-quarter-min{min-height:25%}.h-tiers,.scale-h-tiers{height:33%}.h-tiers-max,.scale-h-tiers-max{max-height:33%}.h-tiers-min,.scale-h-tiers-min{min-height:33%}.h-content-max,.scale-h-content-max{height:max-content}.h-content-max-max,.scale-h-content-max-max{max-height:max-content}.h-content-max-min,.scale-h-content-max-min{min-height:max-content}.h-content-min,.scale-h-content-min{height:min-content}.h-content-min-max,.scale-h-content-min-max{max-height:min-content}.h-content-min-min,.scale-h-content-min-min{min-height:min-content}.h-1,.scale-h-1{height:1rem}.h-1-max,.scale-h-1-max{max-height:1rem}.h-1-min,.scale-h-1-min{min-height:1rem}.h-2,.scale-h-2{height:2rem}.h-2-max,.scale-h-2-max{max-height:2rem}.h-2-min,.scale-h-2-min{min-height:2rem}.h-4,.scale-h-4{height:4rem}.h-4-max,.scale-h-4-max{max-height:4rem}.h-4-min,.scale-h-4-min{min-height:4rem}.h-8,.scale-h-8{height:8rem}.h-8-max,.scale-h-8-max{max-height:8rem}.h-8-min,.scale-h-8-min{min-height:8rem}.h-16,.scale-h-16{height:16rem}.h-16-max,.scale-h-16-max{max-height:16rem}.h-16-min,.scale-h-16-min{min-height:16rem}.h-24,.scale-h-24{height:24rem}.h-24-max,.scale-h-24-max{max-height:24rem}.h-24-min,.scale-h-24-min{min-height:24rem}.h-32,.scale-h-32{height:32rem}.h-32-max,.scale-h-32-max{max-height:32rem}.h-32-min,.scale-h-32-min{min-height:32rem}.h-48,.scale-h-48{height:48rem}.h-48-max,.scale-h-48-max{max-height:48rem}.h-48-min,.scale-h-48-min{min-height:48rem}.h-64,.scale-h-64{height:64rem}.h-64-max,.scale-h-64-max{max-height:64rem}.h-64-min,.scale-h-64-min{min-height:64rem}.h-1-5,.scale-h-1-5{height:20%}.h-1-5-max,.scale-h-1-5-max{max-height:20%}.h-1-5-min,.scale-h-1-5-min{min-height:20%}.h-2-5,.scale-h-2-5{height:40%}.h-2-5-max,.scale-h-2-5-max{max-height:40%}.h-2-5-min,.scale-h-2-5-min{min-height:40%}.h-3-5,.scale-h-3-5{height:60%}.h-3-5-max,.scale-h-3-5-max{max-height:60%}.h-3-5-min,.scale-h-3-5-min{min-height:60%}.h-4-5,.scale-h-4-5{height:80%}.h-4-5-max,.scale-h-4-5-max{max-height:80%}.h-4-5-min,.scale-h-4-5-min{min-height:80%}.h-5-5,.scale-h-5-5{height:100%}.h-5-5-max,.scale-h-5-5-max{max-height:100%}.h-5-5-min,.scale-h-5-5-min{min-height:100%}.h-1-12,.scale-h-1-12{height:8.3333333333%}.h-1-12-max,.scale-h-1-12-max{max-height:8.3333333333%}.h-1-12-min,.scale-h-1-12-min{min-height:8.3333333333%}.h-2-12,.scale-h-2-12{height:16.6666666667%}.h-2-12-max,.scale-h-2-12-max{max-height:16.6666666667%}.h-2-12-min,.scale-h-2-12-min{min-height:16.6666666667%}.h-3-12,.scale-h-3-12{height:25%}.h-3-12-max,.scale-h-3-12-max{max-height:25%}.h-3-12-min,.scale-h-3-12-min{min-height:25%}.h-4-12,.scale-h-4-12{height:33.3333333333%}.h-4-12-max,.scale-h-4-12-max{max-height:33.3333333333%}.h-4-12-min,.scale-h-4-12-min{min-height:33.3333333333%}.h-5-12,.scale-h-5-12{height:41.6666666667%}.h-5-12-max,.scale-h-5-12-max{max-height:41.6666666667%}.h-5-12-min,.scale-h-5-12-min{min-height:41.6666666667%}.h-6-12,.scale-h-6-12{height:50%}.h-6-12-max,.scale-h-6-12-max{max-height:50%}.h-6-12-min,.scale-h-6-12-min{min-height:50%}.h-7-12,.scale-h-7-12{height:58.3333333333%}.h-7-12-max,.scale-h-7-12-max{max-height:58.3333333333%}.h-7-12-min,.scale-h-7-12-min{min-height:58.3333333333%}.h-8-12,.scale-h-8-12{height:66.6666666667%}.h-8-12-max,.scale-h-8-12-max{max-height:66.6666666667%}.h-8-12-min,.scale-h-8-12-min{min-height:66.6666666667%}.h-9-12,.scale-h-9-12{height:75%}.h-9-12-max,.scale-h-9-12-max{max-height:75%}.h-9-12-min,.scale-h-9-12-min{min-height:75%}.h-10-12,.scale-h-10-12{height:83.3333333333%}.h-10-12-max,.scale-h-10-12-max{max-height:83.3333333333%}.h-10-12-min,.scale-h-10-12-min{min-height:83.3333333333%}.h-11-12,.scale-h-11-12{height:91.6666666667%}.h-11-12-max,.scale-h-11-12-max{max-height:91.6666666667%}.h-11-12-min,.scale-h-11-12-min{min-height:91.6666666667%}.h-12-12,.scale-h-12-12{height:100%}.h-12-12-max,.scale-h-12-12-max{max-height:100%}.h-12-12-min,.scale-h-12-12-min{min-height:100%}