@tale-ui/core 1.1.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.
@@ -0,0 +1,1852 @@
1
+ .grid--1 {
2
+ display: grid !important;
3
+ grid-template-columns: repeat(1, minmax(0, 1fr));
4
+ inline-size: 100%;
5
+ }
6
+ .grid--1 > * {
7
+ grid-column: 1 !important;
8
+ }
9
+ .grid--2 {
10
+ display: grid !important;
11
+ grid-template-columns: repeat(2, minmax(0, 1fr));
12
+ inline-size: 100%;
13
+ }
14
+ .grid--3 {
15
+ display: grid !important;
16
+ grid-template-columns: repeat(3, minmax(0, 1fr));
17
+ inline-size: 100%;
18
+ }
19
+ .grid--4 {
20
+ display: grid !important;
21
+ grid-template-columns: repeat(4, minmax(0, 1fr));
22
+ inline-size: 100%;
23
+ }
24
+ .grid--5 {
25
+ display: grid !important;
26
+ grid-template-columns: repeat(5, minmax(0, 1fr));
27
+ inline-size: 100%;
28
+ }
29
+ .grid--6 {
30
+ display: grid !important;
31
+ grid-template-columns: repeat(6, minmax(0, 1fr));
32
+ inline-size: 100%;
33
+ }
34
+ .grid--7 {
35
+ display: grid !important;
36
+ grid-template-columns: repeat(7, minmax(0, 1fr));
37
+ inline-size: 100%;
38
+ }
39
+ .grid--8 {
40
+ display: grid !important;
41
+ grid-template-columns: repeat(8, minmax(0, 1fr));
42
+ inline-size: 100%;
43
+ }
44
+ .grid--9 {
45
+ display: grid !important;
46
+ grid-template-columns: repeat(9, minmax(0, 1fr));
47
+ inline-size: 100%;
48
+ }
49
+ .grid--10 {
50
+ display: grid !important;
51
+ grid-template-columns: repeat(10, minmax(0, 1fr));
52
+ inline-size: 100%;
53
+ }
54
+ .grid--11 {
55
+ display: grid !important;
56
+ grid-template-columns: repeat(11, minmax(0, 1fr));
57
+ inline-size: 100%;
58
+ }
59
+ .grid--12 {
60
+ display: grid !important;
61
+ grid-template-columns: repeat(12, minmax(0, 1fr));
62
+ inline-size: 100%;
63
+ }
64
+ .grid--1-2 {
65
+ display: grid !important;
66
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
67
+ inline-size: 100%;
68
+ }
69
+ .grid--1-3 {
70
+ display: grid !important;
71
+ grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
72
+ inline-size: 100%;
73
+ }
74
+ .grid--2-1 {
75
+ display: grid !important;
76
+ grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
77
+ inline-size: 100%;
78
+ }
79
+ .grid--2-3 {
80
+ display: grid !important;
81
+ grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
82
+ inline-size: 100%;
83
+ }
84
+ .grid--3-1 {
85
+ display: grid !important;
86
+ grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
87
+ inline-size: 100%;
88
+ }
89
+ .grid--3-2 {
90
+ display: grid !important;
91
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
92
+ inline-size: 100%;
93
+ }
94
+ .grid-rows--1 {
95
+ grid-template-rows: repeat(1, minmax(0, 1fr));
96
+ }
97
+ .grid-rows--2 {
98
+ grid-template-rows: repeat(2, minmax(0, 1fr));
99
+ }
100
+ .grid-rows--3 {
101
+ grid-template-rows: repeat(3, minmax(0, 1fr));
102
+ }
103
+ .grid-rows--4 {
104
+ grid-template-rows: repeat(4, minmax(0, 1fr));
105
+ }
106
+ .grid-rows--5 {
107
+ grid-template-rows: repeat(5, minmax(0, 1fr));
108
+ }
109
+ .grid-rows--6 {
110
+ grid-template-rows: repeat(6, minmax(0, 1fr));
111
+ }
112
+ .grid-rows--7 {
113
+ grid-template-rows: repeat(7, minmax(0, 1fr));
114
+ }
115
+ .grid-rows--8 {
116
+ grid-template-rows: repeat(8, minmax(0, 1fr));
117
+ }
118
+ .grid-rows--9 {
119
+ grid-template-rows: repeat(9, minmax(0, 1fr));
120
+ }
121
+ .grid-rows--10 {
122
+ grid-template-rows: repeat(10, minmax(0, 1fr));
123
+ }
124
+ .grid-rows--11 {
125
+ grid-template-rows: repeat(11, minmax(0, 1fr));
126
+ }
127
+ .grid-rows--12 {
128
+ grid-template-rows: repeat(12, minmax(0, 1fr));
129
+ }
130
+ .row-span--1 {
131
+ grid-row-end: span 1;
132
+ }
133
+ .col-span--1 {
134
+ grid-column-end: span 1;
135
+ }
136
+ .row-start--1 {
137
+ grid-row-start: 1;
138
+ }
139
+ .row-end--1 {
140
+ grid-row-end: 1;
141
+ }
142
+ .col-start--1 {
143
+ grid-column-start: 1;
144
+ }
145
+ .col-end--1 {
146
+ grid-column-end: 1;
147
+ }
148
+ .row-span--2 {
149
+ grid-row-end: span 2;
150
+ }
151
+ .col-span--2 {
152
+ grid-column-end: span 2;
153
+ }
154
+ .row-start--2 {
155
+ grid-row-start: 2;
156
+ }
157
+ .row-end--2 {
158
+ grid-row-end: 2;
159
+ }
160
+ .col-start--2 {
161
+ grid-column-start: 2;
162
+ }
163
+ .col-end--2 {
164
+ grid-column-end: 2;
165
+ }
166
+ .row-span--3 {
167
+ grid-row-end: span 3;
168
+ }
169
+ .col-span--3 {
170
+ grid-column-end: span 3;
171
+ }
172
+ .row-start--3 {
173
+ grid-row-start: 3;
174
+ }
175
+ .row-end--3 {
176
+ grid-row-end: 3;
177
+ }
178
+ .col-start--3 {
179
+ grid-column-start: 3;
180
+ }
181
+ .col-end--3 {
182
+ grid-column-end: 3;
183
+ }
184
+ .row-span--4 {
185
+ grid-row-end: span 4;
186
+ }
187
+ .col-span--4 {
188
+ grid-column-end: span 4;
189
+ }
190
+ .row-start--4 {
191
+ grid-row-start: 4;
192
+ }
193
+ .row-end--4 {
194
+ grid-row-end: 4;
195
+ }
196
+ .col-start--4 {
197
+ grid-column-start: 4;
198
+ }
199
+ .col-end--4 {
200
+ grid-column-end: 4;
201
+ }
202
+ .row-span--5 {
203
+ grid-row-end: span 5;
204
+ }
205
+ .col-span--5 {
206
+ grid-column-end: span 5;
207
+ }
208
+ .row-start--5 {
209
+ grid-row-start: 5;
210
+ }
211
+ .row-end--5 {
212
+ grid-row-end: 5;
213
+ }
214
+ .col-start--5 {
215
+ grid-column-start: 5;
216
+ }
217
+ .col-end--5 {
218
+ grid-column-end: 5;
219
+ }
220
+ .row-span--6 {
221
+ grid-row-end: span 6;
222
+ }
223
+ .col-span--6 {
224
+ grid-column-end: span 6;
225
+ }
226
+ .row-start--6 {
227
+ grid-row-start: 6;
228
+ }
229
+ .row-end--6 {
230
+ grid-row-end: 6;
231
+ }
232
+ .col-start--6 {
233
+ grid-column-start: 6;
234
+ }
235
+ .col-end--6 {
236
+ grid-column-end: 6;
237
+ }
238
+ .row-span--7 {
239
+ grid-row-end: span 7;
240
+ }
241
+ .col-span--7 {
242
+ grid-column-end: span 7;
243
+ }
244
+ .row-start--7 {
245
+ grid-row-start: 7;
246
+ }
247
+ .row-end--7 {
248
+ grid-row-end: 7;
249
+ }
250
+ .col-start--7 {
251
+ grid-column-start: 7;
252
+ }
253
+ .col-end--7 {
254
+ grid-column-end: 7;
255
+ }
256
+ .row-span--8 {
257
+ grid-row-end: span 8;
258
+ }
259
+ .col-span--8 {
260
+ grid-column-end: span 8;
261
+ }
262
+ .row-start--8 {
263
+ grid-row-start: 8;
264
+ }
265
+ .row-end--8 {
266
+ grid-row-end: 8;
267
+ }
268
+ .col-start--8 {
269
+ grid-column-start: 8;
270
+ }
271
+ .col-end--8 {
272
+ grid-column-end: 8;
273
+ }
274
+ .row-span--9 {
275
+ grid-row-end: span 9;
276
+ }
277
+ .col-span--9 {
278
+ grid-column-end: span 9;
279
+ }
280
+ .row-start--9 {
281
+ grid-row-start: 9;
282
+ }
283
+ .row-end--9 {
284
+ grid-row-end: 9;
285
+ }
286
+ .col-start--9 {
287
+ grid-column-start: 9;
288
+ }
289
+ .col-end--9 {
290
+ grid-column-end: 9;
291
+ }
292
+ .row-span--10 {
293
+ grid-row-end: span 10;
294
+ }
295
+ .col-span--10 {
296
+ grid-column-end: span 10;
297
+ }
298
+ .row-start--10 {
299
+ grid-row-start: 10;
300
+ }
301
+ .row-end--10 {
302
+ grid-row-end: 10;
303
+ }
304
+ .col-start--10 {
305
+ grid-column-start: 10;
306
+ }
307
+ .col-end--10 {
308
+ grid-column-end: 10;
309
+ }
310
+ .row-span--11 {
311
+ grid-row-end: span 11;
312
+ }
313
+ .col-span--11 {
314
+ grid-column-end: span 11;
315
+ }
316
+ .row-start--11 {
317
+ grid-row-start: 11;
318
+ }
319
+ .row-end--11 {
320
+ grid-row-end: 11;
321
+ }
322
+ .col-start--11 {
323
+ grid-column-start: 11;
324
+ }
325
+ .col-end--11 {
326
+ grid-column-end: 11;
327
+ }
328
+ .row-span--12 {
329
+ grid-row-end: span 12;
330
+ }
331
+ .col-span--12 {
332
+ grid-column-end: span 12;
333
+ }
334
+ .row-start--12 {
335
+ grid-row-start: 12;
336
+ }
337
+ .row-end--12 {
338
+ grid-row-end: 12;
339
+ }
340
+ .col-start--12 {
341
+ grid-column-start: 12;
342
+ }
343
+ .col-end--12 {
344
+ grid-column-end: 12;
345
+ }
346
+ .col-span--all {
347
+ grid-column: 1 / -1;
348
+ }
349
+ .order--first {
350
+ order: -1;
351
+ }
352
+ .order--last {
353
+ order: 999;
354
+ }
355
+ .col-end--last {
356
+ grid-column-end: -1;
357
+ }
358
+ .grid--auto-rows.grid--auto-rows {
359
+ grid-auto-rows: minmax(min-content, 1fr);
360
+ }
361
+ [class*="grid--auto"]:where(:not([class*="rows"])) {
362
+ display: grid !important;
363
+ gap: var(--grid-gap);
364
+ --min: calc((var(--max-screen-width) - ((var(--column-count) - 1) * var(--grid-gap))) / var(--column-count)) * 0.7;
365
+ --column-count: 1;
366
+ --min-formula: min(100%, max(var(--min), (100% - (var(--column-count) - 1) * var(--grid-gap)) / var(--column-count)));
367
+ --grid-template-columns: repeat(auto-fit, minmax(var(--min-formula), 1fr));
368
+ grid-template-columns: var(--grid-template-columns);
369
+ }
370
+ [class*="grid--auto"]:where(:not([class*="rows"])) > * {
371
+ min-width: 0;
372
+ max-width: 100%;
373
+ overflow-wrap: break-word;
374
+ }
375
+ :is(.grid--auto-2, .grid--auto-3, .grid--auto-4, .grid--auto-5, .grid--auto-6, .grid--auto-7, .grid--auto-8, .grid--auto-9, .grid--auto-10, .grid--auto-11, .grid--auto-12):where(.grid--auto-rows) {
376
+ display: grid !important;
377
+ gap: var(--grid-gap);
378
+ --min: calc((var(--max-screen-width) - ((var(--column-count) - 1) * var(--grid-gap))) / var(--column-count)) * 0.7;
379
+ --column-count: 1;
380
+ --min-formula: min(100%, max(var(--min), (100% - (var(--column-count) - 1) * var(--grid-gap)) / var(--column-count)));
381
+ --grid-template-columns: repeat(auto-fit, minmax(var(--min-formula), 1fr));
382
+ grid-template-columns: var(--grid-template-columns);
383
+ }
384
+ :is(.grid--auto-2, .grid--auto-3, .grid--auto-4, .grid--auto-5, .grid--auto-6, .grid--auto-7, .grid--auto-8, .grid--auto-9, .grid--auto-10, .grid--auto-11, .grid--auto-12):where(.grid--auto-rows) > * {
385
+ min-width: 0;
386
+ max-width: 100%;
387
+ overflow-wrap: break-word;
388
+ }
389
+ .grid--auto-2 {
390
+ --column-count: 2;
391
+ }
392
+ .grid--auto-3 {
393
+ --column-count: 3;
394
+ }
395
+ .grid--auto-4 {
396
+ --column-count: 4;
397
+ }
398
+ .grid--auto-5 {
399
+ --column-count: 5;
400
+ }
401
+ .grid--auto-6 {
402
+ --column-count: 6;
403
+ }
404
+ .grid--auto-7 {
405
+ --column-count: 7;
406
+ }
407
+ .grid--auto-8 {
408
+ --column-count: 8;
409
+ }
410
+ .grid--auto-9 {
411
+ --column-count: 9;
412
+ }
413
+ .grid--auto-10 {
414
+ --column-count: 10;
415
+ }
416
+ .grid--auto-11 {
417
+ --column-count: 11;
418
+ }
419
+ .grid--auto-12 {
420
+ --column-count: 12;
421
+ }
422
+ .grid--auto-1-2 {
423
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
424
+ }
425
+ .grid--auto-1-3 {
426
+ grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
427
+ }
428
+ .grid--auto-2-1 {
429
+ grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
430
+ }
431
+ .grid--auto-2-3 {
432
+ grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
433
+ }
434
+ .grid--auto-3-1 {
435
+ grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
436
+ }
437
+ .grid--auto-3-2 {
438
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
439
+ }
440
+
441
+ @media (max-width: 1600px) {
442
+ .grid--xl-1 {
443
+ grid-template-columns: repeat(1, minmax(0, 1fr));
444
+ }
445
+ .grid--xl-1 > * {
446
+ grid-column: 1 !important;
447
+ }
448
+ .grid--xl-2 {
449
+ grid-template-columns: repeat(2, minmax(0, 1fr));
450
+ }
451
+ .grid--xl-3 {
452
+ grid-template-columns: repeat(3, minmax(0, 1fr));
453
+ }
454
+ .grid--xl-4 {
455
+ grid-template-columns: repeat(4, minmax(0, 1fr));
456
+ }
457
+ .grid--xl-5 {
458
+ grid-template-columns: repeat(5, minmax(0, 1fr));
459
+ }
460
+ .grid--xl-6 {
461
+ grid-template-columns: repeat(6, minmax(0, 1fr));
462
+ }
463
+ .grid--xl-7 {
464
+ grid-template-columns: repeat(7, minmax(0, 1fr));
465
+ }
466
+ .grid--xl-8 {
467
+ grid-template-columns: repeat(8, minmax(0, 1fr));
468
+ }
469
+ .grid--xl-9 {
470
+ grid-template-columns: repeat(9, minmax(0, 1fr));
471
+ }
472
+ .grid--xl-10 {
473
+ grid-template-columns: repeat(10, minmax(0, 1fr));
474
+ }
475
+ .grid--xl-11 {
476
+ grid-template-columns: repeat(11, minmax(0, 1fr));
477
+ }
478
+ .grid--xl-12 {
479
+ grid-template-columns: repeat(12, minmax(0, 1fr));
480
+ }
481
+ .grid-rows--xl-1 {
482
+ grid-template-rows: repeat(1, minmax(0, 1fr));
483
+ }
484
+ .grid-rows--xl-2 {
485
+ grid-template-rows: repeat(2, minmax(0, 1fr));
486
+ }
487
+ .grid-rows--xl-3 {
488
+ grid-template-rows: repeat(3, minmax(0, 1fr));
489
+ }
490
+ .grid-rows--xl-4 {
491
+ grid-template-rows: repeat(4, minmax(0, 1fr));
492
+ }
493
+ .grid-rows--xl-5 {
494
+ grid-template-rows: repeat(5, minmax(0, 1fr));
495
+ }
496
+ .grid-rows--xl-6 {
497
+ grid-template-rows: repeat(6, minmax(0, 1fr));
498
+ }
499
+ .grid-rows--xl-7 {
500
+ grid-template-rows: repeat(7, minmax(0, 1fr));
501
+ }
502
+ .grid-rows--xl-8 {
503
+ grid-template-rows: repeat(8, minmax(0, 1fr));
504
+ }
505
+ .grid-rows--xl-9 {
506
+ grid-template-rows: repeat(9, minmax(0, 1fr));
507
+ }
508
+ .grid-rows--xl-10 {
509
+ grid-template-rows: repeat(10, minmax(0, 1fr));
510
+ }
511
+ .grid-rows--xl-11 {
512
+ grid-template-rows: repeat(11, minmax(0, 1fr));
513
+ }
514
+ .grid-rows--xl-12 {
515
+ grid-template-rows: repeat(12, minmax(0, 1fr));
516
+ }
517
+ .row-span--xl-1 {
518
+ grid-row: span 1;
519
+ }
520
+ .col-span--xl-1 {
521
+ grid-column: span 1;
522
+ }
523
+ .row-start--xl-1 {
524
+ grid-row-start: 1;
525
+ }
526
+ .row-end--xl-1 {
527
+ grid-row-end: 1;
528
+ }
529
+ .col-start--xl-1 {
530
+ grid-column-start: 1;
531
+ }
532
+ .col-end--xl-1 {
533
+ grid-column-end: 1;
534
+ }
535
+ .row-span--xl-2 {
536
+ grid-row: span 2;
537
+ }
538
+ .col-span--xl-2 {
539
+ grid-column: span 2;
540
+ }
541
+ .row-start--xl-2 {
542
+ grid-row-start: 2;
543
+ }
544
+ .row-end--xl-2 {
545
+ grid-row-end: 2;
546
+ }
547
+ .col-start--xl-2 {
548
+ grid-column-start: 2;
549
+ }
550
+ .col-end--xl-2 {
551
+ grid-column-end: 2;
552
+ }
553
+ .row-span--xl-3 {
554
+ grid-row: span 3;
555
+ }
556
+ .col-span--xl-3 {
557
+ grid-column: span 3;
558
+ }
559
+ .row-start--xl-3 {
560
+ grid-row-start: 3;
561
+ }
562
+ .row-end--xl-3 {
563
+ grid-row-end: 3;
564
+ }
565
+ .col-start--xl-3 {
566
+ grid-column-start: 3;
567
+ }
568
+ .col-end--xl-3 {
569
+ grid-column-end: 3;
570
+ }
571
+ .row-span--xl-4 {
572
+ grid-row: span 4;
573
+ }
574
+ .col-span--xl-4 {
575
+ grid-column: span 4;
576
+ }
577
+ .row-start--xl-4 {
578
+ grid-row-start: 4;
579
+ }
580
+ .row-end--xl-4 {
581
+ grid-row-end: 4;
582
+ }
583
+ .col-start--xl-4 {
584
+ grid-column-start: 4;
585
+ }
586
+ .col-end--xl-4 {
587
+ grid-column-end: 4;
588
+ }
589
+ .row-span--xl-5 {
590
+ grid-row: span 5;
591
+ }
592
+ .col-span--xl-5 {
593
+ grid-column: span 5;
594
+ }
595
+ .row-start--xl-5 {
596
+ grid-row-start: 5;
597
+ }
598
+ .row-end--xl-5 {
599
+ grid-row-end: 5;
600
+ }
601
+ .col-start--xl-5 {
602
+ grid-column-start: 5;
603
+ }
604
+ .col-end--xl-5 {
605
+ grid-column-end: 5;
606
+ }
607
+ .row-span--xl-6 {
608
+ grid-row: span 6;
609
+ }
610
+ .col-span--xl-6 {
611
+ grid-column: span 6;
612
+ }
613
+ .row-start--xl-6 {
614
+ grid-row-start: 6;
615
+ }
616
+ .row-end--xl-6 {
617
+ grid-row-end: 6;
618
+ }
619
+ .col-start--xl-6 {
620
+ grid-column-start: 6;
621
+ }
622
+ .col-end--xl-6 {
623
+ grid-column-end: 6;
624
+ }
625
+ .row-span--xl-7 {
626
+ grid-row: span 7;
627
+ }
628
+ .col-span--xl-7 {
629
+ grid-column: span 7;
630
+ }
631
+ .row-start--xl-7 {
632
+ grid-row-start: 7;
633
+ }
634
+ .row-end--xl-7 {
635
+ grid-row-end: 7;
636
+ }
637
+ .col-start--xl-7 {
638
+ grid-column-start: 7;
639
+ }
640
+ .col-end--xl-7 {
641
+ grid-column-end: 7;
642
+ }
643
+ .row-span--xl-8 {
644
+ grid-row: span 8;
645
+ }
646
+ .col-span--xl-8 {
647
+ grid-column: span 8;
648
+ }
649
+ .row-start--xl-8 {
650
+ grid-row-start: 8;
651
+ }
652
+ .row-end--xl-8 {
653
+ grid-row-end: 8;
654
+ }
655
+ .col-start--xl-8 {
656
+ grid-column-start: 8;
657
+ }
658
+ .col-end--xl-8 {
659
+ grid-column-end: 8;
660
+ }
661
+ .row-span--xl-9 {
662
+ grid-row: span 9;
663
+ }
664
+ .col-span--xl-9 {
665
+ grid-column: span 9;
666
+ }
667
+ .row-start--xl-9 {
668
+ grid-row-start: 9;
669
+ }
670
+ .row-end--xl-9 {
671
+ grid-row-end: 9;
672
+ }
673
+ .col-start--xl-9 {
674
+ grid-column-start: 9;
675
+ }
676
+ .col-end--xl-9 {
677
+ grid-column-end: 9;
678
+ }
679
+ .row-span--xl-10 {
680
+ grid-row: span 10;
681
+ }
682
+ .col-span--xl-10 {
683
+ grid-column: span 10;
684
+ }
685
+ .row-start--xl-10 {
686
+ grid-row-start: 10;
687
+ }
688
+ .row-end--xl-10 {
689
+ grid-row-end: 10;
690
+ }
691
+ .col-start--xl-10 {
692
+ grid-column-start: 10;
693
+ }
694
+ .col-end--xl-10 {
695
+ grid-column-end: 10;
696
+ }
697
+ .row-span--xl-11 {
698
+ grid-row: span 11;
699
+ }
700
+ .col-span--xl-11 {
701
+ grid-column: span 11;
702
+ }
703
+ .row-start--xl-11 {
704
+ grid-row-start: 11;
705
+ }
706
+ .row-end--xl-11 {
707
+ grid-row-end: 11;
708
+ }
709
+ .col-start--xl-11 {
710
+ grid-column-start: 11;
711
+ }
712
+ .col-end--xl-11 {
713
+ grid-column-end: 11;
714
+ }
715
+ .row-span--xl-12 {
716
+ grid-row: span 12;
717
+ }
718
+ .col-span--xl-12 {
719
+ grid-column: span 12;
720
+ }
721
+ .row-start--xl-12 {
722
+ grid-row-start: 12;
723
+ }
724
+ .row-end--xl-12 {
725
+ grid-row-end: 12;
726
+ }
727
+ .col-start--xl-12 {
728
+ grid-column-start: 12;
729
+ }
730
+ .col-end--xl-12 {
731
+ grid-column-end: 12;
732
+ }
733
+ .col-span--xl-all {
734
+ grid-column: 1 / -1;
735
+ }
736
+ .order--first-xl {
737
+ order: -1;
738
+ }
739
+ .order--last-xl {
740
+ order: 999;
741
+ }
742
+ .col-end--xl-last {
743
+ grid-column-end: -1;
744
+ }
745
+ }
746
+
747
+ @media (max-width: 992px) {
748
+ .grid--l-1 {
749
+ grid-template-columns: repeat(1, minmax(0, 1fr));
750
+ }
751
+ .grid--l-1 > * {
752
+ grid-column: 1 !important;
753
+ }
754
+ .grid--l-2 {
755
+ grid-template-columns: repeat(2, minmax(0, 1fr));
756
+ }
757
+ .grid--l-3 {
758
+ grid-template-columns: repeat(3, minmax(0, 1fr));
759
+ }
760
+ .grid--l-4 {
761
+ grid-template-columns: repeat(4, minmax(0, 1fr));
762
+ }
763
+ .grid--l-5 {
764
+ grid-template-columns: repeat(5, minmax(0, 1fr));
765
+ }
766
+ .grid--l-6 {
767
+ grid-template-columns: repeat(6, minmax(0, 1fr));
768
+ }
769
+ .grid--l-7 {
770
+ grid-template-columns: repeat(7, minmax(0, 1fr));
771
+ }
772
+ .grid--l-8 {
773
+ grid-template-columns: repeat(8, minmax(0, 1fr));
774
+ }
775
+ .grid--l-9 {
776
+ grid-template-columns: repeat(9, minmax(0, 1fr));
777
+ }
778
+ .grid--l-10 {
779
+ grid-template-columns: repeat(10, minmax(0, 1fr));
780
+ }
781
+ .grid--l-11 {
782
+ grid-template-columns: repeat(11, minmax(0, 1fr));
783
+ }
784
+ .grid--l-12 {
785
+ grid-template-columns: repeat(12, minmax(0, 1fr));
786
+ }
787
+ .grid-rows--l-1 {
788
+ grid-template-rows: repeat(1, minmax(0, 1fr));
789
+ }
790
+ .grid-rows--l-2 {
791
+ grid-template-rows: repeat(2, minmax(0, 1fr));
792
+ }
793
+ .grid-rows--l-3 {
794
+ grid-template-rows: repeat(3, minmax(0, 1fr));
795
+ }
796
+ .grid-rows--l-4 {
797
+ grid-template-rows: repeat(4, minmax(0, 1fr));
798
+ }
799
+ .grid-rows--l-5 {
800
+ grid-template-rows: repeat(5, minmax(0, 1fr));
801
+ }
802
+ .grid-rows--l-6 {
803
+ grid-template-rows: repeat(6, minmax(0, 1fr));
804
+ }
805
+ .grid-rows--l-7 {
806
+ grid-template-rows: repeat(7, minmax(0, 1fr));
807
+ }
808
+ .grid-rows--l-8 {
809
+ grid-template-rows: repeat(8, minmax(0, 1fr));
810
+ }
811
+ .grid-rows--l-9 {
812
+ grid-template-rows: repeat(9, minmax(0, 1fr));
813
+ }
814
+ .grid-rows--l-10 {
815
+ grid-template-rows: repeat(10, minmax(0, 1fr));
816
+ }
817
+ .grid-rows--l-11 {
818
+ grid-template-rows: repeat(11, minmax(0, 1fr));
819
+ }
820
+ .grid-rows--l-12 {
821
+ grid-template-rows: repeat(12, minmax(0, 1fr));
822
+ }
823
+ .row-span--l-1 {
824
+ grid-row: span 1;
825
+ }
826
+ .col-span--l-1 {
827
+ grid-column: span 1;
828
+ }
829
+ .row-start--l-1 {
830
+ grid-row-start: 1;
831
+ }
832
+ .row-end--l-1 {
833
+ grid-row-end: 1;
834
+ }
835
+ .col-start--l-1 {
836
+ grid-column-start: 1;
837
+ }
838
+ .col-end--l-1 {
839
+ grid-column-end: 1;
840
+ }
841
+ .row-span--l-2 {
842
+ grid-row: span 2;
843
+ }
844
+ .col-span--l-2 {
845
+ grid-column: span 2;
846
+ }
847
+ .row-start--l-2 {
848
+ grid-row-start: 2;
849
+ }
850
+ .row-end--l-2 {
851
+ grid-row-end: 2;
852
+ }
853
+ .col-start--l-2 {
854
+ grid-column-start: 2;
855
+ }
856
+ .col-end--l-2 {
857
+ grid-column-end: 2;
858
+ }
859
+ .row-span--l-3 {
860
+ grid-row: span 3;
861
+ }
862
+ .col-span--l-3 {
863
+ grid-column: span 3;
864
+ }
865
+ .row-start--l-3 {
866
+ grid-row-start: 3;
867
+ }
868
+ .row-end--l-3 {
869
+ grid-row-end: 3;
870
+ }
871
+ .col-start--l-3 {
872
+ grid-column-start: 3;
873
+ }
874
+ .col-end--l-3 {
875
+ grid-column-end: 3;
876
+ }
877
+ .row-span--l-4 {
878
+ grid-row: span 4;
879
+ }
880
+ .col-span--l-4 {
881
+ grid-column: span 4;
882
+ }
883
+ .row-start--l-4 {
884
+ grid-row-start: 4;
885
+ }
886
+ .row-end--l-4 {
887
+ grid-row-end: 4;
888
+ }
889
+ .col-start--l-4 {
890
+ grid-column-start: 4;
891
+ }
892
+ .col-end--l-4 {
893
+ grid-column-end: 4;
894
+ }
895
+ .row-span--l-5 {
896
+ grid-row: span 5;
897
+ }
898
+ .col-span--l-5 {
899
+ grid-column: span 5;
900
+ }
901
+ .row-start--l-5 {
902
+ grid-row-start: 5;
903
+ }
904
+ .row-end--l-5 {
905
+ grid-row-end: 5;
906
+ }
907
+ .col-start--l-5 {
908
+ grid-column-start: 5;
909
+ }
910
+ .col-end--l-5 {
911
+ grid-column-end: 5;
912
+ }
913
+ .row-span--l-6 {
914
+ grid-row: span 6;
915
+ }
916
+ .col-span--l-6 {
917
+ grid-column: span 6;
918
+ }
919
+ .row-start--l-6 {
920
+ grid-row-start: 6;
921
+ }
922
+ .row-end--l-6 {
923
+ grid-row-end: 6;
924
+ }
925
+ .col-start--l-6 {
926
+ grid-column-start: 6;
927
+ }
928
+ .col-end--l-6 {
929
+ grid-column-end: 6;
930
+ }
931
+ .row-span--l-7 {
932
+ grid-row: span 7;
933
+ }
934
+ .col-span--l-7 {
935
+ grid-column: span 7;
936
+ }
937
+ .row-start--l-7 {
938
+ grid-row-start: 7;
939
+ }
940
+ .row-end--l-7 {
941
+ grid-row-end: 7;
942
+ }
943
+ .col-start--l-7 {
944
+ grid-column-start: 7;
945
+ }
946
+ .col-end--l-7 {
947
+ grid-column-end: 7;
948
+ }
949
+ .row-span--l-8 {
950
+ grid-row: span 8;
951
+ }
952
+ .col-span--l-8 {
953
+ grid-column: span 8;
954
+ }
955
+ .row-start--l-8 {
956
+ grid-row-start: 8;
957
+ }
958
+ .row-end--l-8 {
959
+ grid-row-end: 8;
960
+ }
961
+ .col-start--l-8 {
962
+ grid-column-start: 8;
963
+ }
964
+ .col-end--l-8 {
965
+ grid-column-end: 8;
966
+ }
967
+ .row-span--l-9 {
968
+ grid-row: span 9;
969
+ }
970
+ .col-span--l-9 {
971
+ grid-column: span 9;
972
+ }
973
+ .row-start--l-9 {
974
+ grid-row-start: 9;
975
+ }
976
+ .row-end--l-9 {
977
+ grid-row-end: 9;
978
+ }
979
+ .col-start--l-9 {
980
+ grid-column-start: 9;
981
+ }
982
+ .col-end--l-9 {
983
+ grid-column-end: 9;
984
+ }
985
+ .row-span--l-10 {
986
+ grid-row: span 10;
987
+ }
988
+ .col-span--l-10 {
989
+ grid-column: span 10;
990
+ }
991
+ .row-start--l-10 {
992
+ grid-row-start: 10;
993
+ }
994
+ .row-end--l-10 {
995
+ grid-row-end: 10;
996
+ }
997
+ .col-start--l-10 {
998
+ grid-column-start: 10;
999
+ }
1000
+ .col-end--l-10 {
1001
+ grid-column-end: 10;
1002
+ }
1003
+ .row-span--l-11 {
1004
+ grid-row: span 11;
1005
+ }
1006
+ .col-span--l-11 {
1007
+ grid-column: span 11;
1008
+ }
1009
+ .row-start--l-11 {
1010
+ grid-row-start: 11;
1011
+ }
1012
+ .row-end--l-11 {
1013
+ grid-row-end: 11;
1014
+ }
1015
+ .col-start--l-11 {
1016
+ grid-column-start: 11;
1017
+ }
1018
+ .col-end--l-11 {
1019
+ grid-column-end: 11;
1020
+ }
1021
+ .row-span--l-12 {
1022
+ grid-row: span 12;
1023
+ }
1024
+ .col-span--l-12 {
1025
+ grid-column: span 12;
1026
+ }
1027
+ .row-start--l-12 {
1028
+ grid-row-start: 12;
1029
+ }
1030
+ .row-end--l-12 {
1031
+ grid-row-end: 12;
1032
+ }
1033
+ .col-start--l-12 {
1034
+ grid-column-start: 12;
1035
+ }
1036
+ .col-end--l-12 {
1037
+ grid-column-end: 12;
1038
+ }
1039
+ .col-span--l-all {
1040
+ grid-column: 1 / -1;
1041
+ }
1042
+ .order--first-l {
1043
+ order: -1;
1044
+ }
1045
+ .order--last-l {
1046
+ order: 999;
1047
+ }
1048
+ .col-end--l-last {
1049
+ grid-column-end: -1;
1050
+ }
1051
+ .grid--auto-1-2 {
1052
+ grid-template-columns: var(--grid-template-columns);
1053
+ --column-count: 1;
1054
+ }
1055
+ .grid--auto-1-3 {
1056
+ grid-template-columns: var(--grid-template-columns);
1057
+ --column-count: 1;
1058
+ }
1059
+ .grid--auto-2-1 {
1060
+ grid-template-columns: var(--grid-template-columns);
1061
+ --column-count: 1;
1062
+ }
1063
+ .grid--auto-2-3 {
1064
+ grid-template-columns: var(--grid-template-columns);
1065
+ --column-count: 1;
1066
+ }
1067
+ .grid--auto-3-1 {
1068
+ grid-template-columns: var(--grid-template-columns);
1069
+ --column-count: 1;
1070
+ }
1071
+ .grid--auto-3-2 {
1072
+ grid-template-columns: var(--grid-template-columns);
1073
+ --column-count: 1;
1074
+ }
1075
+ }
1076
+
1077
+ @media (max-width: 768px) {
1078
+ .grid--m-1 {
1079
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1080
+ }
1081
+ .grid--m-1 > * {
1082
+ grid-column: 1 !important;
1083
+ }
1084
+ .grid--m-2 {
1085
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1086
+ }
1087
+ .grid--m-3 {
1088
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1089
+ }
1090
+ .grid--m-4 {
1091
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1092
+ }
1093
+ .grid--m-5 {
1094
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1095
+ }
1096
+ .grid--m-6 {
1097
+ grid-template-columns: repeat(6, minmax(0, 1fr));
1098
+ }
1099
+ .grid--m-7 {
1100
+ grid-template-columns: repeat(7, minmax(0, 1fr));
1101
+ }
1102
+ .grid--m-8 {
1103
+ grid-template-columns: repeat(8, minmax(0, 1fr));
1104
+ }
1105
+ .grid--m-9 {
1106
+ grid-template-columns: repeat(9, minmax(0, 1fr));
1107
+ }
1108
+ .grid--m-10 {
1109
+ grid-template-columns: repeat(10, minmax(0, 1fr));
1110
+ }
1111
+ .grid--m-11 {
1112
+ grid-template-columns: repeat(11, minmax(0, 1fr));
1113
+ }
1114
+ .grid--m-12 {
1115
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1116
+ }
1117
+ .grid-rows--m-1 {
1118
+ grid-template-rows: repeat(1, minmax(0, 1fr));
1119
+ }
1120
+ .grid-rows--m-2 {
1121
+ grid-template-rows: repeat(2, minmax(0, 1fr));
1122
+ }
1123
+ .grid-rows--m-3 {
1124
+ grid-template-rows: repeat(3, minmax(0, 1fr));
1125
+ }
1126
+ .grid-rows--m-4 {
1127
+ grid-template-rows: repeat(4, minmax(0, 1fr));
1128
+ }
1129
+ .grid-rows--m-5 {
1130
+ grid-template-rows: repeat(5, minmax(0, 1fr));
1131
+ }
1132
+ .grid-rows--m-6 {
1133
+ grid-template-rows: repeat(6, minmax(0, 1fr));
1134
+ }
1135
+ .grid-rows--m-7 {
1136
+ grid-template-rows: repeat(7, minmax(0, 1fr));
1137
+ }
1138
+ .grid-rows--m-8 {
1139
+ grid-template-rows: repeat(8, minmax(0, 1fr));
1140
+ }
1141
+ .grid-rows--m-9 {
1142
+ grid-template-rows: repeat(9, minmax(0, 1fr));
1143
+ }
1144
+ .grid-rows--m-10 {
1145
+ grid-template-rows: repeat(10, minmax(0, 1fr));
1146
+ }
1147
+ .grid-rows--m-11 {
1148
+ grid-template-rows: repeat(11, minmax(0, 1fr));
1149
+ }
1150
+ .grid-rows--m-12 {
1151
+ grid-template-rows: repeat(12, minmax(0, 1fr));
1152
+ }
1153
+ .row-span--m-1 {
1154
+ grid-row: span 1;
1155
+ }
1156
+ .col-span--m-1 {
1157
+ grid-column: span 1;
1158
+ }
1159
+ .row-start--m-1 {
1160
+ grid-row-start: 1;
1161
+ }
1162
+ .row-end--m-1 {
1163
+ grid-row-end: 1;
1164
+ }
1165
+ .col-start--m-1 {
1166
+ grid-column-start: 1;
1167
+ }
1168
+ .col-end--m-1 {
1169
+ grid-column-end: 1;
1170
+ }
1171
+ .row-span--m-2 {
1172
+ grid-row: span 2;
1173
+ }
1174
+ .col-span--m-2 {
1175
+ grid-column: span 2;
1176
+ }
1177
+ .row-start--m-2 {
1178
+ grid-row-start: 2;
1179
+ }
1180
+ .row-end--m-2 {
1181
+ grid-row-end: 2;
1182
+ }
1183
+ .col-start--m-2 {
1184
+ grid-column-start: 2;
1185
+ }
1186
+ .col-end--m-2 {
1187
+ grid-column-end: 2;
1188
+ }
1189
+ .row-span--m-3 {
1190
+ grid-row: span 3;
1191
+ }
1192
+ .col-span--m-3 {
1193
+ grid-column: span 3;
1194
+ }
1195
+ .row-start--m-3 {
1196
+ grid-row-start: 3;
1197
+ }
1198
+ .row-end--m-3 {
1199
+ grid-row-end: 3;
1200
+ }
1201
+ .col-start--m-3 {
1202
+ grid-column-start: 3;
1203
+ }
1204
+ .col-end--m-3 {
1205
+ grid-column-end: 3;
1206
+ }
1207
+ .row-span--m-4 {
1208
+ grid-row: span 4;
1209
+ }
1210
+ .col-span--m-4 {
1211
+ grid-column: span 4;
1212
+ }
1213
+ .row-start--m-4 {
1214
+ grid-row-start: 4;
1215
+ }
1216
+ .row-end--m-4 {
1217
+ grid-row-end: 4;
1218
+ }
1219
+ .col-start--m-4 {
1220
+ grid-column-start: 4;
1221
+ }
1222
+ .col-end--m-4 {
1223
+ grid-column-end: 4;
1224
+ }
1225
+ .row-span--m-5 {
1226
+ grid-row: span 5;
1227
+ }
1228
+ .col-span--m-5 {
1229
+ grid-column: span 5;
1230
+ }
1231
+ .row-start--m-5 {
1232
+ grid-row-start: 5;
1233
+ }
1234
+ .row-end--m-5 {
1235
+ grid-row-end: 5;
1236
+ }
1237
+ .col-start--m-5 {
1238
+ grid-column-start: 5;
1239
+ }
1240
+ .col-end--m-5 {
1241
+ grid-column-end: 5;
1242
+ }
1243
+ .row-span--m-6 {
1244
+ grid-row: span 6;
1245
+ }
1246
+ .col-span--m-6 {
1247
+ grid-column: span 6;
1248
+ }
1249
+ .row-start--m-6 {
1250
+ grid-row-start: 6;
1251
+ }
1252
+ .row-end--m-6 {
1253
+ grid-row-end: 6;
1254
+ }
1255
+ .col-start--m-6 {
1256
+ grid-column-start: 6;
1257
+ }
1258
+ .col-end--m-6 {
1259
+ grid-column-end: 6;
1260
+ }
1261
+ .row-span--m-7 {
1262
+ grid-row: span 7;
1263
+ }
1264
+ .col-span--m-7 {
1265
+ grid-column: span 7;
1266
+ }
1267
+ .row-start--m-7 {
1268
+ grid-row-start: 7;
1269
+ }
1270
+ .row-end--m-7 {
1271
+ grid-row-end: 7;
1272
+ }
1273
+ .col-start--m-7 {
1274
+ grid-column-start: 7;
1275
+ }
1276
+ .col-end--m-7 {
1277
+ grid-column-end: 7;
1278
+ }
1279
+ .row-span--m-8 {
1280
+ grid-row: span 8;
1281
+ }
1282
+ .col-span--m-8 {
1283
+ grid-column: span 8;
1284
+ }
1285
+ .row-start--m-8 {
1286
+ grid-row-start: 8;
1287
+ }
1288
+ .row-end--m-8 {
1289
+ grid-row-end: 8;
1290
+ }
1291
+ .col-start--m-8 {
1292
+ grid-column-start: 8;
1293
+ }
1294
+ .col-end--m-8 {
1295
+ grid-column-end: 8;
1296
+ }
1297
+ .row-span--m-9 {
1298
+ grid-row: span 9;
1299
+ }
1300
+ .col-span--m-9 {
1301
+ grid-column: span 9;
1302
+ }
1303
+ .row-start--m-9 {
1304
+ grid-row-start: 9;
1305
+ }
1306
+ .row-end--m-9 {
1307
+ grid-row-end: 9;
1308
+ }
1309
+ .col-start--m-9 {
1310
+ grid-column-start: 9;
1311
+ }
1312
+ .col-end--m-9 {
1313
+ grid-column-end: 9;
1314
+ }
1315
+ .row-span--m-10 {
1316
+ grid-row: span 10;
1317
+ }
1318
+ .col-span--m-10 {
1319
+ grid-column: span 10;
1320
+ }
1321
+ .row-start--m-10 {
1322
+ grid-row-start: 10;
1323
+ }
1324
+ .row-end--m-10 {
1325
+ grid-row-end: 10;
1326
+ }
1327
+ .col-start--m-10 {
1328
+ grid-column-start: 10;
1329
+ }
1330
+ .col-end--m-10 {
1331
+ grid-column-end: 10;
1332
+ }
1333
+ .row-span--m-11 {
1334
+ grid-row: span 11;
1335
+ }
1336
+ .col-span--m-11 {
1337
+ grid-column: span 11;
1338
+ }
1339
+ .row-start--m-11 {
1340
+ grid-row-start: 11;
1341
+ }
1342
+ .row-end--m-11 {
1343
+ grid-row-end: 11;
1344
+ }
1345
+ .col-start--m-11 {
1346
+ grid-column-start: 11;
1347
+ }
1348
+ .col-end--m-11 {
1349
+ grid-column-end: 11;
1350
+ }
1351
+ .row-span--m-12 {
1352
+ grid-row: span 12;
1353
+ }
1354
+ .col-span--m-12 {
1355
+ grid-column: span 12;
1356
+ }
1357
+ .row-start--m-12 {
1358
+ grid-row-start: 12;
1359
+ }
1360
+ .row-end--m-12 {
1361
+ grid-row-end: 12;
1362
+ }
1363
+ .col-start--m-12 {
1364
+ grid-column-start: 12;
1365
+ }
1366
+ .col-end--m-12 {
1367
+ grid-column-end: 12;
1368
+ }
1369
+ .col-span--m-all {
1370
+ grid-column: 1 / -1;
1371
+ }
1372
+ .order--first-m {
1373
+ order: -1;
1374
+ }
1375
+ .order--last-m {
1376
+ order: 999;
1377
+ }
1378
+ .col-end--m-last {
1379
+ grid-column-end: -1;
1380
+ }
1381
+ }
1382
+
1383
+ @media (max-width: 480px) {
1384
+ .grid--s-1 {
1385
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1386
+ }
1387
+ .grid--s-1 > * {
1388
+ grid-column: 1 !important;
1389
+ }
1390
+ .grid--s-2 {
1391
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1392
+ }
1393
+ .grid--s-3 {
1394
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1395
+ }
1396
+ .grid--s-4 {
1397
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1398
+ }
1399
+ .grid--s-5 {
1400
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1401
+ }
1402
+ .grid--s-6 {
1403
+ grid-template-columns: repeat(6, minmax(0, 1fr));
1404
+ }
1405
+ .grid--s-7 {
1406
+ grid-template-columns: repeat(7, minmax(0, 1fr));
1407
+ }
1408
+ .grid--s-8 {
1409
+ grid-template-columns: repeat(8, minmax(0, 1fr));
1410
+ }
1411
+ .grid--s-9 {
1412
+ grid-template-columns: repeat(9, minmax(0, 1fr));
1413
+ }
1414
+ .grid--s-10 {
1415
+ grid-template-columns: repeat(10, minmax(0, 1fr));
1416
+ }
1417
+ .grid--s-11 {
1418
+ grid-template-columns: repeat(11, minmax(0, 1fr));
1419
+ }
1420
+ .grid--s-12 {
1421
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1422
+ }
1423
+ .grid-rows--s-1 {
1424
+ grid-template-rows: repeat(1, minmax(0, 1fr));
1425
+ }
1426
+ .grid-rows--s-2 {
1427
+ grid-template-rows: repeat(2, minmax(0, 1fr));
1428
+ }
1429
+ .grid-rows--s-3 {
1430
+ grid-template-rows: repeat(3, minmax(0, 1fr));
1431
+ }
1432
+ .grid-rows--s-4 {
1433
+ grid-template-rows: repeat(4, minmax(0, 1fr));
1434
+ }
1435
+ .grid-rows--s-5 {
1436
+ grid-template-rows: repeat(5, minmax(0, 1fr));
1437
+ }
1438
+ .grid-rows--s-6 {
1439
+ grid-template-rows: repeat(6, minmax(0, 1fr));
1440
+ }
1441
+ .grid-rows--s-7 {
1442
+ grid-template-rows: repeat(7, minmax(0, 1fr));
1443
+ }
1444
+ .grid-rows--s-8 {
1445
+ grid-template-rows: repeat(8, minmax(0, 1fr));
1446
+ }
1447
+ .grid-rows--s-9 {
1448
+ grid-template-rows: repeat(9, minmax(0, 1fr));
1449
+ }
1450
+ .grid-rows--s-10 {
1451
+ grid-template-rows: repeat(10, minmax(0, 1fr));
1452
+ }
1453
+ .grid-rows--s-11 {
1454
+ grid-template-rows: repeat(11, minmax(0, 1fr));
1455
+ }
1456
+ .grid-rows--s-12 {
1457
+ grid-template-rows: repeat(12, minmax(0, 1fr));
1458
+ }
1459
+ .row-span--s-1 {
1460
+ grid-row: span 1;
1461
+ }
1462
+ .col-span--s-1 {
1463
+ grid-column: span 1;
1464
+ }
1465
+ .row-start--s-1 {
1466
+ grid-row-start: 1;
1467
+ }
1468
+ .row-end--s-1 {
1469
+ grid-row-end: 1;
1470
+ }
1471
+ .col-start--s-1 {
1472
+ grid-column-start: 1;
1473
+ }
1474
+ .col-end--s-1 {
1475
+ grid-column-end: 1;
1476
+ }
1477
+ .row-span--s-2 {
1478
+ grid-row: span 2;
1479
+ }
1480
+ .col-span--s-2 {
1481
+ grid-column: span 2;
1482
+ }
1483
+ .row-start--s-2 {
1484
+ grid-row-start: 2;
1485
+ }
1486
+ .row-end--s-2 {
1487
+ grid-row-end: 2;
1488
+ }
1489
+ .col-start--s-2 {
1490
+ grid-column-start: 2;
1491
+ }
1492
+ .col-end--s-2 {
1493
+ grid-column-end: 2;
1494
+ }
1495
+ .row-span--s-3 {
1496
+ grid-row: span 3;
1497
+ }
1498
+ .col-span--s-3 {
1499
+ grid-column: span 3;
1500
+ }
1501
+ .row-start--s-3 {
1502
+ grid-row-start: 3;
1503
+ }
1504
+ .row-end--s-3 {
1505
+ grid-row-end: 3;
1506
+ }
1507
+ .col-start--s-3 {
1508
+ grid-column-start: 3;
1509
+ }
1510
+ .col-end--s-3 {
1511
+ grid-column-end: 3;
1512
+ }
1513
+ .row-span--s-4 {
1514
+ grid-row: span 4;
1515
+ }
1516
+ .col-span--s-4 {
1517
+ grid-column: span 4;
1518
+ }
1519
+ .row-start--s-4 {
1520
+ grid-row-start: 4;
1521
+ }
1522
+ .row-end--s-4 {
1523
+ grid-row-end: 4;
1524
+ }
1525
+ .col-start--s-4 {
1526
+ grid-column-start: 4;
1527
+ }
1528
+ .col-end--s-4 {
1529
+ grid-column-end: 4;
1530
+ }
1531
+ .row-span--s-5 {
1532
+ grid-row: span 5;
1533
+ }
1534
+ .col-span--s-5 {
1535
+ grid-column: span 5;
1536
+ }
1537
+ .row-start--s-5 {
1538
+ grid-row-start: 5;
1539
+ }
1540
+ .row-end--s-5 {
1541
+ grid-row-end: 5;
1542
+ }
1543
+ .col-start--s-5 {
1544
+ grid-column-start: 5;
1545
+ }
1546
+ .col-end--s-5 {
1547
+ grid-column-end: 5;
1548
+ }
1549
+ .row-span--s-6 {
1550
+ grid-row: span 6;
1551
+ }
1552
+ .col-span--s-6 {
1553
+ grid-column: span 6;
1554
+ }
1555
+ .row-start--s-6 {
1556
+ grid-row-start: 6;
1557
+ }
1558
+ .row-end--s-6 {
1559
+ grid-row-end: 6;
1560
+ }
1561
+ .col-start--s-6 {
1562
+ grid-column-start: 6;
1563
+ }
1564
+ .col-end--s-6 {
1565
+ grid-column-end: 6;
1566
+ }
1567
+ .row-span--s-7 {
1568
+ grid-row: span 7;
1569
+ }
1570
+ .col-span--s-7 {
1571
+ grid-column: span 7;
1572
+ }
1573
+ .row-start--s-7 {
1574
+ grid-row-start: 7;
1575
+ }
1576
+ .row-end--s-7 {
1577
+ grid-row-end: 7;
1578
+ }
1579
+ .col-start--s-7 {
1580
+ grid-column-start: 7;
1581
+ }
1582
+ .col-end--s-7 {
1583
+ grid-column-end: 7;
1584
+ }
1585
+ .row-span--s-8 {
1586
+ grid-row: span 8;
1587
+ }
1588
+ .col-span--s-8 {
1589
+ grid-column: span 8;
1590
+ }
1591
+ .row-start--s-8 {
1592
+ grid-row-start: 8;
1593
+ }
1594
+ .row-end--s-8 {
1595
+ grid-row-end: 8;
1596
+ }
1597
+ .col-start--s-8 {
1598
+ grid-column-start: 8;
1599
+ }
1600
+ .col-end--s-8 {
1601
+ grid-column-end: 8;
1602
+ }
1603
+ .row-span--s-9 {
1604
+ grid-row: span 9;
1605
+ }
1606
+ .col-span--s-9 {
1607
+ grid-column: span 9;
1608
+ }
1609
+ .row-start--s-9 {
1610
+ grid-row-start: 9;
1611
+ }
1612
+ .row-end--s-9 {
1613
+ grid-row-end: 9;
1614
+ }
1615
+ .col-start--s-9 {
1616
+ grid-column-start: 9;
1617
+ }
1618
+ .col-end--s-9 {
1619
+ grid-column-end: 9;
1620
+ }
1621
+ .row-span--s-10 {
1622
+ grid-row: span 10;
1623
+ }
1624
+ .col-span--s-10 {
1625
+ grid-column: span 10;
1626
+ }
1627
+ .row-start--s-10 {
1628
+ grid-row-start: 10;
1629
+ }
1630
+ .row-end--s-10 {
1631
+ grid-row-end: 10;
1632
+ }
1633
+ .col-start--s-10 {
1634
+ grid-column-start: 10;
1635
+ }
1636
+ .col-end--s-10 {
1637
+ grid-column-end: 10;
1638
+ }
1639
+ .row-span--s-11 {
1640
+ grid-row: span 11;
1641
+ }
1642
+ .col-span--s-11 {
1643
+ grid-column: span 11;
1644
+ }
1645
+ .row-start--s-11 {
1646
+ grid-row-start: 11;
1647
+ }
1648
+ .row-end--s-11 {
1649
+ grid-row-end: 11;
1650
+ }
1651
+ .col-start--s-11 {
1652
+ grid-column-start: 11;
1653
+ }
1654
+ .col-end--s-11 {
1655
+ grid-column-end: 11;
1656
+ }
1657
+ .row-span--s-12 {
1658
+ grid-row: span 12;
1659
+ }
1660
+ .col-span--s-12 {
1661
+ grid-column: span 12;
1662
+ }
1663
+ .row-start--s-12 {
1664
+ grid-row-start: 12;
1665
+ }
1666
+ .row-end--s-12 {
1667
+ grid-row-end: 12;
1668
+ }
1669
+ .col-start--s-12 {
1670
+ grid-column-start: 12;
1671
+ }
1672
+ .col-end--s-12 {
1673
+ grid-column-end: 12;
1674
+ }
1675
+ .col-span--s-all {
1676
+ grid-column: 1 / -1;
1677
+ }
1678
+ .order--first-s {
1679
+ order: -1;
1680
+ }
1681
+ .order--last-s {
1682
+ order: 999;
1683
+ }
1684
+ .col-end--s-last {
1685
+ grid-column-end: -1;
1686
+ }
1687
+ }
1688
+
1689
+ @media (min-width: 480px) {
1690
+ .grid--alternate-s > .grid--2:nth-of-type(even) > *:last-child {
1691
+ order: -1;
1692
+ }
1693
+ .grid--alternate-s > .grid--1-2:nth-of-type(even) {
1694
+ grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
1695
+ }
1696
+ .grid--alternate-s > .grid--1-2:nth-of-type(even) > *:last-child {
1697
+ order: -1;
1698
+ }
1699
+ .grid--alternate-s > .grid--1-3:nth-of-type(even) {
1700
+ grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
1701
+ }
1702
+ .grid--alternate-s > .grid--1-3:nth-of-type(even) > *:last-child {
1703
+ order: -1;
1704
+ }
1705
+ .grid--alternate-s > .grid--2-1:nth-of-type(even) {
1706
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1707
+ }
1708
+ .grid--alternate-s > .grid--2-1:nth-of-type(even) > *:last-child {
1709
+ order: -1;
1710
+ }
1711
+ .grid--alternate-s > .grid--2-3:nth-of-type(even) {
1712
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
1713
+ }
1714
+ .grid--alternate-s > .grid--2-3:nth-of-type(even) > *:last-child {
1715
+ order: -1;
1716
+ }
1717
+ .grid--alternate-s > .grid--3-1:nth-of-type(even) {
1718
+ grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
1719
+ }
1720
+ .grid--alternate-s > .grid--3-1:nth-of-type(even) > *:last-child {
1721
+ order: -1;
1722
+ }
1723
+ .grid--alternate-s > .grid--3-2:nth-of-type(even) {
1724
+ grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
1725
+ }
1726
+ .grid--alternate-s > .grid--3-2:nth-of-type(even) > *:last-child {
1727
+ order: -1;
1728
+ }
1729
+ }
1730
+
1731
+ @media (min-width: 768px) {
1732
+ .grid--alternate-m > .grid--2:nth-of-type(even) > *:last-child {
1733
+ order: -1;
1734
+ }
1735
+ .grid--alternate-m > .grid--1-2:nth-of-type(even) {
1736
+ grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
1737
+ }
1738
+ .grid--alternate-m > .grid--1-2:nth-of-type(even) > *:last-child {
1739
+ order: -1;
1740
+ }
1741
+ .grid--alternate-m > .grid--1-3:nth-of-type(even) {
1742
+ grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
1743
+ }
1744
+ .grid--alternate-m > .grid--1-3:nth-of-type(even) > *:last-child {
1745
+ order: -1;
1746
+ }
1747
+ .grid--alternate-m > .grid--2-1:nth-of-type(even) {
1748
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1749
+ }
1750
+ .grid--alternate-m > .grid--2-1:nth-of-type(even) > *:last-child {
1751
+ order: -1;
1752
+ }
1753
+ .grid--alternate-m > .grid--2-3:nth-of-type(even) {
1754
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
1755
+ }
1756
+ .grid--alternate-m > .grid--2-3:nth-of-type(even) > *:last-child {
1757
+ order: -1;
1758
+ }
1759
+ .grid--alternate-m > .grid--3-1:nth-of-type(even) {
1760
+ grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
1761
+ }
1762
+ .grid--alternate-m > .grid--3-1:nth-of-type(even) > *:last-child {
1763
+ order: -1;
1764
+ }
1765
+ .grid--alternate-m > .grid--3-2:nth-of-type(even) {
1766
+ grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
1767
+ }
1768
+ .grid--alternate-m > .grid--3-2:nth-of-type(even) > *:last-child {
1769
+ order: -1;
1770
+ }
1771
+ }
1772
+
1773
+ @media (min-width: 992px) {
1774
+ .grid--alternate-l > .grid--2:nth-of-type(even) > *:last-child {
1775
+ order: -1;
1776
+ }
1777
+ .grid--alternate-l > .grid--1-2:nth-of-type(even) {
1778
+ grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
1779
+ }
1780
+ .grid--alternate-l > .grid--1-2:nth-of-type(even) > *:last-child {
1781
+ order: -1;
1782
+ }
1783
+ .grid--alternate-l > .grid--1-3:nth-of-type(even) {
1784
+ grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
1785
+ }
1786
+ .grid--alternate-l > .grid--1-3:nth-of-type(even) > *:last-child {
1787
+ order: -1;
1788
+ }
1789
+ .grid--alternate-l > .grid--2-1:nth-of-type(even) {
1790
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1791
+ }
1792
+ .grid--alternate-l > .grid--2-1:nth-of-type(even) > *:last-child {
1793
+ order: -1;
1794
+ }
1795
+ .grid--alternate-l > .grid--2-3:nth-of-type(even) {
1796
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
1797
+ }
1798
+ .grid--alternate-l > .grid--2-3:nth-of-type(even) > *:last-child {
1799
+ order: -1;
1800
+ }
1801
+ .grid--alternate-l > .grid--3-1:nth-of-type(even) {
1802
+ grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
1803
+ }
1804
+ .grid--alternate-l > .grid--3-1:nth-of-type(even) > *:last-child {
1805
+ order: -1;
1806
+ }
1807
+ .grid--alternate-l > .grid--3-2:nth-of-type(even) {
1808
+ grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
1809
+ }
1810
+ .grid--alternate-l > .grid--3-2:nth-of-type(even) > *:last-child {
1811
+ order: -1;
1812
+ }
1813
+ }
1814
+
1815
+ @media (min-width: 1600px) {
1816
+ .grid--alternate-xl > .grid--1-2:nth-of-type(even) {
1817
+ grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
1818
+ }
1819
+ .grid--alternate-xl > .grid--1-2:nth-of-type(even) > *:last-child {
1820
+ order: -1;
1821
+ }
1822
+ .grid--alternate-xl > .grid--1-3:nth-of-type(even) {
1823
+ grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
1824
+ }
1825
+ .grid--alternate-xl > .grid--1-3:nth-of-type(even) > *:last-child {
1826
+ order: -1;
1827
+ }
1828
+ .grid--alternate-xl > .grid--2-1:nth-of-type(even) {
1829
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
1830
+ }
1831
+ .grid--alternate-xl > .grid--2-1:nth-of-type(even) > *:last-child {
1832
+ order: -1;
1833
+ }
1834
+ .grid--alternate-xl > .grid--2-3:nth-of-type(even) {
1835
+ grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
1836
+ }
1837
+ .grid--alternate-xl > .grid--2-3:nth-of-type(even) > *:last-child {
1838
+ order: -1;
1839
+ }
1840
+ .grid--alternate-xl > .grid--3-1:nth-of-type(even) {
1841
+ grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
1842
+ }
1843
+ .grid--alternate-xl > .grid--3-1:nth-of-type(even) > *:last-child {
1844
+ order: -1;
1845
+ }
1846
+ .grid--alternate-xl > .grid--3-2:nth-of-type(even) {
1847
+ grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
1848
+ }
1849
+ .grid--alternate-xl > .grid--3-2:nth-of-type(even) > *:last-child {
1850
+ order: -1;
1851
+ }
1852
+ }