@lobergdesign/dot-grid 1.0.0 → 1.0.2

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/dist/grid.css CHANGED
@@ -1,18 +1,3 @@
1
- /*!
2
- * dot-grid v1.0.0
3
- * A modern, flexible 12-column CSS Grid system
4
- *
5
- * Features:
6
- * - Container queries for responsive layouts
7
- * - Fluid/automatic layout utilities
8
- * - Subgrid support
9
- * - CSS custom properties for easy customization
10
- * - Cascade layers for better specificity control
11
- *
12
- * (c) 2024 Jean Loberg
13
- * Released under the MIT License
14
- * https://github.com/lobergdesign/dot-grid
15
- */
16
1
  :root {
17
2
  --grid-columns: 12;
18
3
  --grid-gap: clamp(1rem, 2vw, 2rem);
@@ -21,39 +6,18 @@
21
6
  --grid-bp-lg: 1024px;
22
7
  --grid-bp-xl: 1280px;
23
8
  --grid-bp-xxl: 1536px;
24
- --grid-wrap-max-width: 180rem;
25
- --grid-wrap-width: 90vw;
26
- --grid-gap-none: 0;
27
- --grid-gap-xs: 0.5rem;
28
- --grid-gap-sm: 1rem;
29
- --grid-gap-md: clamp(1rem, 2vw, 2rem);
30
- --grid-gap-lg: 3rem;
31
- --grid-gap-xl: 4rem;
9
+ --grid-w-max-width: 180rem;
10
+ --grid-w-width: 90vw;
32
11
  }
33
12
 
34
- /*!
35
- * dot-grid v1.0.0
36
- * A modern, flexible 12-column CSS Grid system
37
- *
38
- * Features:
39
- * - Container queries for responsive layouts
40
- * - Fluid/automatic layout utilities
41
- * - Subgrid support
42
- * - CSS custom properties for easy customization
43
- * - Cascade layers for better specificity control
44
- *
45
- * (c) 2024 Jean Loberg
46
- * Released under the MIT License
47
- * https://github.com/lobergdesign/dot-grid
48
- */
49
13
  @layer grid.base, grid.utilities, grid.responsive, grid.fluid;
50
14
  @layer grid.base {
51
- .wrap {
52
- width: var(--grid-wrap-width, 90vw);
53
- max-width: var(--grid-wrap-max-width, 180rem);
15
+ .grid-w {
16
+ width: var(--grid-w-width, 90vw);
17
+ max-width: var(--grid-w-max-width, 180rem);
54
18
  margin-inline: auto;
55
19
  }
56
- .row {
20
+ .grid-r {
57
21
  display: grid;
58
22
  grid-template-columns: repeat(var(--grid-columns, 12), 1fr);
59
23
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
@@ -61,145 +25,105 @@
61
25
  container-type: inline-size;
62
26
  container-name: grid;
63
27
  }
64
- .row > * {
28
+ .grid-r > * {
65
29
  grid-column-end: span var(--grid-columns, 12);
66
30
  }
67
- .col {
31
+ .grid-c {
68
32
  grid-column-end: span var(--grid-columns, 12);
69
33
  }
70
- .col-1 {
34
+ .grid-c-1 {
71
35
  grid-column-end: span 1;
72
36
  }
73
- .col-2 {
37
+ .grid-c-2 {
74
38
  grid-column-end: span 2;
75
39
  }
76
- .col-3 {
40
+ .grid-c-3 {
77
41
  grid-column-end: span 3;
78
42
  }
79
- .col-4 {
43
+ .grid-c-4 {
80
44
  grid-column-end: span 4;
81
45
  }
82
- .col-5 {
46
+ .grid-c-5 {
83
47
  grid-column-end: span 5;
84
48
  }
85
- .col-6 {
49
+ .grid-c-6 {
86
50
  grid-column-end: span 6;
87
51
  }
88
- .col-7 {
52
+ .grid-c-7 {
89
53
  grid-column-end: span 7;
90
54
  }
91
- .col-8 {
55
+ .grid-c-8 {
92
56
  grid-column-end: span 8;
93
57
  }
94
- .col-9 {
58
+ .grid-c-9 {
95
59
  grid-column-end: span 9;
96
60
  }
97
- .col-10 {
61
+ .grid-c-10 {
98
62
  grid-column-end: span 10;
99
63
  }
100
- .col-11 {
64
+ .grid-c-11 {
101
65
  grid-column-end: span 11;
102
66
  }
103
- .col-12 {
67
+ .grid-c-12 {
104
68
  grid-column-end: span 12;
105
69
  }
106
- .col-start-1 {
70
+ .grid-c-start-1 {
107
71
  grid-column-start: 1;
108
72
  }
109
- .col-start-2 {
73
+ .grid-c-start-2 {
110
74
  grid-column-start: 2;
111
75
  }
112
- .col-start-3 {
76
+ .grid-c-start-3 {
113
77
  grid-column-start: 3;
114
78
  }
115
- .col-start-4 {
79
+ .grid-c-start-4 {
116
80
  grid-column-start: 4;
117
81
  }
118
- .col-start-5 {
82
+ .grid-c-start-5 {
119
83
  grid-column-start: 5;
120
84
  }
121
- .col-start-6 {
85
+ .grid-c-start-6 {
122
86
  grid-column-start: 6;
123
87
  }
124
- .col-start-7 {
88
+ .grid-c-start-7 {
125
89
  grid-column-start: 7;
126
90
  }
127
- .col-start-8 {
91
+ .grid-c-start-8 {
128
92
  grid-column-start: 8;
129
93
  }
130
- .col-start-9 {
94
+ .grid-c-start-9 {
131
95
  grid-column-start: 9;
132
96
  }
133
- .col-start-10 {
97
+ .grid-c-start-10 {
134
98
  grid-column-start: 10;
135
99
  }
136
- .col-start-11 {
100
+ .grid-c-start-11 {
137
101
  grid-column-start: 11;
138
102
  }
139
- .col-start-12 {
103
+ .grid-c-start-12 {
140
104
  grid-column-start: 12;
141
105
  }
142
- .row-subgrid {
106
+ .grid-r-subgrid {
143
107
  display: grid;
144
108
  grid-template-columns: subgrid;
145
109
  grid-column: 1/-1;
146
110
  }
147
- .row-subgrid:not([style*=gap]) {
111
+ .grid-r-subgrid:not([style*=gap]) {
148
112
  gap: inherit;
149
113
  }
150
- .col-subgrid {
114
+ .grid-c-subgrid {
151
115
  display: grid;
152
116
  grid-template-rows: subgrid;
153
117
  grid-row: 1/-1;
154
118
  }
155
- .row .row {
119
+ .grid-r .grid-r {
156
120
  grid-column: 1/-1;
157
121
  padding-block-end: 0;
158
122
  }
159
123
  }
160
- /*!
161
- * dot-grid v1.0.0
162
- * A modern, flexible 12-column CSS Grid system
163
- *
164
- * Features:
165
- * - Container queries for responsive layouts
166
- * - Fluid/automatic layout utilities
167
- * - Subgrid support
168
- * - CSS custom properties for easy customization
169
- * - Cascade layers for better specificity control
170
- *
171
- * (c) 2024 Jean Loberg
172
- * Released under the MIT License
173
- * https://github.com/lobergdesign/dot-grid
174
- */
175
124
  @layer grid.utilities {
176
- .gap-none,
177
125
  .no-gap {
178
- gap: var(--grid-gap-none, 0) !important;
179
- }
180
- .gap-xs {
181
- gap: var(--grid-gap-xs, 0.5rem) !important;
182
- }
183
- .gap-sm {
184
- gap: var(--grid-gap-sm, 1rem) !important;
185
- }
186
- .gap,
187
- .gap-md {
188
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
189
- }
190
- .gap-lg {
191
- gap: var(--grid-gap-lg, 3rem) !important;
192
- }
193
- .gap-xl {
194
- gap: var(--grid-gap-xl, 4rem) !important;
195
- }
196
- .gap-b-none,
197
- .no-gap-b {
198
- row-gap: 0 !important;
199
- }
200
- .gap-sides-none,
201
- .no-gap-sides {
202
- column-gap: 0 !important;
126
+ gap: 0;
203
127
  }
204
128
  .place-t-l {
205
129
  display: grid;
@@ -273,1028 +197,884 @@
273
197
  display: flex;
274
198
  justify-content: space-evenly;
275
199
  }
276
- .aspect-square {
277
- aspect-ratio: 1/1;
278
- }
279
- .aspect-video {
280
- aspect-ratio: 16/9;
281
- }
282
- .aspect-4-3 {
283
- aspect-ratio: 4/3;
284
- }
285
- .aspect-21-9 {
286
- aspect-ratio: 21/9;
287
- }
288
- .aspect-auto {
289
- aspect-ratio: auto;
290
- }
291
- .col-min {
200
+ .grid-c-min {
292
201
  width: min-content;
293
202
  grid-column: auto;
294
203
  }
295
- .col-max {
204
+ .grid-c-max {
296
205
  width: max-content;
297
206
  grid-column: auto;
298
207
  }
299
- .col-fit {
208
+ .grid-c-fit {
300
209
  width: fit-content;
301
210
  grid-column: auto;
302
211
  }
303
212
  .hidden {
304
- display: none !important;
305
- }
306
- .order-first {
307
- order: -1;
308
- }
309
- .order-last {
310
- order: 999;
311
- }
312
- .order-none {
313
- order: 0;
213
+ display: none;
314
214
  }
315
215
  }
316
- /*!
317
- * dot-grid v1.0.0
318
- * A modern, flexible 12-column CSS Grid system
319
- *
320
- * Features:
321
- * - Container queries for responsive layouts
322
- * - Fluid/automatic layout utilities
323
- * - Subgrid support
324
- * - CSS custom properties for easy customization
325
- * - Cascade layers for better specificity control
326
- *
327
- * (c) 2024 Jean Loberg
328
- * Released under the MIT License
329
- * https://github.com/lobergdesign/dot-grid
330
- */
331
216
  @layer grid.responsive {
332
217
  @container grid (min-width: 640px) {
333
- .col-sm-1 {
218
+ .grid-c-sm-1 {
334
219
  grid-column-end: span 1;
335
220
  }
336
- .col-sm-2 {
221
+ .grid-c-sm-2 {
337
222
  grid-column-end: span 2;
338
223
  }
339
- .col-sm-3 {
224
+ .grid-c-sm-3 {
340
225
  grid-column-end: span 3;
341
226
  }
342
- .col-sm-4 {
227
+ .grid-c-sm-4 {
343
228
  grid-column-end: span 4;
344
229
  }
345
- .col-sm-5 {
230
+ .grid-c-sm-5 {
346
231
  grid-column-end: span 5;
347
232
  }
348
- .col-sm-6 {
233
+ .grid-c-sm-6 {
349
234
  grid-column-end: span 6;
350
235
  }
351
- .col-sm-7 {
236
+ .grid-c-sm-7 {
352
237
  grid-column-end: span 7;
353
238
  }
354
- .col-sm-8 {
239
+ .grid-c-sm-8 {
355
240
  grid-column-end: span 8;
356
241
  }
357
- .col-sm-9 {
242
+ .grid-c-sm-9 {
358
243
  grid-column-end: span 9;
359
244
  }
360
- .col-sm-10 {
245
+ .grid-c-sm-10 {
361
246
  grid-column-end: span 10;
362
247
  }
363
- .col-sm-11 {
248
+ .grid-c-sm-11 {
364
249
  grid-column-end: span 11;
365
250
  }
366
- .col-sm-12 {
251
+ .grid-c-sm-12 {
367
252
  grid-column-end: span 12;
368
253
  }
369
- .col-start-sm-1 {
254
+ .grid-c-start-sm-1 {
370
255
  grid-column-start: 1;
371
256
  }
372
- .col-start-sm-2 {
257
+ .grid-c-start-sm-2 {
373
258
  grid-column-start: 2;
374
259
  }
375
- .col-start-sm-3 {
260
+ .grid-c-start-sm-3 {
376
261
  grid-column-start: 3;
377
262
  }
378
- .col-start-sm-4 {
263
+ .grid-c-start-sm-4 {
379
264
  grid-column-start: 4;
380
265
  }
381
- .col-start-sm-5 {
266
+ .grid-c-start-sm-5 {
382
267
  grid-column-start: 5;
383
268
  }
384
- .col-start-sm-6 {
269
+ .grid-c-start-sm-6 {
385
270
  grid-column-start: 6;
386
271
  }
387
- .col-start-sm-7 {
272
+ .grid-c-start-sm-7 {
388
273
  grid-column-start: 7;
389
274
  }
390
- .col-start-sm-8 {
275
+ .grid-c-start-sm-8 {
391
276
  grid-column-start: 8;
392
277
  }
393
- .col-start-sm-9 {
278
+ .grid-c-start-sm-9 {
394
279
  grid-column-start: 9;
395
280
  }
396
- .col-start-sm-10 {
281
+ .grid-c-start-sm-10 {
397
282
  grid-column-start: 10;
398
283
  }
399
- .col-start-sm-11 {
284
+ .grid-c-start-sm-11 {
400
285
  grid-column-start: 11;
401
286
  }
402
- .col-start-sm-12 {
287
+ .grid-c-start-sm-12 {
403
288
  grid-column-start: 12;
404
289
  }
405
- .gap-sm-none {
406
- gap: 0 !important;
407
- }
408
- .gap-sm-xs {
409
- gap: var(--grid-gap-xs, 0.5rem) !important;
410
- }
411
- .gap-sm-sm {
412
- gap: var(--grid-gap-sm, 1rem) !important;
413
- }
414
- .gap-sm-md {
415
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
416
- }
417
- .gap-sm-lg {
418
- gap: var(--grid-gap-lg, 3rem) !important;
419
- }
420
- .gap-sm-xl {
421
- gap: var(--grid-gap-xl, 4rem) !important;
422
- }
423
290
  .hidden-sm {
424
- display: none !important;
291
+ display: none;
425
292
  }
426
293
  .block-sm {
427
- display: block !important;
294
+ display: block;
428
295
  }
429
296
  .grid-sm {
430
- display: grid !important;
297
+ display: grid;
431
298
  }
432
299
  .flex-sm {
433
- display: flex !important;
300
+ display: flex;
434
301
  }
435
302
  }
436
303
  @container grid (min-width: 768px) {
437
- .col-md-1 {
304
+ .grid-c-md-1 {
438
305
  grid-column-end: span 1;
439
306
  }
440
- .col-md-2 {
307
+ .grid-c-md-2 {
441
308
  grid-column-end: span 2;
442
309
  }
443
- .col-md-3 {
310
+ .grid-c-md-3 {
444
311
  grid-column-end: span 3;
445
312
  }
446
- .col-md-4 {
313
+ .grid-c-md-4 {
447
314
  grid-column-end: span 4;
448
315
  }
449
- .col-md-5 {
316
+ .grid-c-md-5 {
450
317
  grid-column-end: span 5;
451
318
  }
452
- .col-md-6 {
319
+ .grid-c-md-6 {
453
320
  grid-column-end: span 6;
454
321
  }
455
- .col-md-7 {
322
+ .grid-c-md-7 {
456
323
  grid-column-end: span 7;
457
324
  }
458
- .col-md-8 {
325
+ .grid-c-md-8 {
459
326
  grid-column-end: span 8;
460
327
  }
461
- .col-md-9 {
328
+ .grid-c-md-9 {
462
329
  grid-column-end: span 9;
463
330
  }
464
- .col-md-10 {
331
+ .grid-c-md-10 {
465
332
  grid-column-end: span 10;
466
333
  }
467
- .col-md-11 {
334
+ .grid-c-md-11 {
468
335
  grid-column-end: span 11;
469
336
  }
470
- .col-md-12 {
337
+ .grid-c-md-12 {
471
338
  grid-column-end: span 12;
472
339
  }
473
- .col-start-md-1 {
340
+ .grid-c-start-md-1 {
474
341
  grid-column-start: 1;
475
342
  }
476
- .col-start-md-2 {
343
+ .grid-c-start-md-2 {
477
344
  grid-column-start: 2;
478
345
  }
479
- .col-start-md-3 {
346
+ .grid-c-start-md-3 {
480
347
  grid-column-start: 3;
481
348
  }
482
- .col-start-md-4 {
349
+ .grid-c-start-md-4 {
483
350
  grid-column-start: 4;
484
351
  }
485
- .col-start-md-5 {
352
+ .grid-c-start-md-5 {
486
353
  grid-column-start: 5;
487
354
  }
488
- .col-start-md-6 {
355
+ .grid-c-start-md-6 {
489
356
  grid-column-start: 6;
490
357
  }
491
- .col-start-md-7 {
358
+ .grid-c-start-md-7 {
492
359
  grid-column-start: 7;
493
360
  }
494
- .col-start-md-8 {
361
+ .grid-c-start-md-8 {
495
362
  grid-column-start: 8;
496
363
  }
497
- .col-start-md-9 {
364
+ .grid-c-start-md-9 {
498
365
  grid-column-start: 9;
499
366
  }
500
- .col-start-md-10 {
367
+ .grid-c-start-md-10 {
501
368
  grid-column-start: 10;
502
369
  }
503
- .col-start-md-11 {
370
+ .grid-c-start-md-11 {
504
371
  grid-column-start: 11;
505
372
  }
506
- .col-start-md-12 {
373
+ .grid-c-start-md-12 {
507
374
  grid-column-start: 12;
508
375
  }
509
- .gap-md-none {
510
- gap: 0 !important;
511
- }
512
- .gap-md-xs {
513
- gap: var(--grid-gap-xs, 0.5rem) !important;
514
- }
515
- .gap-md-sm {
516
- gap: var(--grid-gap-sm, 1rem) !important;
517
- }
518
- .gap-md-md {
519
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
520
- }
521
- .gap-md-lg {
522
- gap: var(--grid-gap-lg, 3rem) !important;
523
- }
524
- .gap-md-xl {
525
- gap: var(--grid-gap-xl, 4rem) !important;
526
- }
527
376
  .hidden-md {
528
- display: none !important;
377
+ display: none;
529
378
  }
530
379
  .block-md {
531
- display: block !important;
380
+ display: block;
532
381
  }
533
382
  .grid-md {
534
- display: grid !important;
383
+ display: grid;
535
384
  }
536
385
  .flex-md {
537
- display: flex !important;
386
+ display: flex;
538
387
  }
539
388
  }
540
389
  @container grid (min-width: 1024px) {
541
- .col-lg-1 {
390
+ .grid-c-lg-1 {
542
391
  grid-column-end: span 1;
543
392
  }
544
- .col-lg-2 {
393
+ .grid-c-lg-2 {
545
394
  grid-column-end: span 2;
546
395
  }
547
- .col-lg-3 {
396
+ .grid-c-lg-3 {
548
397
  grid-column-end: span 3;
549
398
  }
550
- .col-lg-4 {
399
+ .grid-c-lg-4 {
551
400
  grid-column-end: span 4;
552
401
  }
553
- .col-lg-5 {
402
+ .grid-c-lg-5 {
554
403
  grid-column-end: span 5;
555
404
  }
556
- .col-lg-6 {
405
+ .grid-c-lg-6 {
557
406
  grid-column-end: span 6;
558
407
  }
559
- .col-lg-7 {
408
+ .grid-c-lg-7 {
560
409
  grid-column-end: span 7;
561
410
  }
562
- .col-lg-8 {
411
+ .grid-c-lg-8 {
563
412
  grid-column-end: span 8;
564
413
  }
565
- .col-lg-9 {
414
+ .grid-c-lg-9 {
566
415
  grid-column-end: span 9;
567
416
  }
568
- .col-lg-10 {
417
+ .grid-c-lg-10 {
569
418
  grid-column-end: span 10;
570
419
  }
571
- .col-lg-11 {
420
+ .grid-c-lg-11 {
572
421
  grid-column-end: span 11;
573
422
  }
574
- .col-lg-12 {
423
+ .grid-c-lg-12 {
575
424
  grid-column-end: span 12;
576
425
  }
577
- .col-start-lg-1 {
426
+ .grid-c-start-lg-1 {
578
427
  grid-column-start: 1;
579
428
  }
580
- .col-start-lg-2 {
429
+ .grid-c-start-lg-2 {
581
430
  grid-column-start: 2;
582
431
  }
583
- .col-start-lg-3 {
432
+ .grid-c-start-lg-3 {
584
433
  grid-column-start: 3;
585
434
  }
586
- .col-start-lg-4 {
435
+ .grid-c-start-lg-4 {
587
436
  grid-column-start: 4;
588
437
  }
589
- .col-start-lg-5 {
438
+ .grid-c-start-lg-5 {
590
439
  grid-column-start: 5;
591
440
  }
592
- .col-start-lg-6 {
441
+ .grid-c-start-lg-6 {
593
442
  grid-column-start: 6;
594
443
  }
595
- .col-start-lg-7 {
444
+ .grid-c-start-lg-7 {
596
445
  grid-column-start: 7;
597
446
  }
598
- .col-start-lg-8 {
447
+ .grid-c-start-lg-8 {
599
448
  grid-column-start: 8;
600
449
  }
601
- .col-start-lg-9 {
450
+ .grid-c-start-lg-9 {
602
451
  grid-column-start: 9;
603
452
  }
604
- .col-start-lg-10 {
453
+ .grid-c-start-lg-10 {
605
454
  grid-column-start: 10;
606
455
  }
607
- .col-start-lg-11 {
456
+ .grid-c-start-lg-11 {
608
457
  grid-column-start: 11;
609
458
  }
610
- .col-start-lg-12 {
459
+ .grid-c-start-lg-12 {
611
460
  grid-column-start: 12;
612
461
  }
613
- .gap-lg-none {
614
- gap: 0 !important;
615
- }
616
- .gap-lg-xs {
617
- gap: var(--grid-gap-xs, 0.5rem) !important;
618
- }
619
- .gap-lg-sm {
620
- gap: var(--grid-gap-sm, 1rem) !important;
621
- }
622
- .gap-lg-md {
623
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
624
- }
625
- .gap-lg-lg {
626
- gap: var(--grid-gap-lg, 3rem) !important;
627
- }
628
- .gap-lg-xl {
629
- gap: var(--grid-gap-xl, 4rem) !important;
630
- }
631
462
  .hidden-lg {
632
- display: none !important;
463
+ display: none;
633
464
  }
634
465
  .block-lg {
635
- display: block !important;
466
+ display: block;
636
467
  }
637
468
  .grid-lg {
638
- display: grid !important;
469
+ display: grid;
639
470
  }
640
471
  .flex-lg {
641
- display: flex !important;
472
+ display: flex;
642
473
  }
643
474
  }
644
475
  @container grid (min-width: 1280px) {
645
- .col-xl-1 {
476
+ .grid-c-xl-1 {
646
477
  grid-column-end: span 1;
647
478
  }
648
- .col-xl-2 {
479
+ .grid-c-xl-2 {
649
480
  grid-column-end: span 2;
650
481
  }
651
- .col-xl-3 {
482
+ .grid-c-xl-3 {
652
483
  grid-column-end: span 3;
653
484
  }
654
- .col-xl-4 {
485
+ .grid-c-xl-4 {
655
486
  grid-column-end: span 4;
656
487
  }
657
- .col-xl-5 {
488
+ .grid-c-xl-5 {
658
489
  grid-column-end: span 5;
659
490
  }
660
- .col-xl-6 {
491
+ .grid-c-xl-6 {
661
492
  grid-column-end: span 6;
662
493
  }
663
- .col-xl-7 {
494
+ .grid-c-xl-7 {
664
495
  grid-column-end: span 7;
665
496
  }
666
- .col-xl-8 {
497
+ .grid-c-xl-8 {
667
498
  grid-column-end: span 8;
668
499
  }
669
- .col-xl-9 {
500
+ .grid-c-xl-9 {
670
501
  grid-column-end: span 9;
671
502
  }
672
- .col-xl-10 {
503
+ .grid-c-xl-10 {
673
504
  grid-column-end: span 10;
674
505
  }
675
- .col-xl-11 {
506
+ .grid-c-xl-11 {
676
507
  grid-column-end: span 11;
677
508
  }
678
- .col-xl-12 {
509
+ .grid-c-xl-12 {
679
510
  grid-column-end: span 12;
680
511
  }
681
- .col-start-xl-1 {
512
+ .grid-c-start-xl-1 {
682
513
  grid-column-start: 1;
683
514
  }
684
- .col-start-xl-2 {
515
+ .grid-c-start-xl-2 {
685
516
  grid-column-start: 2;
686
517
  }
687
- .col-start-xl-3 {
518
+ .grid-c-start-xl-3 {
688
519
  grid-column-start: 3;
689
520
  }
690
- .col-start-xl-4 {
521
+ .grid-c-start-xl-4 {
691
522
  grid-column-start: 4;
692
523
  }
693
- .col-start-xl-5 {
524
+ .grid-c-start-xl-5 {
694
525
  grid-column-start: 5;
695
526
  }
696
- .col-start-xl-6 {
527
+ .grid-c-start-xl-6 {
697
528
  grid-column-start: 6;
698
529
  }
699
- .col-start-xl-7 {
530
+ .grid-c-start-xl-7 {
700
531
  grid-column-start: 7;
701
532
  }
702
- .col-start-xl-8 {
533
+ .grid-c-start-xl-8 {
703
534
  grid-column-start: 8;
704
535
  }
705
- .col-start-xl-9 {
536
+ .grid-c-start-xl-9 {
706
537
  grid-column-start: 9;
707
538
  }
708
- .col-start-xl-10 {
539
+ .grid-c-start-xl-10 {
709
540
  grid-column-start: 10;
710
541
  }
711
- .col-start-xl-11 {
542
+ .grid-c-start-xl-11 {
712
543
  grid-column-start: 11;
713
544
  }
714
- .col-start-xl-12 {
545
+ .grid-c-start-xl-12 {
715
546
  grid-column-start: 12;
716
547
  }
717
- .gap-xl-none {
718
- gap: 0 !important;
719
- }
720
- .gap-xl-xs {
721
- gap: var(--grid-gap-xs, 0.5rem) !important;
722
- }
723
- .gap-xl-sm {
724
- gap: var(--grid-gap-sm, 1rem) !important;
725
- }
726
- .gap-xl-md {
727
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
728
- }
729
- .gap-xl-lg {
730
- gap: var(--grid-gap-lg, 3rem) !important;
731
- }
732
- .gap-xl-xl {
733
- gap: var(--grid-gap-xl, 4rem) !important;
734
- }
735
548
  .hidden-xl {
736
- display: none !important;
549
+ display: none;
737
550
  }
738
551
  .block-xl {
739
- display: block !important;
552
+ display: block;
740
553
  }
741
554
  .grid-xl {
742
- display: grid !important;
555
+ display: grid;
743
556
  }
744
557
  .flex-xl {
745
- display: flex !important;
558
+ display: flex;
746
559
  }
747
560
  }
748
561
  @container grid (min-width: 1536px) {
749
- .col-xxl-1 {
562
+ .grid-c-xxl-1 {
750
563
  grid-column-end: span 1;
751
564
  }
752
- .col-xxl-2 {
565
+ .grid-c-xxl-2 {
753
566
  grid-column-end: span 2;
754
567
  }
755
- .col-xxl-3 {
568
+ .grid-c-xxl-3 {
756
569
  grid-column-end: span 3;
757
570
  }
758
- .col-xxl-4 {
571
+ .grid-c-xxl-4 {
759
572
  grid-column-end: span 4;
760
573
  }
761
- .col-xxl-5 {
574
+ .grid-c-xxl-5 {
762
575
  grid-column-end: span 5;
763
576
  }
764
- .col-xxl-6 {
577
+ .grid-c-xxl-6 {
765
578
  grid-column-end: span 6;
766
579
  }
767
- .col-xxl-7 {
580
+ .grid-c-xxl-7 {
768
581
  grid-column-end: span 7;
769
582
  }
770
- .col-xxl-8 {
583
+ .grid-c-xxl-8 {
771
584
  grid-column-end: span 8;
772
585
  }
773
- .col-xxl-9 {
586
+ .grid-c-xxl-9 {
774
587
  grid-column-end: span 9;
775
588
  }
776
- .col-xxl-10 {
589
+ .grid-c-xxl-10 {
777
590
  grid-column-end: span 10;
778
591
  }
779
- .col-xxl-11 {
592
+ .grid-c-xxl-11 {
780
593
  grid-column-end: span 11;
781
594
  }
782
- .col-xxl-12 {
595
+ .grid-c-xxl-12 {
783
596
  grid-column-end: span 12;
784
597
  }
785
- .col-start-xxl-1 {
598
+ .grid-c-start-xxl-1 {
786
599
  grid-column-start: 1;
787
600
  }
788
- .col-start-xxl-2 {
601
+ .grid-c-start-xxl-2 {
789
602
  grid-column-start: 2;
790
603
  }
791
- .col-start-xxl-3 {
604
+ .grid-c-start-xxl-3 {
792
605
  grid-column-start: 3;
793
606
  }
794
- .col-start-xxl-4 {
607
+ .grid-c-start-xxl-4 {
795
608
  grid-column-start: 4;
796
609
  }
797
- .col-start-xxl-5 {
610
+ .grid-c-start-xxl-5 {
798
611
  grid-column-start: 5;
799
612
  }
800
- .col-start-xxl-6 {
613
+ .grid-c-start-xxl-6 {
801
614
  grid-column-start: 6;
802
615
  }
803
- .col-start-xxl-7 {
616
+ .grid-c-start-xxl-7 {
804
617
  grid-column-start: 7;
805
618
  }
806
- .col-start-xxl-8 {
619
+ .grid-c-start-xxl-8 {
807
620
  grid-column-start: 8;
808
621
  }
809
- .col-start-xxl-9 {
622
+ .grid-c-start-xxl-9 {
810
623
  grid-column-start: 9;
811
624
  }
812
- .col-start-xxl-10 {
625
+ .grid-c-start-xxl-10 {
813
626
  grid-column-start: 10;
814
627
  }
815
- .col-start-xxl-11 {
628
+ .grid-c-start-xxl-11 {
816
629
  grid-column-start: 11;
817
630
  }
818
- .col-start-xxl-12 {
631
+ .grid-c-start-xxl-12 {
819
632
  grid-column-start: 12;
820
633
  }
821
- .gap-xxl-none {
822
- gap: 0 !important;
823
- }
824
- .gap-xxl-xs {
825
- gap: var(--grid-gap-xs, 0.5rem) !important;
826
- }
827
- .gap-xxl-sm {
828
- gap: var(--grid-gap-sm, 1rem) !important;
829
- }
830
- .gap-xxl-md {
831
- gap: var(--grid-gap-md, clamp(1rem, 2vw, 2rem)) !important;
832
- }
833
- .gap-xxl-lg {
834
- gap: var(--grid-gap-lg, 3rem) !important;
835
- }
836
- .gap-xxl-xl {
837
- gap: var(--grid-gap-xl, 4rem) !important;
838
- }
839
634
  .hidden-xxl {
840
- display: none !important;
635
+ display: none;
841
636
  }
842
637
  .block-xxl {
843
- display: block !important;
638
+ display: block;
844
639
  }
845
640
  .grid-xxl {
846
- display: grid !important;
641
+ display: grid;
847
642
  }
848
643
  .flex-xxl {
849
- display: flex !important;
644
+ display: flex;
850
645
  }
851
646
  }
852
647
  @media (min-width: 640px) {
853
- .col-vp-sm-1 {
648
+ .grid-c-vp-sm-1 {
854
649
  grid-column-end: span 1;
855
650
  }
856
- .col-vp-sm-2 {
651
+ .grid-c-vp-sm-2 {
857
652
  grid-column-end: span 2;
858
653
  }
859
- .col-vp-sm-3 {
654
+ .grid-c-vp-sm-3 {
860
655
  grid-column-end: span 3;
861
656
  }
862
- .col-vp-sm-4 {
657
+ .grid-c-vp-sm-4 {
863
658
  grid-column-end: span 4;
864
659
  }
865
- .col-vp-sm-5 {
660
+ .grid-c-vp-sm-5 {
866
661
  grid-column-end: span 5;
867
662
  }
868
- .col-vp-sm-6 {
663
+ .grid-c-vp-sm-6 {
869
664
  grid-column-end: span 6;
870
665
  }
871
- .col-vp-sm-7 {
666
+ .grid-c-vp-sm-7 {
872
667
  grid-column-end: span 7;
873
668
  }
874
- .col-vp-sm-8 {
669
+ .grid-c-vp-sm-8 {
875
670
  grid-column-end: span 8;
876
671
  }
877
- .col-vp-sm-9 {
672
+ .grid-c-vp-sm-9 {
878
673
  grid-column-end: span 9;
879
674
  }
880
- .col-vp-sm-10 {
675
+ .grid-c-vp-sm-10 {
881
676
  grid-column-end: span 10;
882
677
  }
883
- .col-vp-sm-11 {
678
+ .grid-c-vp-sm-11 {
884
679
  grid-column-end: span 11;
885
680
  }
886
- .col-vp-sm-12 {
681
+ .grid-c-vp-sm-12 {
887
682
  grid-column-end: span 12;
888
683
  }
889
- .col-start-vp-sm-1 {
684
+ .grid-c-start-vp-sm-1 {
890
685
  grid-column-start: 1;
891
686
  }
892
- .col-start-vp-sm-2 {
687
+ .grid-c-start-vp-sm-2 {
893
688
  grid-column-start: 2;
894
689
  }
895
- .col-start-vp-sm-3 {
690
+ .grid-c-start-vp-sm-3 {
896
691
  grid-column-start: 3;
897
692
  }
898
- .col-start-vp-sm-4 {
693
+ .grid-c-start-vp-sm-4 {
899
694
  grid-column-start: 4;
900
695
  }
901
- .col-start-vp-sm-5 {
696
+ .grid-c-start-vp-sm-5 {
902
697
  grid-column-start: 5;
903
698
  }
904
- .col-start-vp-sm-6 {
699
+ .grid-c-start-vp-sm-6 {
905
700
  grid-column-start: 6;
906
701
  }
907
- .col-start-vp-sm-7 {
702
+ .grid-c-start-vp-sm-7 {
908
703
  grid-column-start: 7;
909
704
  }
910
- .col-start-vp-sm-8 {
705
+ .grid-c-start-vp-sm-8 {
911
706
  grid-column-start: 8;
912
707
  }
913
- .col-start-vp-sm-9 {
708
+ .grid-c-start-vp-sm-9 {
914
709
  grid-column-start: 9;
915
710
  }
916
- .col-start-vp-sm-10 {
711
+ .grid-c-start-vp-sm-10 {
917
712
  grid-column-start: 10;
918
713
  }
919
- .col-start-vp-sm-11 {
714
+ .grid-c-start-vp-sm-11 {
920
715
  grid-column-start: 11;
921
716
  }
922
- .col-start-vp-sm-12 {
717
+ .grid-c-start-vp-sm-12 {
923
718
  grid-column-start: 12;
924
719
  }
925
720
  .hidden-vp-sm {
926
- display: none !important;
721
+ display: none;
927
722
  }
928
723
  .block-vp-sm {
929
- display: block !important;
724
+ display: block;
930
725
  }
931
726
  .grid-vp-sm {
932
- display: grid !important;
727
+ display: grid;
933
728
  }
934
729
  .flex-vp-sm {
935
- display: flex !important;
730
+ display: flex;
936
731
  }
937
732
  }
938
733
  @media (min-width: 768px) {
939
- .col-vp-md-1 {
734
+ .grid-c-vp-md-1 {
940
735
  grid-column-end: span 1;
941
736
  }
942
- .col-vp-md-2 {
737
+ .grid-c-vp-md-2 {
943
738
  grid-column-end: span 2;
944
739
  }
945
- .col-vp-md-3 {
740
+ .grid-c-vp-md-3 {
946
741
  grid-column-end: span 3;
947
742
  }
948
- .col-vp-md-4 {
743
+ .grid-c-vp-md-4 {
949
744
  grid-column-end: span 4;
950
745
  }
951
- .col-vp-md-5 {
746
+ .grid-c-vp-md-5 {
952
747
  grid-column-end: span 5;
953
748
  }
954
- .col-vp-md-6 {
749
+ .grid-c-vp-md-6 {
955
750
  grid-column-end: span 6;
956
751
  }
957
- .col-vp-md-7 {
752
+ .grid-c-vp-md-7 {
958
753
  grid-column-end: span 7;
959
754
  }
960
- .col-vp-md-8 {
755
+ .grid-c-vp-md-8 {
961
756
  grid-column-end: span 8;
962
757
  }
963
- .col-vp-md-9 {
758
+ .grid-c-vp-md-9 {
964
759
  grid-column-end: span 9;
965
760
  }
966
- .col-vp-md-10 {
761
+ .grid-c-vp-md-10 {
967
762
  grid-column-end: span 10;
968
763
  }
969
- .col-vp-md-11 {
764
+ .grid-c-vp-md-11 {
970
765
  grid-column-end: span 11;
971
766
  }
972
- .col-vp-md-12 {
767
+ .grid-c-vp-md-12 {
973
768
  grid-column-end: span 12;
974
769
  }
975
- .col-start-vp-md-1 {
770
+ .grid-c-start-vp-md-1 {
976
771
  grid-column-start: 1;
977
772
  }
978
- .col-start-vp-md-2 {
773
+ .grid-c-start-vp-md-2 {
979
774
  grid-column-start: 2;
980
775
  }
981
- .col-start-vp-md-3 {
776
+ .grid-c-start-vp-md-3 {
982
777
  grid-column-start: 3;
983
778
  }
984
- .col-start-vp-md-4 {
779
+ .grid-c-start-vp-md-4 {
985
780
  grid-column-start: 4;
986
781
  }
987
- .col-start-vp-md-5 {
782
+ .grid-c-start-vp-md-5 {
988
783
  grid-column-start: 5;
989
784
  }
990
- .col-start-vp-md-6 {
785
+ .grid-c-start-vp-md-6 {
991
786
  grid-column-start: 6;
992
787
  }
993
- .col-start-vp-md-7 {
788
+ .grid-c-start-vp-md-7 {
994
789
  grid-column-start: 7;
995
790
  }
996
- .col-start-vp-md-8 {
791
+ .grid-c-start-vp-md-8 {
997
792
  grid-column-start: 8;
998
793
  }
999
- .col-start-vp-md-9 {
794
+ .grid-c-start-vp-md-9 {
1000
795
  grid-column-start: 9;
1001
796
  }
1002
- .col-start-vp-md-10 {
797
+ .grid-c-start-vp-md-10 {
1003
798
  grid-column-start: 10;
1004
799
  }
1005
- .col-start-vp-md-11 {
800
+ .grid-c-start-vp-md-11 {
1006
801
  grid-column-start: 11;
1007
802
  }
1008
- .col-start-vp-md-12 {
803
+ .grid-c-start-vp-md-12 {
1009
804
  grid-column-start: 12;
1010
805
  }
1011
806
  .hidden-vp-md {
1012
- display: none !important;
807
+ display: none;
1013
808
  }
1014
809
  .block-vp-md {
1015
- display: block !important;
810
+ display: block;
1016
811
  }
1017
812
  .grid-vp-md {
1018
- display: grid !important;
813
+ display: grid;
1019
814
  }
1020
815
  .flex-vp-md {
1021
- display: flex !important;
816
+ display: flex;
1022
817
  }
1023
818
  }
1024
819
  @media (min-width: 1024px) {
1025
- .col-vp-lg-1 {
820
+ .grid-c-vp-lg-1 {
1026
821
  grid-column-end: span 1;
1027
822
  }
1028
- .col-vp-lg-2 {
823
+ .grid-c-vp-lg-2 {
1029
824
  grid-column-end: span 2;
1030
825
  }
1031
- .col-vp-lg-3 {
826
+ .grid-c-vp-lg-3 {
1032
827
  grid-column-end: span 3;
1033
828
  }
1034
- .col-vp-lg-4 {
829
+ .grid-c-vp-lg-4 {
1035
830
  grid-column-end: span 4;
1036
831
  }
1037
- .col-vp-lg-5 {
832
+ .grid-c-vp-lg-5 {
1038
833
  grid-column-end: span 5;
1039
834
  }
1040
- .col-vp-lg-6 {
835
+ .grid-c-vp-lg-6 {
1041
836
  grid-column-end: span 6;
1042
837
  }
1043
- .col-vp-lg-7 {
838
+ .grid-c-vp-lg-7 {
1044
839
  grid-column-end: span 7;
1045
840
  }
1046
- .col-vp-lg-8 {
841
+ .grid-c-vp-lg-8 {
1047
842
  grid-column-end: span 8;
1048
843
  }
1049
- .col-vp-lg-9 {
844
+ .grid-c-vp-lg-9 {
1050
845
  grid-column-end: span 9;
1051
846
  }
1052
- .col-vp-lg-10 {
847
+ .grid-c-vp-lg-10 {
1053
848
  grid-column-end: span 10;
1054
849
  }
1055
- .col-vp-lg-11 {
850
+ .grid-c-vp-lg-11 {
1056
851
  grid-column-end: span 11;
1057
852
  }
1058
- .col-vp-lg-12 {
853
+ .grid-c-vp-lg-12 {
1059
854
  grid-column-end: span 12;
1060
855
  }
1061
- .col-start-vp-lg-1 {
856
+ .grid-c-start-vp-lg-1 {
1062
857
  grid-column-start: 1;
1063
858
  }
1064
- .col-start-vp-lg-2 {
859
+ .grid-c-start-vp-lg-2 {
1065
860
  grid-column-start: 2;
1066
861
  }
1067
- .col-start-vp-lg-3 {
862
+ .grid-c-start-vp-lg-3 {
1068
863
  grid-column-start: 3;
1069
864
  }
1070
- .col-start-vp-lg-4 {
865
+ .grid-c-start-vp-lg-4 {
1071
866
  grid-column-start: 4;
1072
867
  }
1073
- .col-start-vp-lg-5 {
868
+ .grid-c-start-vp-lg-5 {
1074
869
  grid-column-start: 5;
1075
870
  }
1076
- .col-start-vp-lg-6 {
871
+ .grid-c-start-vp-lg-6 {
1077
872
  grid-column-start: 6;
1078
873
  }
1079
- .col-start-vp-lg-7 {
874
+ .grid-c-start-vp-lg-7 {
1080
875
  grid-column-start: 7;
1081
876
  }
1082
- .col-start-vp-lg-8 {
877
+ .grid-c-start-vp-lg-8 {
1083
878
  grid-column-start: 8;
1084
879
  }
1085
- .col-start-vp-lg-9 {
880
+ .grid-c-start-vp-lg-9 {
1086
881
  grid-column-start: 9;
1087
882
  }
1088
- .col-start-vp-lg-10 {
883
+ .grid-c-start-vp-lg-10 {
1089
884
  grid-column-start: 10;
1090
885
  }
1091
- .col-start-vp-lg-11 {
886
+ .grid-c-start-vp-lg-11 {
1092
887
  grid-column-start: 11;
1093
888
  }
1094
- .col-start-vp-lg-12 {
889
+ .grid-c-start-vp-lg-12 {
1095
890
  grid-column-start: 12;
1096
891
  }
1097
892
  .hidden-vp-lg {
1098
- display: none !important;
893
+ display: none;
1099
894
  }
1100
895
  .block-vp-lg {
1101
- display: block !important;
896
+ display: block;
1102
897
  }
1103
898
  .grid-vp-lg {
1104
- display: grid !important;
899
+ display: grid;
1105
900
  }
1106
901
  .flex-vp-lg {
1107
- display: flex !important;
902
+ display: flex;
1108
903
  }
1109
904
  }
1110
905
  @media (min-width: 1280px) {
1111
- .col-vp-xl-1 {
906
+ .grid-c-vp-xl-1 {
1112
907
  grid-column-end: span 1;
1113
908
  }
1114
- .col-vp-xl-2 {
909
+ .grid-c-vp-xl-2 {
1115
910
  grid-column-end: span 2;
1116
911
  }
1117
- .col-vp-xl-3 {
912
+ .grid-c-vp-xl-3 {
1118
913
  grid-column-end: span 3;
1119
914
  }
1120
- .col-vp-xl-4 {
915
+ .grid-c-vp-xl-4 {
1121
916
  grid-column-end: span 4;
1122
917
  }
1123
- .col-vp-xl-5 {
918
+ .grid-c-vp-xl-5 {
1124
919
  grid-column-end: span 5;
1125
920
  }
1126
- .col-vp-xl-6 {
921
+ .grid-c-vp-xl-6 {
1127
922
  grid-column-end: span 6;
1128
923
  }
1129
- .col-vp-xl-7 {
924
+ .grid-c-vp-xl-7 {
1130
925
  grid-column-end: span 7;
1131
926
  }
1132
- .col-vp-xl-8 {
927
+ .grid-c-vp-xl-8 {
1133
928
  grid-column-end: span 8;
1134
929
  }
1135
- .col-vp-xl-9 {
930
+ .grid-c-vp-xl-9 {
1136
931
  grid-column-end: span 9;
1137
932
  }
1138
- .col-vp-xl-10 {
933
+ .grid-c-vp-xl-10 {
1139
934
  grid-column-end: span 10;
1140
935
  }
1141
- .col-vp-xl-11 {
936
+ .grid-c-vp-xl-11 {
1142
937
  grid-column-end: span 11;
1143
938
  }
1144
- .col-vp-xl-12 {
939
+ .grid-c-vp-xl-12 {
1145
940
  grid-column-end: span 12;
1146
941
  }
1147
- .col-start-vp-xl-1 {
942
+ .grid-c-start-vp-xl-1 {
1148
943
  grid-column-start: 1;
1149
944
  }
1150
- .col-start-vp-xl-2 {
945
+ .grid-c-start-vp-xl-2 {
1151
946
  grid-column-start: 2;
1152
947
  }
1153
- .col-start-vp-xl-3 {
948
+ .grid-c-start-vp-xl-3 {
1154
949
  grid-column-start: 3;
1155
950
  }
1156
- .col-start-vp-xl-4 {
951
+ .grid-c-start-vp-xl-4 {
1157
952
  grid-column-start: 4;
1158
953
  }
1159
- .col-start-vp-xl-5 {
954
+ .grid-c-start-vp-xl-5 {
1160
955
  grid-column-start: 5;
1161
956
  }
1162
- .col-start-vp-xl-6 {
957
+ .grid-c-start-vp-xl-6 {
1163
958
  grid-column-start: 6;
1164
959
  }
1165
- .col-start-vp-xl-7 {
960
+ .grid-c-start-vp-xl-7 {
1166
961
  grid-column-start: 7;
1167
962
  }
1168
- .col-start-vp-xl-8 {
963
+ .grid-c-start-vp-xl-8 {
1169
964
  grid-column-start: 8;
1170
965
  }
1171
- .col-start-vp-xl-9 {
966
+ .grid-c-start-vp-xl-9 {
1172
967
  grid-column-start: 9;
1173
968
  }
1174
- .col-start-vp-xl-10 {
969
+ .grid-c-start-vp-xl-10 {
1175
970
  grid-column-start: 10;
1176
971
  }
1177
- .col-start-vp-xl-11 {
972
+ .grid-c-start-vp-xl-11 {
1178
973
  grid-column-start: 11;
1179
974
  }
1180
- .col-start-vp-xl-12 {
975
+ .grid-c-start-vp-xl-12 {
1181
976
  grid-column-start: 12;
1182
977
  }
1183
978
  .hidden-vp-xl {
1184
- display: none !important;
979
+ display: none;
1185
980
  }
1186
981
  .block-vp-xl {
1187
- display: block !important;
982
+ display: block;
1188
983
  }
1189
984
  .grid-vp-xl {
1190
- display: grid !important;
985
+ display: grid;
1191
986
  }
1192
987
  .flex-vp-xl {
1193
- display: flex !important;
988
+ display: flex;
1194
989
  }
1195
990
  }
1196
991
  @media (min-width: 1536px) {
1197
- .col-vp-xxl-1 {
992
+ .grid-c-vp-xxl-1 {
1198
993
  grid-column-end: span 1;
1199
994
  }
1200
- .col-vp-xxl-2 {
995
+ .grid-c-vp-xxl-2 {
1201
996
  grid-column-end: span 2;
1202
997
  }
1203
- .col-vp-xxl-3 {
998
+ .grid-c-vp-xxl-3 {
1204
999
  grid-column-end: span 3;
1205
1000
  }
1206
- .col-vp-xxl-4 {
1001
+ .grid-c-vp-xxl-4 {
1207
1002
  grid-column-end: span 4;
1208
1003
  }
1209
- .col-vp-xxl-5 {
1004
+ .grid-c-vp-xxl-5 {
1210
1005
  grid-column-end: span 5;
1211
1006
  }
1212
- .col-vp-xxl-6 {
1007
+ .grid-c-vp-xxl-6 {
1213
1008
  grid-column-end: span 6;
1214
1009
  }
1215
- .col-vp-xxl-7 {
1010
+ .grid-c-vp-xxl-7 {
1216
1011
  grid-column-end: span 7;
1217
1012
  }
1218
- .col-vp-xxl-8 {
1013
+ .grid-c-vp-xxl-8 {
1219
1014
  grid-column-end: span 8;
1220
1015
  }
1221
- .col-vp-xxl-9 {
1016
+ .grid-c-vp-xxl-9 {
1222
1017
  grid-column-end: span 9;
1223
1018
  }
1224
- .col-vp-xxl-10 {
1019
+ .grid-c-vp-xxl-10 {
1225
1020
  grid-column-end: span 10;
1226
1021
  }
1227
- .col-vp-xxl-11 {
1022
+ .grid-c-vp-xxl-11 {
1228
1023
  grid-column-end: span 11;
1229
1024
  }
1230
- .col-vp-xxl-12 {
1025
+ .grid-c-vp-xxl-12 {
1231
1026
  grid-column-end: span 12;
1232
1027
  }
1233
- .col-start-vp-xxl-1 {
1028
+ .grid-c-start-vp-xxl-1 {
1234
1029
  grid-column-start: 1;
1235
1030
  }
1236
- .col-start-vp-xxl-2 {
1031
+ .grid-c-start-vp-xxl-2 {
1237
1032
  grid-column-start: 2;
1238
1033
  }
1239
- .col-start-vp-xxl-3 {
1034
+ .grid-c-start-vp-xxl-3 {
1240
1035
  grid-column-start: 3;
1241
1036
  }
1242
- .col-start-vp-xxl-4 {
1037
+ .grid-c-start-vp-xxl-4 {
1243
1038
  grid-column-start: 4;
1244
1039
  }
1245
- .col-start-vp-xxl-5 {
1040
+ .grid-c-start-vp-xxl-5 {
1246
1041
  grid-column-start: 5;
1247
1042
  }
1248
- .col-start-vp-xxl-6 {
1043
+ .grid-c-start-vp-xxl-6 {
1249
1044
  grid-column-start: 6;
1250
1045
  }
1251
- .col-start-vp-xxl-7 {
1046
+ .grid-c-start-vp-xxl-7 {
1252
1047
  grid-column-start: 7;
1253
1048
  }
1254
- .col-start-vp-xxl-8 {
1049
+ .grid-c-start-vp-xxl-8 {
1255
1050
  grid-column-start: 8;
1256
1051
  }
1257
- .col-start-vp-xxl-9 {
1052
+ .grid-c-start-vp-xxl-9 {
1258
1053
  grid-column-start: 9;
1259
1054
  }
1260
- .col-start-vp-xxl-10 {
1055
+ .grid-c-start-vp-xxl-10 {
1261
1056
  grid-column-start: 10;
1262
1057
  }
1263
- .col-start-vp-xxl-11 {
1058
+ .grid-c-start-vp-xxl-11 {
1264
1059
  grid-column-start: 11;
1265
1060
  }
1266
- .col-start-vp-xxl-12 {
1061
+ .grid-c-start-vp-xxl-12 {
1267
1062
  grid-column-start: 12;
1268
1063
  }
1269
1064
  .hidden-vp-xxl {
1270
- display: none !important;
1065
+ display: none;
1271
1066
  }
1272
1067
  .block-vp-xxl {
1273
- display: block !important;
1068
+ display: block;
1274
1069
  }
1275
1070
  .grid-vp-xxl {
1276
- display: grid !important;
1071
+ display: grid;
1277
1072
  }
1278
1073
  .flex-vp-xxl {
1279
- display: flex !important;
1074
+ display: flex;
1280
1075
  }
1281
1076
  }
1282
1077
  }
1283
- /*!
1284
- * dot-grid v1.0.0
1285
- * A modern, flexible 12-column CSS Grid system
1286
- *
1287
- * Features:
1288
- * - Container queries for responsive layouts
1289
- * - Fluid/automatic layout utilities
1290
- * - Subgrid support
1291
- * - CSS custom properties for easy customization
1292
- * - Cascade layers for better specificity control
1293
- *
1294
- * (c) 2024 Jean Loberg
1295
- * Released under the MIT License
1296
- * https://github.com/lobergdesign/dot-grid
1297
- */
1298
1078
  @layer grid.fluid {
1299
1079
  .grid-auto-fit {
1300
1080
  display: grid;
@@ -1306,52 +1086,52 @@
1306
1086
  grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-auto-min, 250px), 100%), 1fr));
1307
1087
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1308
1088
  }
1309
- .col-auto {
1089
+ .grid-c-auto {
1310
1090
  grid-column: auto;
1311
1091
  width: auto;
1312
1092
  }
1313
- .col-fluid {
1314
- min-width: var(--col-min-width, 200px);
1315
- flex: 1 1 var(--col-min-width, 200px);
1093
+ .grid-c-fluid {
1094
+ min-width: var(--grid-c-min-width, 200px);
1095
+ flex: 1 1 var(--grid-c-min-width, 200px);
1316
1096
  }
1317
- .row-fluid-2 {
1097
+ .grid-r-fluid-2 {
1318
1098
  display: grid;
1319
1099
  grid-template-columns: repeat(auto-fit, minmax(min(50% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) / 2, 100%), 1fr));
1320
1100
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1321
1101
  }
1322
- .row-fluid-3 {
1102
+ .grid-r-fluid-3 {
1323
1103
  display: grid;
1324
1104
  grid-template-columns: repeat(auto-fit, minmax(min(33.333% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) * 2 / 3, 100%), 1fr));
1325
1105
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1326
1106
  }
1327
- .row-fluid-4 {
1107
+ .grid-r-fluid-4 {
1328
1108
  display: grid;
1329
1109
  grid-template-columns: repeat(auto-fit, minmax(min(25% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) * 3 / 4, 100%), 1fr));
1330
1110
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1331
1111
  }
1332
- .row-ram {
1112
+ .grid-r-ram {
1333
1113
  display: grid;
1334
1114
  grid-template-columns: repeat(auto-fit, minmax(var(--col-min, 250px), 1fr));
1335
1115
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1336
1116
  }
1337
- .row-ram > * {
1338
- grid-column: auto !important;
1117
+ .grid-r-ram > * {
1118
+ grid-column: auto;
1339
1119
  }
1340
- .row-intrinsic {
1120
+ .grid-r-intrinsic {
1341
1121
  display: grid;
1342
1122
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
1343
1123
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1344
1124
  }
1345
- .row-even {
1125
+ .grid-r-even {
1346
1126
  display: grid;
1347
1127
  grid-auto-columns: 1fr;
1348
1128
  grid-auto-flow: column;
1349
1129
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
1350
1130
  }
1351
- .row-dense {
1131
+ .grid-r-dense {
1352
1132
  grid-auto-flow: dense;
1353
1133
  }
1354
- .row-flexible {
1134
+ .grid-r-flexible {
1355
1135
  display: grid;
1356
1136
  grid-template-columns: repeat(auto-fit, minmax(clamp(var(--col-min, 200px), (100% - var(--grid-gap, clamp(1rem, 2vw, 2rem)) * (var(--col-count, 3) - 1)) / var(--col-count, 3), 1fr), 1fr));
1357
1137
  gap: var(--grid-gap, clamp(1rem, 2vw, 2rem));
@@ -1360,16 +1140,16 @@
1360
1140
  /*
1361
1141
 
1362
1142
  BASIC GRID:
1363
- <div class="wrap">
1364
- <div class="row">
1365
- <div class="col-12 col-md-6 col-lg-4">Column</div>
1366
- <div class="col-12 col-md-6 col-lg-4">Column</div>
1367
- <div class="col-12 col-md-6 col-lg-4">Column</div>
1143
+ <div class="grid-w">
1144
+ <div class="grid-r">
1145
+ <div class="grid-c-12 grid-c-md-6 grid-c-lg-4">Column</div>
1146
+ <div class="grid-c-12 grid-c-md-6 grid-c-lg-4">Column</div>
1147
+ <div class="grid-c-12 grid-c-md-6 grid-c-lg-4">Column</div>
1368
1148
  </div>
1369
1149
  </div>
1370
1150
 
1371
1151
  FLUID GRID (auto-responsive):
1372
- <div class="wrap">
1152
+ <div class="grid-w">
1373
1153
  <div class="grid-auto-fit">
1374
1154
  <div>Card 1</div>
1375
1155
  <div>Card 2</div>
@@ -1378,23 +1158,23 @@ FLUID GRID (auto-responsive):
1378
1158
  </div>
1379
1159
 
1380
1160
  SUBGRID:
1381
- <div class="row">
1382
- <div class="col-12 row-subgrid">
1383
- <div class="col-4">Nested 1</div>
1384
- <div class="col-4">Nested 2</div>
1385
- <div class="col-4">Nested 3</div>
1161
+ <div class="grid-r">
1162
+ <div class="grid-c-12 grid-r-subgrid">
1163
+ <div class="grid-c-4">Nested 1</div>
1164
+ <div class="grid-c-4">Nested 2</div>
1165
+ <div class="grid-c-4">Nested 3</div>
1386
1166
  </div>
1387
1167
  </div>
1388
1168
 
1389
- CUSTOM GAP:
1390
- <div class="row gap-lg">
1391
- <div class="col-6">Large gap</div>
1392
- <div class="col-6">Large gap</div>
1169
+ NO GAP:
1170
+ <div class="grid-r no-gap">
1171
+ <div class="grid-c-6">No gap</div>
1172
+ <div class="grid-c-6">No gap</div>
1393
1173
  </div>
1394
1174
 
1395
1175
  PLACEMENT:
1396
- <div class="row">
1397
- <div class="col-6 place-c-c">Centered content</div>
1176
+ <div class="grid-r">
1177
+ <div class="grid-c-6 place-c-c">Centered content</div>
1398
1178
  </div>
1399
1179
 
1400
1180
  */