fluxgrid-css 1.0.0
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.
- package/README.md +347 -0
- package/package.json +21 -0
- package/src/assets/fonts/Neco-Variable.woff2 +0 -0
- package/src/css/animation.css +392 -0
- package/src/css/colors.css +329 -0
- package/src/css/display.css +413 -0
- package/src/css/effects.css +726 -0
- package/src/css/forms.css +411 -0
- package/src/css/grid.css +723 -0
- package/src/css/index.css +13 -0
- package/src/css/print.css +106 -0
- package/src/css/reset.css +99 -0
- package/src/css/scroll.css +188 -0
- package/src/css/sizing.css +352 -0
- package/src/css/spacing.css +530 -0
- package/src/css/tokens.css +180 -0
- package/src/css/typography.css +310 -0
- package/src/js/headfoot.js +13 -0
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
.c-block {
|
|
2
|
+
display: block;
|
|
3
|
+
}
|
|
4
|
+
.c-inline-block {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
}
|
|
7
|
+
.c-inline {
|
|
8
|
+
display: inline;
|
|
9
|
+
}
|
|
10
|
+
.c-flex {
|
|
11
|
+
display: flex;
|
|
12
|
+
}
|
|
13
|
+
.c-inline-flex {
|
|
14
|
+
display: inline-flex;
|
|
15
|
+
}
|
|
16
|
+
.c-grid {
|
|
17
|
+
display: grid;
|
|
18
|
+
}
|
|
19
|
+
.c-inline-grid {
|
|
20
|
+
display: inline-grid;
|
|
21
|
+
}
|
|
22
|
+
.c-table {
|
|
23
|
+
display: table;
|
|
24
|
+
}
|
|
25
|
+
.c-table-row {
|
|
26
|
+
display: table-row;
|
|
27
|
+
}
|
|
28
|
+
.c-table-cell {
|
|
29
|
+
display: table-cell;
|
|
30
|
+
}
|
|
31
|
+
.c-contents {
|
|
32
|
+
display: contents;
|
|
33
|
+
}
|
|
34
|
+
.c-hidden {
|
|
35
|
+
display: none;
|
|
36
|
+
}
|
|
37
|
+
.c-sr-only {
|
|
38
|
+
position: absolute;
|
|
39
|
+
width: 1px;
|
|
40
|
+
height: 1px;
|
|
41
|
+
padding: 0;
|
|
42
|
+
margin: -1px;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
clip: rect(0, 0, 0, 0);
|
|
45
|
+
white-space: nowrap;
|
|
46
|
+
border-width: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.c-static {
|
|
50
|
+
position: static;
|
|
51
|
+
}
|
|
52
|
+
.c-relative {
|
|
53
|
+
position: relative;
|
|
54
|
+
}
|
|
55
|
+
.c-absolute {
|
|
56
|
+
position: absolute;
|
|
57
|
+
}
|
|
58
|
+
.c-fixed {
|
|
59
|
+
position: fixed;
|
|
60
|
+
}
|
|
61
|
+
.c-sticky {
|
|
62
|
+
position: sticky;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.c-inset-0 {
|
|
66
|
+
top: 0;
|
|
67
|
+
right: 0;
|
|
68
|
+
bottom: 0;
|
|
69
|
+
left: 0;
|
|
70
|
+
}
|
|
71
|
+
.c-inset-auto {
|
|
72
|
+
top: auto;
|
|
73
|
+
right: auto;
|
|
74
|
+
bottom: auto;
|
|
75
|
+
left: auto;
|
|
76
|
+
}
|
|
77
|
+
.c-inset-x-0 {
|
|
78
|
+
left: 0;
|
|
79
|
+
right: 0;
|
|
80
|
+
}
|
|
81
|
+
.c-inset-y-0 {
|
|
82
|
+
top: 0;
|
|
83
|
+
bottom: 0;
|
|
84
|
+
}
|
|
85
|
+
.c-top-0 {
|
|
86
|
+
top: 0;
|
|
87
|
+
}
|
|
88
|
+
.c-top-auto {
|
|
89
|
+
top: auto;
|
|
90
|
+
}
|
|
91
|
+
.c-top-1-2 {
|
|
92
|
+
top: 50%;
|
|
93
|
+
}
|
|
94
|
+
.c-top-full {
|
|
95
|
+
top: 100%;
|
|
96
|
+
}
|
|
97
|
+
.c-right-0 {
|
|
98
|
+
right: 0;
|
|
99
|
+
}
|
|
100
|
+
.c-right-auto {
|
|
101
|
+
right: auto;
|
|
102
|
+
}
|
|
103
|
+
.c-right-full {
|
|
104
|
+
right: 100%;
|
|
105
|
+
}
|
|
106
|
+
.c-bottom-0 {
|
|
107
|
+
bottom: 0;
|
|
108
|
+
}
|
|
109
|
+
.c-bottom-auto {
|
|
110
|
+
bottom: auto;
|
|
111
|
+
}
|
|
112
|
+
.c-bottom-full {
|
|
113
|
+
bottom: 100%;
|
|
114
|
+
}
|
|
115
|
+
.c-left-0 {
|
|
116
|
+
left: 0;
|
|
117
|
+
}
|
|
118
|
+
.c-left-auto {
|
|
119
|
+
left: auto;
|
|
120
|
+
}
|
|
121
|
+
.c-left-1-2 {
|
|
122
|
+
left: 50%;
|
|
123
|
+
}
|
|
124
|
+
.c-left-full {
|
|
125
|
+
left: 100%;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.c-z-0 {
|
|
129
|
+
z-index: 0;
|
|
130
|
+
}
|
|
131
|
+
.c-z-10 {
|
|
132
|
+
z-index: 10;
|
|
133
|
+
}
|
|
134
|
+
.c-z-20 {
|
|
135
|
+
z-index: 20;
|
|
136
|
+
}
|
|
137
|
+
.c-z-30 {
|
|
138
|
+
z-index: 30;
|
|
139
|
+
}
|
|
140
|
+
.c-z-40 {
|
|
141
|
+
z-index: 40;
|
|
142
|
+
}
|
|
143
|
+
.c-z-50 {
|
|
144
|
+
z-index: 50;
|
|
145
|
+
}
|
|
146
|
+
.c-z-100 {
|
|
147
|
+
z-index: 100;
|
|
148
|
+
}
|
|
149
|
+
.c-z-200 {
|
|
150
|
+
z-index: 200;
|
|
151
|
+
}
|
|
152
|
+
.c-z-500 {
|
|
153
|
+
z-index: 500;
|
|
154
|
+
}
|
|
155
|
+
.c-z-1000 {
|
|
156
|
+
z-index: 1000;
|
|
157
|
+
}
|
|
158
|
+
.c-z-auto {
|
|
159
|
+
z-index: auto;
|
|
160
|
+
}
|
|
161
|
+
.c-z-neg-1 {
|
|
162
|
+
z-index: -1;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.c-overflow-auto {
|
|
166
|
+
overflow: auto;
|
|
167
|
+
}
|
|
168
|
+
.c-overflow-hidden {
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
}
|
|
171
|
+
.c-overflow-visible {
|
|
172
|
+
overflow: visible;
|
|
173
|
+
}
|
|
174
|
+
.c-overflow-scroll {
|
|
175
|
+
overflow: scroll;
|
|
176
|
+
}
|
|
177
|
+
.c-overflow-clip {
|
|
178
|
+
overflow: clip;
|
|
179
|
+
}
|
|
180
|
+
.c-overflow-x-auto {
|
|
181
|
+
overflow-x: auto;
|
|
182
|
+
}
|
|
183
|
+
.c-overflow-x-hidden {
|
|
184
|
+
overflow-x: hidden;
|
|
185
|
+
}
|
|
186
|
+
.c-overflow-x-scroll {
|
|
187
|
+
overflow-x: scroll;
|
|
188
|
+
}
|
|
189
|
+
.c-overflow-y-auto {
|
|
190
|
+
overflow-y: auto;
|
|
191
|
+
}
|
|
192
|
+
.c-overflow-y-hidden {
|
|
193
|
+
overflow-y: hidden;
|
|
194
|
+
}
|
|
195
|
+
.c-overflow-y-scroll {
|
|
196
|
+
overflow-y: scroll;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.c-float-left {
|
|
200
|
+
float: left;
|
|
201
|
+
}
|
|
202
|
+
.c-float-right {
|
|
203
|
+
float: right;
|
|
204
|
+
}
|
|
205
|
+
.c-float-none {
|
|
206
|
+
float: none;
|
|
207
|
+
}
|
|
208
|
+
.c-clear-left {
|
|
209
|
+
clear: left;
|
|
210
|
+
}
|
|
211
|
+
.c-clear-right {
|
|
212
|
+
clear: right;
|
|
213
|
+
}
|
|
214
|
+
.c-clear-both {
|
|
215
|
+
clear: both;
|
|
216
|
+
}
|
|
217
|
+
.c-clear-none {
|
|
218
|
+
clear: none;
|
|
219
|
+
}
|
|
220
|
+
.c-clearfix::after {
|
|
221
|
+
content: "";
|
|
222
|
+
display: table;
|
|
223
|
+
clear: both;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.c-visible {
|
|
227
|
+
visibility: visible;
|
|
228
|
+
}
|
|
229
|
+
.c-invisible {
|
|
230
|
+
visibility: hidden;
|
|
231
|
+
}
|
|
232
|
+
.c-collapse {
|
|
233
|
+
visibility: collapse;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.c-pointer-events-none {
|
|
237
|
+
pointer-events: none;
|
|
238
|
+
}
|
|
239
|
+
.c-pointer-events-auto {
|
|
240
|
+
pointer-events: auto;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.c-resize-none {
|
|
244
|
+
resize: none;
|
|
245
|
+
}
|
|
246
|
+
.c-resize {
|
|
247
|
+
resize: both;
|
|
248
|
+
}
|
|
249
|
+
.c-resize-x {
|
|
250
|
+
resize: horizontal;
|
|
251
|
+
}
|
|
252
|
+
.c-resize-y {
|
|
253
|
+
resize: vertical;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.c-appearance-none {
|
|
257
|
+
appearance: none;
|
|
258
|
+
-webkit-appearance: none;
|
|
259
|
+
}
|
|
260
|
+
.c-outline-none {
|
|
261
|
+
outline: none;
|
|
262
|
+
}
|
|
263
|
+
.c-outline {
|
|
264
|
+
outline: 2px solid currentColor;
|
|
265
|
+
}
|
|
266
|
+
.c-outline-1 {
|
|
267
|
+
outline-width: 1px;
|
|
268
|
+
}
|
|
269
|
+
.c-outline-2 {
|
|
270
|
+
outline-width: 2px;
|
|
271
|
+
}
|
|
272
|
+
.c-outline-offset-0 {
|
|
273
|
+
outline-offset: 0px;
|
|
274
|
+
}
|
|
275
|
+
.c-outline-offset-2 {
|
|
276
|
+
outline-offset: 2px;
|
|
277
|
+
}
|
|
278
|
+
.c-outline-offset-4 {
|
|
279
|
+
outline-offset: 4px;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.c-aspect-auto {
|
|
283
|
+
aspect-ratio: auto;
|
|
284
|
+
}
|
|
285
|
+
.c-aspect-square {
|
|
286
|
+
aspect-ratio: 1 / 1;
|
|
287
|
+
}
|
|
288
|
+
.c-aspect-video {
|
|
289
|
+
aspect-ratio: 16 / 9;
|
|
290
|
+
}
|
|
291
|
+
.c-aspect-4-3 {
|
|
292
|
+
aspect-ratio: 4 / 3;
|
|
293
|
+
}
|
|
294
|
+
.c-aspect-3-2 {
|
|
295
|
+
aspect-ratio: 3 / 2;
|
|
296
|
+
}
|
|
297
|
+
.c-aspect-21-9 {
|
|
298
|
+
aspect-ratio: 21 / 9;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.c-object-contain {
|
|
302
|
+
object-fit: contain;
|
|
303
|
+
}
|
|
304
|
+
.c-object-cover {
|
|
305
|
+
object-fit: cover;
|
|
306
|
+
}
|
|
307
|
+
.c-object-fill {
|
|
308
|
+
object-fit: fill;
|
|
309
|
+
}
|
|
310
|
+
.c-object-none {
|
|
311
|
+
object-fit: none;
|
|
312
|
+
}
|
|
313
|
+
.c-object-scale {
|
|
314
|
+
object-fit: scale-down;
|
|
315
|
+
}
|
|
316
|
+
.c-object-center {
|
|
317
|
+
object-position: center;
|
|
318
|
+
}
|
|
319
|
+
.c-object-top {
|
|
320
|
+
object-position: top;
|
|
321
|
+
}
|
|
322
|
+
.c-object-bottom {
|
|
323
|
+
object-position: bottom;
|
|
324
|
+
}
|
|
325
|
+
.c-object-left {
|
|
326
|
+
object-position: left;
|
|
327
|
+
}
|
|
328
|
+
.c-object-right {
|
|
329
|
+
object-position: right;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.c-isolate {
|
|
333
|
+
isolation: isolate;
|
|
334
|
+
}
|
|
335
|
+
.c-isolation-auto {
|
|
336
|
+
isolation: auto;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.c-mix-normal {
|
|
340
|
+
mix-blend-mode: normal;
|
|
341
|
+
}
|
|
342
|
+
.c-mix-multiply {
|
|
343
|
+
mix-blend-mode: multiply;
|
|
344
|
+
}
|
|
345
|
+
.c-mix-screen {
|
|
346
|
+
mix-blend-mode: screen;
|
|
347
|
+
}
|
|
348
|
+
.c-mix-overlay {
|
|
349
|
+
mix-blend-mode: overlay;
|
|
350
|
+
}
|
|
351
|
+
.c-mix-darken {
|
|
352
|
+
mix-blend-mode: darken;
|
|
353
|
+
}
|
|
354
|
+
.c-mix-lighten {
|
|
355
|
+
mix-blend-mode: lighten;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
@media (min-width: 768px) {
|
|
359
|
+
.c-md-block {
|
|
360
|
+
display: block;
|
|
361
|
+
}
|
|
362
|
+
.c-md-hidden {
|
|
363
|
+
display: none;
|
|
364
|
+
}
|
|
365
|
+
.c-md-flex {
|
|
366
|
+
display: flex;
|
|
367
|
+
}
|
|
368
|
+
.c-md-grid {
|
|
369
|
+
display: grid;
|
|
370
|
+
}
|
|
371
|
+
.c-md-inline {
|
|
372
|
+
display: inline;
|
|
373
|
+
}
|
|
374
|
+
.c-md-inline-flex {
|
|
375
|
+
display: inline-flex;
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
@media (min-width: 1024px) {
|
|
380
|
+
.c-lg-block {
|
|
381
|
+
display: block;
|
|
382
|
+
}
|
|
383
|
+
.c-lg-hidden {
|
|
384
|
+
display: none;
|
|
385
|
+
}
|
|
386
|
+
.c-lg-flex {
|
|
387
|
+
display: flex;
|
|
388
|
+
}
|
|
389
|
+
.c-lg-grid {
|
|
390
|
+
display: grid;
|
|
391
|
+
}
|
|
392
|
+
.c-lg-inline {
|
|
393
|
+
display: inline;
|
|
394
|
+
}
|
|
395
|
+
.c-lg-inline-flex {
|
|
396
|
+
display: inline-flex;
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
@media (min-width: 1280px) {
|
|
401
|
+
.c-xl-block {
|
|
402
|
+
display: block;
|
|
403
|
+
}
|
|
404
|
+
.c-xl-hidden {
|
|
405
|
+
display: none;
|
|
406
|
+
}
|
|
407
|
+
.c-xl-flex {
|
|
408
|
+
display: flex;
|
|
409
|
+
}
|
|
410
|
+
.c-xl-grid {
|
|
411
|
+
display: grid;
|
|
412
|
+
}
|
|
413
|
+
}
|