@nuvoui/core 1.3.0 → 1.3.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/nuvoui.css +775 -1406
- package/dist/nuvoui.css.map +1 -1
- package/dist/nuvoui.min.css +1 -1
- package/dist/nuvoui.min.css.map +1 -1
- package/package.json +2 -2
- package/src/styles/abstracts/_config.scss +30 -2
- package/src/styles/abstracts/_functions.scss +16 -5
- package/src/styles/base/_base.scss +6 -6
- package/src/styles/base/_reset.scss +0 -2
- package/src/styles/build.scss +3 -0
- package/src/styles/layouts/_container.scss +8 -1
- package/src/styles/layouts/_flex.scss +124 -228
- package/src/styles/layouts/_grid.scss +14 -43
- package/src/styles/themes/_theme.scss +10 -10
- package/src/styles/themes/refactored_borders.ipynb +37 -0
- package/src/styles/utilities/_alignment.scss +2 -1
- package/src/styles/utilities/_animations.scss +20 -32
- package/src/styles/utilities/_backdrop-filters.scss +7 -11
- package/src/styles/utilities/_borders.scss +80 -270
- package/src/styles/utilities/_container-queries.scss +17 -21
- package/src/styles/utilities/_cursor.scss +2 -1
- package/src/styles/utilities/_display.scss +73 -44
- package/src/styles/utilities/_helpers.scss +1 -0
- package/src/styles/utilities/_media-queries.scss +3 -5
- package/src/styles/utilities/_opacity.scss +52 -67
- package/src/styles/utilities/_position.scss +104 -132
- package/src/styles/utilities/_shadows.scss +9 -14
- package/src/styles/utilities/_sizing.scss +1 -1
- package/src/styles/utilities/_spacing.scss +143 -205
- package/src/styles/utilities/_tooltips.scss +203 -200
- package/src/styles/utilities/_transforms.scss +9 -11
- package/src/styles/utilities/_transitions.scss +8 -10
- package/src/styles/utilities/_typography.scss +17 -22
- package/src/styles/utilities/_z-index.scss +12 -19
package/dist/nuvoui.css
CHANGED
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Ensures a value has a unit, adding $default-unit if none exists
|
|
3
|
-
* @param {Number|String} $val - The value to check
|
|
4
|
-
* @return {String} - The value with units
|
|
5
|
-
*/
|
|
6
1
|
*,
|
|
7
2
|
::before,
|
|
8
3
|
::after,
|
|
@@ -30,8 +25,6 @@ dd {
|
|
|
30
25
|
}
|
|
31
26
|
|
|
32
27
|
html {
|
|
33
|
-
-moz-text-size-adjust: none; /* stylelint-disable-line */
|
|
34
|
-
-webkit-text-size-adjust: none; /* stylelint-disable-line */
|
|
35
28
|
text-size-adjust: none;
|
|
36
29
|
}
|
|
37
30
|
|
|
@@ -132,12 +125,6 @@ textarea:not([rows]) {
|
|
|
132
125
|
scroll-behavior: auto !important;
|
|
133
126
|
}
|
|
134
127
|
}
|
|
135
|
-
/* Import variables */
|
|
136
|
-
/**
|
|
137
|
-
* @description Media query mixins.
|
|
138
|
-
* @param {string|number} $breakpoint - The breakpoint value.
|
|
139
|
-
* @param {string} $type - The media query type (e.g. 'lg', 'md').
|
|
140
|
-
*/
|
|
141
128
|
:root {
|
|
142
129
|
--font-family-base: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
143
130
|
}
|
|
@@ -160,7 +147,7 @@ h4,
|
|
|
160
147
|
h5,
|
|
161
148
|
h6 {
|
|
162
149
|
margin-bottom: 0.5em;
|
|
163
|
-
font-family: var(--font-family-
|
|
150
|
+
font-family: var(--font-family-base);
|
|
164
151
|
font-weight: 700;
|
|
165
152
|
line-height: 1.2;
|
|
166
153
|
}
|
|
@@ -228,7 +215,7 @@ input[type=number],
|
|
|
228
215
|
input[type=search],
|
|
229
216
|
textarea {
|
|
230
217
|
padding: 0.5rem;
|
|
231
|
-
border: 1px solid var(--border);
|
|
218
|
+
border: var(--border-size, 1px) var(--border-style, solid) var(--border-color, var(--secondary));
|
|
232
219
|
border-radius: 0.25rem;
|
|
233
220
|
width: 100%;
|
|
234
221
|
font-family: var(--font-family-base);
|
|
@@ -251,7 +238,7 @@ input[type=radio] {
|
|
|
251
238
|
|
|
252
239
|
select {
|
|
253
240
|
padding: 0.5rem;
|
|
254
|
-
border: 1px solid var(--border);
|
|
241
|
+
border: var(--border-size, 1px) var(--border-style, solid) var(--border-color, var(--secondary));
|
|
255
242
|
border-radius: 0.25rem;
|
|
256
243
|
width: 100%;
|
|
257
244
|
font-family: var(--font-family-base);
|
|
@@ -265,13 +252,13 @@ select:focus {
|
|
|
265
252
|
blockquote {
|
|
266
253
|
margin: 1rem 0;
|
|
267
254
|
padding: 0.5rem 1rem;
|
|
268
|
-
border-left: 4px solid var(--border);
|
|
255
|
+
border-left: var(--border-size, 4px) var(--border-style, solid) var(--border-color, var(--secondary));
|
|
269
256
|
font-style: italic;
|
|
270
257
|
}
|
|
271
258
|
|
|
272
259
|
hr {
|
|
273
260
|
border: none;
|
|
274
|
-
border-top: 1px solid var(--border);
|
|
261
|
+
border-top: var(--border-size, 1px) var(--border-style, solid) var(--border-color, var(--secondary));
|
|
275
262
|
margin: 1rem 0;
|
|
276
263
|
}
|
|
277
264
|
|
|
@@ -375,217 +362,88 @@ code {
|
|
|
375
362
|
padding-bottom: 1rem;
|
|
376
363
|
}
|
|
377
364
|
|
|
378
|
-
|
|
379
|
-
* @component Flex
|
|
380
|
-
* @description Flexbox layout system for creating flexible page layouts
|
|
381
|
-
*
|
|
382
|
-
* @example
|
|
383
|
-
* <div class="flex row between x-center">
|
|
384
|
-
* <div class="w-6">Left column (6 units)</div>
|
|
385
|
-
* <div class="w-6">Right column (6 units)</div>
|
|
386
|
-
* </div>
|
|
387
|
-
*
|
|
388
|
-
* <div class="flex col@md row@lg">
|
|
389
|
-
* <!-- Changes direction based on breakpoint -->
|
|
390
|
-
* </div>
|
|
391
|
-
*
|
|
392
|
-
* @classes
|
|
393
|
-
* Base:
|
|
394
|
-
* - flex: Creates a flex container
|
|
395
|
-
*
|
|
396
|
-
* Direction:
|
|
397
|
-
* - row: Sets flex-direction to row
|
|
398
|
-
* - col: Sets flex-direction to column
|
|
399
|
-
* - row-reverse: Reverses row direction
|
|
400
|
-
* - col-reverse: Reverses column direction
|
|
401
|
-
*
|
|
402
|
-
* Alignment:
|
|
403
|
-
* - start/end/center: Controls justify-content
|
|
404
|
-
* - x-start/x-end/x-center: Controls align-items
|
|
405
|
-
*
|
|
406
|
-
* Child elements:
|
|
407
|
-
* - w-{1-12}: Sets width based on column count
|
|
408
|
-
* - grow: Allows item to grow
|
|
409
|
-
* - shrink/no-shrink: Controls shrink behavior
|
|
410
|
-
*
|
|
411
|
-
* @responsive
|
|
412
|
-
* All classes support responsive variants using @breakpoint suffix:
|
|
413
|
-
* - row@md: Row direction on medium screens and up
|
|
414
|
-
* - between@lg: Space-between on large screens
|
|
415
|
-
*
|
|
416
|
-
* @see grid
|
|
417
|
-
*/
|
|
418
|
-
/**
|
|
419
|
-
* @description Establishes a flex container.
|
|
420
|
-
*/
|
|
421
|
-
/**
|
|
422
|
-
* @description Establishes a flex-inline container.
|
|
423
|
-
*/
|
|
424
|
-
/**
|
|
425
|
-
* @description Sets flex-direction to row.
|
|
426
|
-
* @dependencies flex | flex-inline
|
|
427
|
-
*/
|
|
428
|
-
/**
|
|
429
|
-
* @description Sets flex-direction to row-reverse.
|
|
430
|
-
* @dependencies flex | flex-inline
|
|
431
|
-
*/
|
|
432
|
-
/**
|
|
433
|
-
* @description Sets flex-direction to column.
|
|
434
|
-
* @dependencies flex | flex-inline
|
|
435
|
-
*/
|
|
436
|
-
/**
|
|
437
|
-
* @description Sets flex-direction to column-reverse.
|
|
438
|
-
* @dependencies flex | flex-inline
|
|
439
|
-
*/
|
|
440
|
-
/**
|
|
441
|
-
* @description Sets flex-wrap to wrap.
|
|
442
|
-
* @dependencies flex | flex-inline
|
|
443
|
-
*/
|
|
444
|
-
/**
|
|
445
|
-
* @description Sets flex-wrap to nowrap.
|
|
446
|
-
* @dependencies flex | flex-inline
|
|
447
|
-
*/
|
|
448
|
-
/**
|
|
449
|
-
* @description Sets flex-wrap to wrap-reverse
|
|
450
|
-
* @dependencies flex | flex-inline
|
|
451
|
-
*/
|
|
452
|
-
/**
|
|
453
|
-
* @description Sets justify-content to flex-start
|
|
454
|
-
* @dependencies flex | flex-inline
|
|
455
|
-
*/
|
|
456
|
-
/**
|
|
457
|
-
* @description Sets justify-content to flex-end
|
|
458
|
-
* @dependencies flex | flex-inline
|
|
459
|
-
*/
|
|
460
|
-
/**
|
|
461
|
-
* @description Sets justify-content to center
|
|
462
|
-
* @dependencies flex | flex-inline
|
|
463
|
-
*/
|
|
464
|
-
/**
|
|
465
|
-
* @description Sets justify-content to stretch
|
|
466
|
-
* @dependencies flex | flex-inline
|
|
467
|
-
*/
|
|
468
|
-
/**
|
|
469
|
-
* @description Sets justify-content to space-between
|
|
470
|
-
* @dependencies flex | flex-inline
|
|
471
|
-
*/
|
|
472
|
-
/**
|
|
473
|
-
* @description Sets justify-content to space-around
|
|
474
|
-
* @dependencies flex | flex-inline
|
|
475
|
-
*/
|
|
476
|
-
/**
|
|
477
|
-
* @description Sets justify-content to space-evenly
|
|
478
|
-
* @dependencies flex | flex-inline
|
|
479
|
-
*/
|
|
480
|
-
/**
|
|
481
|
-
* @description Sets align-items to flex-start - aligns items to the start of the cross axis.
|
|
482
|
-
* @dependencies flex | flex-inline
|
|
483
|
-
*/
|
|
484
|
-
/**
|
|
485
|
-
* @description Sets align-items to flex-end - aligns items to the end of the cross axis.
|
|
486
|
-
* @dependencies flex | flex-inline
|
|
487
|
-
*/
|
|
488
|
-
/**
|
|
489
|
-
* @description Sets align-items to center - aligns items to the center of the cross axis.
|
|
490
|
-
* @dependencies flex | flex-inline
|
|
491
|
-
*/
|
|
492
|
-
/**
|
|
493
|
-
* @description Sets align-items to stretch - aligns items to the stretch of the cross axis.
|
|
494
|
-
* @dependencies flex | flex-inline
|
|
495
|
-
*/
|
|
496
|
-
/**
|
|
497
|
-
* @description Sets align-items to baseline - aligns items to the baseline of the cross axis.
|
|
498
|
-
* @dependencies flex | flex-inline
|
|
499
|
-
*/
|
|
500
|
-
/**
|
|
501
|
-
* @description Sets align-content to flex-start - aligns content to the start of the cross axis.
|
|
502
|
-
* @dependencies flex | flex-inline
|
|
503
|
-
*/
|
|
504
|
-
/**
|
|
505
|
-
* @description Sets align-content to flex-end - aligns content to the end of the cross axis.
|
|
506
|
-
* @dependencies flex | flex-inline
|
|
507
|
-
*/
|
|
508
|
-
/**
|
|
509
|
-
* @description Sets align-content to center - aligns content to the center of the cross axis.
|
|
510
|
-
* @dependencies flex | flex-inline
|
|
511
|
-
*/
|
|
512
|
-
/**
|
|
513
|
-
* @description Sets align-content to space-between - aligns content to the space between the cross axis.
|
|
514
|
-
* @dependencies flex | flex-inline
|
|
515
|
-
*/
|
|
516
|
-
/**
|
|
517
|
-
* @description Sets align-content to space-around - aligns content to the space around the cross axis.
|
|
518
|
-
* @dependencies flex | flex-inline
|
|
519
|
-
*/
|
|
520
|
-
/**
|
|
521
|
-
* @description Sets align-content to space-evenly - aligns content to the space evenly between the cross axis.
|
|
522
|
-
* @dependencies flex | flex-inline
|
|
523
|
-
*/
|
|
524
|
-
/**
|
|
525
|
-
* @description Sets align-content to stretch - aligns content to the stretch of the cross axis.
|
|
526
|
-
* @dependencies flex | flex-inline
|
|
527
|
-
*/
|
|
528
|
-
/**
|
|
529
|
-
* @description Sets align-self to auto
|
|
530
|
-
* @dependencies flex | flex-inline
|
|
531
|
-
*/
|
|
532
|
-
/**
|
|
533
|
-
* @description Sets align-self to flex-start
|
|
534
|
-
* @dependencies flex | flex-inline
|
|
535
|
-
*/
|
|
536
|
-
/**
|
|
537
|
-
* @description Sets align-self to flex-end
|
|
538
|
-
* @dependencies flex | flex-inline
|
|
539
|
-
*/
|
|
540
|
-
/**
|
|
541
|
-
* @description Sets align-self to center
|
|
542
|
-
* @dependencies flex | flex-inline
|
|
543
|
-
*/
|
|
544
|
-
/**
|
|
545
|
-
* @description Sets align-self to stretch
|
|
546
|
-
* @dependencies flex | flex-inline
|
|
547
|
-
*/
|
|
548
|
-
/**
|
|
549
|
-
* @description Sets align-self to baseline
|
|
550
|
-
* @dependencies flex | flex-inline
|
|
551
|
-
*/
|
|
552
|
-
/**
|
|
553
|
-
* @description Sets flex-shrink to 1 - allows the item to shrink.
|
|
554
|
-
* @dependencies flex | flex-inline
|
|
555
|
-
*/
|
|
556
|
-
/**
|
|
557
|
-
* @description Sets flex-shrink to 0 - prevents the item from shrinking.
|
|
558
|
-
* @dependencies flex | flex-inline
|
|
559
|
-
*/
|
|
560
|
-
/**
|
|
561
|
-
* @description Sets flex-shrink to 2 - allows the item to shrink twice as much as the other items.
|
|
562
|
-
* @dependencies flex | flex-inline
|
|
563
|
-
*/
|
|
564
|
-
/**
|
|
565
|
-
* @description Sets flex to 0 0 100%
|
|
566
|
-
*/
|
|
567
|
-
/**
|
|
568
|
-
* @description Sets flex to 1 1 auto - allows the item to grow and shrink.
|
|
569
|
-
*/
|
|
570
|
-
/**
|
|
571
|
-
* @description Sets flex to 1 1 0% - allows the item to grow but not shrink.
|
|
572
|
-
*/
|
|
573
|
-
/**
|
|
574
|
-
* @description Sets flex to none - prevents the item from growing.
|
|
575
|
-
*/
|
|
576
|
-
/**
|
|
577
|
-
* @description Sets flex to 1 0 auto - allows the item to grow but not shrink.
|
|
578
|
-
*/
|
|
579
|
-
/**
|
|
580
|
-
* @description Sets how many columns this would take using percentage of VAR.$column-count.
|
|
581
|
-
* @param {Number} $size - The number of columns to span.
|
|
582
|
-
*/
|
|
583
|
-
.flex, .flex\@xs, .flex\@sm, .flex\@md, .flex\@lg, .flex\@xl, .flex\@2xl {
|
|
365
|
+
.container.flex {
|
|
584
366
|
display: flex;
|
|
367
|
+
width: 100%;
|
|
368
|
+
margin-left: auto;
|
|
369
|
+
margin-right: auto;
|
|
585
370
|
}
|
|
586
|
-
|
|
587
|
-
|
|
371
|
+
@media (min-width: 480px) {
|
|
372
|
+
.container.flex {
|
|
373
|
+
max-width: 380px;
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
@media (min-width: 640px) {
|
|
377
|
+
.container.flex {
|
|
378
|
+
max-width: 540px;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
@media (min-width: 768px) {
|
|
382
|
+
.container.flex {
|
|
383
|
+
max-width: 668px;
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
@media (min-width: 1024px) {
|
|
387
|
+
.container.flex {
|
|
388
|
+
max-width: 924px;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
@media (min-width: 1280px) {
|
|
392
|
+
.container.flex {
|
|
393
|
+
max-width: 1180px;
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
@media (min-width: 1536px) {
|
|
397
|
+
.container.flex {
|
|
398
|
+
max-width: 1436px;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
.container.flex {
|
|
402
|
+
padding-top: 1rem;
|
|
403
|
+
padding-bottom: 1rem;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.container.grid {
|
|
407
|
+
display: grid;
|
|
408
|
+
width: 100%;
|
|
409
|
+
margin-left: auto;
|
|
410
|
+
margin-right: auto;
|
|
411
|
+
}
|
|
412
|
+
@media (min-width: 480px) {
|
|
413
|
+
.container.grid {
|
|
414
|
+
max-width: 380px;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
@media (min-width: 640px) {
|
|
418
|
+
.container.grid {
|
|
419
|
+
max-width: 540px;
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
@media (min-width: 768px) {
|
|
423
|
+
.container.grid {
|
|
424
|
+
max-width: 668px;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
@media (min-width: 1024px) {
|
|
428
|
+
.container.grid {
|
|
429
|
+
max-width: 924px;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
@media (min-width: 1280px) {
|
|
433
|
+
.container.grid {
|
|
434
|
+
max-width: 1180px;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
@media (min-width: 1536px) {
|
|
438
|
+
.container.grid {
|
|
439
|
+
max-width: 1436px;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
.container.grid {
|
|
443
|
+
padding-top: 1rem;
|
|
444
|
+
padding-bottom: 1rem;
|
|
588
445
|
}
|
|
446
|
+
|
|
589
447
|
.flex.row, .flex\@xs.row, .flex\@sm.row, .flex\@md.row, .flex\@lg.row, .flex\@xl.row, .flex\@2xl.row {
|
|
590
448
|
flex-direction: row;
|
|
591
449
|
}
|
|
@@ -713,73 +571,73 @@ code {
|
|
|
713
571
|
align-self: auto;
|
|
714
572
|
}
|
|
715
573
|
.flex > .fill-1, .flex\@xs > .fill-1, .flex\@sm > .fill-1, .flex\@md > .fill-1, .flex\@lg > .fill-1, .flex\@xl > .fill-1, .flex\@2xl > .fill-1 {
|
|
716
|
-
flex: 0 0 8.3333333333
|
|
574
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
717
575
|
}
|
|
718
576
|
.flex > .order-1, .flex\@xs > .order-1, .flex\@sm > .order-1, .flex\@md > .order-1, .flex\@lg > .order-1, .flex\@xl > .order-1, .flex\@2xl > .order-1 {
|
|
719
577
|
order: 1;
|
|
720
578
|
}
|
|
721
579
|
.flex > .fill-2, .flex\@xs > .fill-2, .flex\@sm > .fill-2, .flex\@md > .fill-2, .flex\@lg > .fill-2, .flex\@xl > .fill-2, .flex\@2xl > .fill-2 {
|
|
722
|
-
flex: 0 0 16.6666666667
|
|
580
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
723
581
|
}
|
|
724
582
|
.flex > .order-2, .flex\@xs > .order-2, .flex\@sm > .order-2, .flex\@md > .order-2, .flex\@lg > .order-2, .flex\@xl > .order-2, .flex\@2xl > .order-2 {
|
|
725
583
|
order: 2;
|
|
726
584
|
}
|
|
727
585
|
.flex > .fill-3, .flex\@xs > .fill-3, .flex\@sm > .fill-3, .flex\@md > .fill-3, .flex\@lg > .fill-3, .flex\@xl > .fill-3, .flex\@2xl > .fill-3 {
|
|
728
|
-
flex: 0 0 25
|
|
586
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
729
587
|
}
|
|
730
588
|
.flex > .order-3, .flex\@xs > .order-3, .flex\@sm > .order-3, .flex\@md > .order-3, .flex\@lg > .order-3, .flex\@xl > .order-3, .flex\@2xl > .order-3 {
|
|
731
589
|
order: 3;
|
|
732
590
|
}
|
|
733
591
|
.flex > .fill-4, .flex\@xs > .fill-4, .flex\@sm > .fill-4, .flex\@md > .fill-4, .flex\@lg > .fill-4, .flex\@xl > .fill-4, .flex\@2xl > .fill-4 {
|
|
734
|
-
flex: 0 0 33.3333333333
|
|
592
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
735
593
|
}
|
|
736
594
|
.flex > .order-4, .flex\@xs > .order-4, .flex\@sm > .order-4, .flex\@md > .order-4, .flex\@lg > .order-4, .flex\@xl > .order-4, .flex\@2xl > .order-4 {
|
|
737
595
|
order: 4;
|
|
738
596
|
}
|
|
739
597
|
.flex > .fill-5, .flex\@xs > .fill-5, .flex\@sm > .fill-5, .flex\@md > .fill-5, .flex\@lg > .fill-5, .flex\@xl > .fill-5, .flex\@2xl > .fill-5 {
|
|
740
|
-
flex: 0 0 41.6666666667
|
|
598
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
741
599
|
}
|
|
742
600
|
.flex > .order-5, .flex\@xs > .order-5, .flex\@sm > .order-5, .flex\@md > .order-5, .flex\@lg > .order-5, .flex\@xl > .order-5, .flex\@2xl > .order-5 {
|
|
743
601
|
order: 5;
|
|
744
602
|
}
|
|
745
603
|
.flex > .fill-6, .flex\@xs > .fill-6, .flex\@sm > .fill-6, .flex\@md > .fill-6, .flex\@lg > .fill-6, .flex\@xl > .fill-6, .flex\@2xl > .fill-6 {
|
|
746
|
-
flex: 0 0 50
|
|
604
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
747
605
|
}
|
|
748
606
|
.flex > .order-6, .flex\@xs > .order-6, .flex\@sm > .order-6, .flex\@md > .order-6, .flex\@lg > .order-6, .flex\@xl > .order-6, .flex\@2xl > .order-6 {
|
|
749
607
|
order: 6;
|
|
750
608
|
}
|
|
751
609
|
.flex > .fill-7, .flex\@xs > .fill-7, .flex\@sm > .fill-7, .flex\@md > .fill-7, .flex\@lg > .fill-7, .flex\@xl > .fill-7, .flex\@2xl > .fill-7 {
|
|
752
|
-
flex: 0 0 58.3333333333
|
|
610
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
753
611
|
}
|
|
754
612
|
.flex > .order-7, .flex\@xs > .order-7, .flex\@sm > .order-7, .flex\@md > .order-7, .flex\@lg > .order-7, .flex\@xl > .order-7, .flex\@2xl > .order-7 {
|
|
755
613
|
order: 7;
|
|
756
614
|
}
|
|
757
615
|
.flex > .fill-8, .flex\@xs > .fill-8, .flex\@sm > .fill-8, .flex\@md > .fill-8, .flex\@lg > .fill-8, .flex\@xl > .fill-8, .flex\@2xl > .fill-8 {
|
|
758
|
-
flex: 0 0 66.6666666667
|
|
616
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
759
617
|
}
|
|
760
618
|
.flex > .order-8, .flex\@xs > .order-8, .flex\@sm > .order-8, .flex\@md > .order-8, .flex\@lg > .order-8, .flex\@xl > .order-8, .flex\@2xl > .order-8 {
|
|
761
619
|
order: 8;
|
|
762
620
|
}
|
|
763
621
|
.flex > .fill-9, .flex\@xs > .fill-9, .flex\@sm > .fill-9, .flex\@md > .fill-9, .flex\@lg > .fill-9, .flex\@xl > .fill-9, .flex\@2xl > .fill-9 {
|
|
764
|
-
flex: 0 0 75
|
|
622
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
765
623
|
}
|
|
766
624
|
.flex > .order-9, .flex\@xs > .order-9, .flex\@sm > .order-9, .flex\@md > .order-9, .flex\@lg > .order-9, .flex\@xl > .order-9, .flex\@2xl > .order-9 {
|
|
767
625
|
order: 9;
|
|
768
626
|
}
|
|
769
627
|
.flex > .fill-10, .flex\@xs > .fill-10, .flex\@sm > .fill-10, .flex\@md > .fill-10, .flex\@lg > .fill-10, .flex\@xl > .fill-10, .flex\@2xl > .fill-10 {
|
|
770
|
-
flex: 0 0 83.3333333333
|
|
628
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
771
629
|
}
|
|
772
630
|
.flex > .order-10, .flex\@xs > .order-10, .flex\@sm > .order-10, .flex\@md > .order-10, .flex\@lg > .order-10, .flex\@xl > .order-10, .flex\@2xl > .order-10 {
|
|
773
631
|
order: 10;
|
|
774
632
|
}
|
|
775
633
|
.flex > .fill-11, .flex\@xs > .fill-11, .flex\@sm > .fill-11, .flex\@md > .fill-11, .flex\@lg > .fill-11, .flex\@xl > .fill-11, .flex\@2xl > .fill-11 {
|
|
776
|
-
flex: 0 0 91.6666666667
|
|
634
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
777
635
|
}
|
|
778
636
|
.flex > .order-11, .flex\@xs > .order-11, .flex\@sm > .order-11, .flex\@md > .order-11, .flex\@lg > .order-11, .flex\@xl > .order-11, .flex\@2xl > .order-11 {
|
|
779
637
|
order: 11;
|
|
780
638
|
}
|
|
781
639
|
.flex > .fill-12, .flex\@xs > .fill-12, .flex\@sm > .fill-12, .flex\@md > .fill-12, .flex\@lg > .fill-12, .flex\@xl > .fill-12, .flex\@2xl > .fill-12 {
|
|
782
|
-
flex: 0 0 100
|
|
640
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
783
641
|
}
|
|
784
642
|
.flex > .order-12, .flex\@xs > .order-12, .flex\@sm > .order-12, .flex\@md > .order-12, .flex\@lg > .order-12, .flex\@xl > .order-12, .flex\@2xl > .order-12 {
|
|
785
643
|
order: 12;
|
|
@@ -913,81 +771,77 @@ code {
|
|
|
913
771
|
align-self: auto;
|
|
914
772
|
}
|
|
915
773
|
.flex > .fill-1\@xs, .flex\@xs > .fill-1\@xs, .flex\@sm > .fill-1\@xs, .flex\@md > .fill-1\@xs, .flex\@lg > .fill-1\@xs, .flex\@xl > .fill-1\@xs, .flex\@2xl > .fill-1\@xs {
|
|
916
|
-
flex: 0 0 8.3333333333
|
|
774
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
917
775
|
}
|
|
918
776
|
.flex > .order-1\@xs, .flex\@xs > .order-1\@xs, .flex\@sm > .order-1\@xs, .flex\@md > .order-1\@xs, .flex\@lg > .order-1\@xs, .flex\@xl > .order-1\@xs, .flex\@2xl > .order-1\@xs {
|
|
919
777
|
order: 1;
|
|
920
778
|
}
|
|
921
779
|
.flex > .fill-2\@xs, .flex\@xs > .fill-2\@xs, .flex\@sm > .fill-2\@xs, .flex\@md > .fill-2\@xs, .flex\@lg > .fill-2\@xs, .flex\@xl > .fill-2\@xs, .flex\@2xl > .fill-2\@xs {
|
|
922
|
-
flex: 0 0 16.6666666667
|
|
780
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
923
781
|
}
|
|
924
782
|
.flex > .order-2\@xs, .flex\@xs > .order-2\@xs, .flex\@sm > .order-2\@xs, .flex\@md > .order-2\@xs, .flex\@lg > .order-2\@xs, .flex\@xl > .order-2\@xs, .flex\@2xl > .order-2\@xs {
|
|
925
783
|
order: 2;
|
|
926
784
|
}
|
|
927
785
|
.flex > .fill-3\@xs, .flex\@xs > .fill-3\@xs, .flex\@sm > .fill-3\@xs, .flex\@md > .fill-3\@xs, .flex\@lg > .fill-3\@xs, .flex\@xl > .fill-3\@xs, .flex\@2xl > .fill-3\@xs {
|
|
928
|
-
flex: 0 0 25
|
|
786
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
929
787
|
}
|
|
930
788
|
.flex > .order-3\@xs, .flex\@xs > .order-3\@xs, .flex\@sm > .order-3\@xs, .flex\@md > .order-3\@xs, .flex\@lg > .order-3\@xs, .flex\@xl > .order-3\@xs, .flex\@2xl > .order-3\@xs {
|
|
931
789
|
order: 3;
|
|
932
790
|
}
|
|
933
791
|
.flex > .fill-4\@xs, .flex\@xs > .fill-4\@xs, .flex\@sm > .fill-4\@xs, .flex\@md > .fill-4\@xs, .flex\@lg > .fill-4\@xs, .flex\@xl > .fill-4\@xs, .flex\@2xl > .fill-4\@xs {
|
|
934
|
-
flex: 0 0 33.3333333333
|
|
792
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
935
793
|
}
|
|
936
794
|
.flex > .order-4\@xs, .flex\@xs > .order-4\@xs, .flex\@sm > .order-4\@xs, .flex\@md > .order-4\@xs, .flex\@lg > .order-4\@xs, .flex\@xl > .order-4\@xs, .flex\@2xl > .order-4\@xs {
|
|
937
795
|
order: 4;
|
|
938
796
|
}
|
|
939
797
|
.flex > .fill-5\@xs, .flex\@xs > .fill-5\@xs, .flex\@sm > .fill-5\@xs, .flex\@md > .fill-5\@xs, .flex\@lg > .fill-5\@xs, .flex\@xl > .fill-5\@xs, .flex\@2xl > .fill-5\@xs {
|
|
940
|
-
flex: 0 0 41.6666666667
|
|
798
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
941
799
|
}
|
|
942
800
|
.flex > .order-5\@xs, .flex\@xs > .order-5\@xs, .flex\@sm > .order-5\@xs, .flex\@md > .order-5\@xs, .flex\@lg > .order-5\@xs, .flex\@xl > .order-5\@xs, .flex\@2xl > .order-5\@xs {
|
|
943
801
|
order: 5;
|
|
944
802
|
}
|
|
945
803
|
.flex > .fill-6\@xs, .flex\@xs > .fill-6\@xs, .flex\@sm > .fill-6\@xs, .flex\@md > .fill-6\@xs, .flex\@lg > .fill-6\@xs, .flex\@xl > .fill-6\@xs, .flex\@2xl > .fill-6\@xs {
|
|
946
|
-
flex: 0 0 50
|
|
804
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
947
805
|
}
|
|
948
806
|
.flex > .order-6\@xs, .flex\@xs > .order-6\@xs, .flex\@sm > .order-6\@xs, .flex\@md > .order-6\@xs, .flex\@lg > .order-6\@xs, .flex\@xl > .order-6\@xs, .flex\@2xl > .order-6\@xs {
|
|
949
807
|
order: 6;
|
|
950
808
|
}
|
|
951
809
|
.flex > .fill-7\@xs, .flex\@xs > .fill-7\@xs, .flex\@sm > .fill-7\@xs, .flex\@md > .fill-7\@xs, .flex\@lg > .fill-7\@xs, .flex\@xl > .fill-7\@xs, .flex\@2xl > .fill-7\@xs {
|
|
952
|
-
flex: 0 0 58.3333333333
|
|
810
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
953
811
|
}
|
|
954
812
|
.flex > .order-7\@xs, .flex\@xs > .order-7\@xs, .flex\@sm > .order-7\@xs, .flex\@md > .order-7\@xs, .flex\@lg > .order-7\@xs, .flex\@xl > .order-7\@xs, .flex\@2xl > .order-7\@xs {
|
|
955
813
|
order: 7;
|
|
956
814
|
}
|
|
957
815
|
.flex > .fill-8\@xs, .flex\@xs > .fill-8\@xs, .flex\@sm > .fill-8\@xs, .flex\@md > .fill-8\@xs, .flex\@lg > .fill-8\@xs, .flex\@xl > .fill-8\@xs, .flex\@2xl > .fill-8\@xs {
|
|
958
|
-
flex: 0 0 66.6666666667
|
|
816
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
959
817
|
}
|
|
960
818
|
.flex > .order-8\@xs, .flex\@xs > .order-8\@xs, .flex\@sm > .order-8\@xs, .flex\@md > .order-8\@xs, .flex\@lg > .order-8\@xs, .flex\@xl > .order-8\@xs, .flex\@2xl > .order-8\@xs {
|
|
961
819
|
order: 8;
|
|
962
820
|
}
|
|
963
821
|
.flex > .fill-9\@xs, .flex\@xs > .fill-9\@xs, .flex\@sm > .fill-9\@xs, .flex\@md > .fill-9\@xs, .flex\@lg > .fill-9\@xs, .flex\@xl > .fill-9\@xs, .flex\@2xl > .fill-9\@xs {
|
|
964
|
-
flex: 0 0 75
|
|
822
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
965
823
|
}
|
|
966
824
|
.flex > .order-9\@xs, .flex\@xs > .order-9\@xs, .flex\@sm > .order-9\@xs, .flex\@md > .order-9\@xs, .flex\@lg > .order-9\@xs, .flex\@xl > .order-9\@xs, .flex\@2xl > .order-9\@xs {
|
|
967
825
|
order: 9;
|
|
968
826
|
}
|
|
969
827
|
.flex > .fill-10\@xs, .flex\@xs > .fill-10\@xs, .flex\@sm > .fill-10\@xs, .flex\@md > .fill-10\@xs, .flex\@lg > .fill-10\@xs, .flex\@xl > .fill-10\@xs, .flex\@2xl > .fill-10\@xs {
|
|
970
|
-
flex: 0 0 83.3333333333
|
|
828
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
971
829
|
}
|
|
972
830
|
.flex > .order-10\@xs, .flex\@xs > .order-10\@xs, .flex\@sm > .order-10\@xs, .flex\@md > .order-10\@xs, .flex\@lg > .order-10\@xs, .flex\@xl > .order-10\@xs, .flex\@2xl > .order-10\@xs {
|
|
973
831
|
order: 10;
|
|
974
832
|
}
|
|
975
833
|
.flex > .fill-11\@xs, .flex\@xs > .fill-11\@xs, .flex\@sm > .fill-11\@xs, .flex\@md > .fill-11\@xs, .flex\@lg > .fill-11\@xs, .flex\@xl > .fill-11\@xs, .flex\@2xl > .fill-11\@xs {
|
|
976
|
-
flex: 0 0 91.6666666667
|
|
834
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
977
835
|
}
|
|
978
836
|
.flex > .order-11\@xs, .flex\@xs > .order-11\@xs, .flex\@sm > .order-11\@xs, .flex\@md > .order-11\@xs, .flex\@lg > .order-11\@xs, .flex\@xl > .order-11\@xs, .flex\@2xl > .order-11\@xs {
|
|
979
837
|
order: 11;
|
|
980
838
|
}
|
|
981
839
|
.flex > .fill-12\@xs, .flex\@xs > .fill-12\@xs, .flex\@sm > .fill-12\@xs, .flex\@md > .fill-12\@xs, .flex\@lg > .fill-12\@xs, .flex\@xl > .fill-12\@xs, .flex\@2xl > .fill-12\@xs {
|
|
982
|
-
flex: 0 0 100
|
|
840
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
983
841
|
}
|
|
984
842
|
.flex > .order-12\@xs, .flex\@xs > .order-12\@xs, .flex\@sm > .order-12\@xs, .flex\@md > .order-12\@xs, .flex\@lg > .order-12\@xs, .flex\@xl > .order-12\@xs, .flex\@2xl > .order-12\@xs {
|
|
985
843
|
order: 12;
|
|
986
844
|
}
|
|
987
|
-
.flex.inline\@xs,
|
|
988
|
-
.flex\@xs.inline\@xs {
|
|
989
|
-
display: inline-flex;
|
|
990
|
-
}
|
|
991
845
|
}
|
|
992
846
|
@media (min-width: 640px) {
|
|
993
847
|
.flex.row\@sm, .flex\@xs.row\@sm, .flex\@sm.row\@sm, .flex\@md.row\@sm, .flex\@lg.row\@sm, .flex\@xl.row\@sm, .flex\@2xl.row\@sm {
|
|
@@ -1117,81 +971,77 @@ code {
|
|
|
1117
971
|
align-self: auto;
|
|
1118
972
|
}
|
|
1119
973
|
.flex > .fill-1\@sm, .flex\@xs > .fill-1\@sm, .flex\@sm > .fill-1\@sm, .flex\@md > .fill-1\@sm, .flex\@lg > .fill-1\@sm, .flex\@xl > .fill-1\@sm, .flex\@2xl > .fill-1\@sm {
|
|
1120
|
-
flex: 0 0 8.3333333333
|
|
974
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
1121
975
|
}
|
|
1122
976
|
.flex > .order-1\@sm, .flex\@xs > .order-1\@sm, .flex\@sm > .order-1\@sm, .flex\@md > .order-1\@sm, .flex\@lg > .order-1\@sm, .flex\@xl > .order-1\@sm, .flex\@2xl > .order-1\@sm {
|
|
1123
977
|
order: 1;
|
|
1124
978
|
}
|
|
1125
979
|
.flex > .fill-2\@sm, .flex\@xs > .fill-2\@sm, .flex\@sm > .fill-2\@sm, .flex\@md > .fill-2\@sm, .flex\@lg > .fill-2\@sm, .flex\@xl > .fill-2\@sm, .flex\@2xl > .fill-2\@sm {
|
|
1126
|
-
flex: 0 0 16.6666666667
|
|
980
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
1127
981
|
}
|
|
1128
982
|
.flex > .order-2\@sm, .flex\@xs > .order-2\@sm, .flex\@sm > .order-2\@sm, .flex\@md > .order-2\@sm, .flex\@lg > .order-2\@sm, .flex\@xl > .order-2\@sm, .flex\@2xl > .order-2\@sm {
|
|
1129
983
|
order: 2;
|
|
1130
984
|
}
|
|
1131
985
|
.flex > .fill-3\@sm, .flex\@xs > .fill-3\@sm, .flex\@sm > .fill-3\@sm, .flex\@md > .fill-3\@sm, .flex\@lg > .fill-3\@sm, .flex\@xl > .fill-3\@sm, .flex\@2xl > .fill-3\@sm {
|
|
1132
|
-
flex: 0 0 25
|
|
986
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
1133
987
|
}
|
|
1134
988
|
.flex > .order-3\@sm, .flex\@xs > .order-3\@sm, .flex\@sm > .order-3\@sm, .flex\@md > .order-3\@sm, .flex\@lg > .order-3\@sm, .flex\@xl > .order-3\@sm, .flex\@2xl > .order-3\@sm {
|
|
1135
989
|
order: 3;
|
|
1136
990
|
}
|
|
1137
991
|
.flex > .fill-4\@sm, .flex\@xs > .fill-4\@sm, .flex\@sm > .fill-4\@sm, .flex\@md > .fill-4\@sm, .flex\@lg > .fill-4\@sm, .flex\@xl > .fill-4\@sm, .flex\@2xl > .fill-4\@sm {
|
|
1138
|
-
flex: 0 0 33.3333333333
|
|
992
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
1139
993
|
}
|
|
1140
994
|
.flex > .order-4\@sm, .flex\@xs > .order-4\@sm, .flex\@sm > .order-4\@sm, .flex\@md > .order-4\@sm, .flex\@lg > .order-4\@sm, .flex\@xl > .order-4\@sm, .flex\@2xl > .order-4\@sm {
|
|
1141
995
|
order: 4;
|
|
1142
996
|
}
|
|
1143
997
|
.flex > .fill-5\@sm, .flex\@xs > .fill-5\@sm, .flex\@sm > .fill-5\@sm, .flex\@md > .fill-5\@sm, .flex\@lg > .fill-5\@sm, .flex\@xl > .fill-5\@sm, .flex\@2xl > .fill-5\@sm {
|
|
1144
|
-
flex: 0 0 41.6666666667
|
|
998
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
1145
999
|
}
|
|
1146
1000
|
.flex > .order-5\@sm, .flex\@xs > .order-5\@sm, .flex\@sm > .order-5\@sm, .flex\@md > .order-5\@sm, .flex\@lg > .order-5\@sm, .flex\@xl > .order-5\@sm, .flex\@2xl > .order-5\@sm {
|
|
1147
1001
|
order: 5;
|
|
1148
1002
|
}
|
|
1149
1003
|
.flex > .fill-6\@sm, .flex\@xs > .fill-6\@sm, .flex\@sm > .fill-6\@sm, .flex\@md > .fill-6\@sm, .flex\@lg > .fill-6\@sm, .flex\@xl > .fill-6\@sm, .flex\@2xl > .fill-6\@sm {
|
|
1150
|
-
flex: 0 0 50
|
|
1004
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
1151
1005
|
}
|
|
1152
1006
|
.flex > .order-6\@sm, .flex\@xs > .order-6\@sm, .flex\@sm > .order-6\@sm, .flex\@md > .order-6\@sm, .flex\@lg > .order-6\@sm, .flex\@xl > .order-6\@sm, .flex\@2xl > .order-6\@sm {
|
|
1153
1007
|
order: 6;
|
|
1154
1008
|
}
|
|
1155
1009
|
.flex > .fill-7\@sm, .flex\@xs > .fill-7\@sm, .flex\@sm > .fill-7\@sm, .flex\@md > .fill-7\@sm, .flex\@lg > .fill-7\@sm, .flex\@xl > .fill-7\@sm, .flex\@2xl > .fill-7\@sm {
|
|
1156
|
-
flex: 0 0 58.3333333333
|
|
1010
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
1157
1011
|
}
|
|
1158
1012
|
.flex > .order-7\@sm, .flex\@xs > .order-7\@sm, .flex\@sm > .order-7\@sm, .flex\@md > .order-7\@sm, .flex\@lg > .order-7\@sm, .flex\@xl > .order-7\@sm, .flex\@2xl > .order-7\@sm {
|
|
1159
1013
|
order: 7;
|
|
1160
1014
|
}
|
|
1161
1015
|
.flex > .fill-8\@sm, .flex\@xs > .fill-8\@sm, .flex\@sm > .fill-8\@sm, .flex\@md > .fill-8\@sm, .flex\@lg > .fill-8\@sm, .flex\@xl > .fill-8\@sm, .flex\@2xl > .fill-8\@sm {
|
|
1162
|
-
flex: 0 0 66.6666666667
|
|
1016
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
1163
1017
|
}
|
|
1164
1018
|
.flex > .order-8\@sm, .flex\@xs > .order-8\@sm, .flex\@sm > .order-8\@sm, .flex\@md > .order-8\@sm, .flex\@lg > .order-8\@sm, .flex\@xl > .order-8\@sm, .flex\@2xl > .order-8\@sm {
|
|
1165
1019
|
order: 8;
|
|
1166
1020
|
}
|
|
1167
1021
|
.flex > .fill-9\@sm, .flex\@xs > .fill-9\@sm, .flex\@sm > .fill-9\@sm, .flex\@md > .fill-9\@sm, .flex\@lg > .fill-9\@sm, .flex\@xl > .fill-9\@sm, .flex\@2xl > .fill-9\@sm {
|
|
1168
|
-
flex: 0 0 75
|
|
1022
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
1169
1023
|
}
|
|
1170
1024
|
.flex > .order-9\@sm, .flex\@xs > .order-9\@sm, .flex\@sm > .order-9\@sm, .flex\@md > .order-9\@sm, .flex\@lg > .order-9\@sm, .flex\@xl > .order-9\@sm, .flex\@2xl > .order-9\@sm {
|
|
1171
1025
|
order: 9;
|
|
1172
1026
|
}
|
|
1173
1027
|
.flex > .fill-10\@sm, .flex\@xs > .fill-10\@sm, .flex\@sm > .fill-10\@sm, .flex\@md > .fill-10\@sm, .flex\@lg > .fill-10\@sm, .flex\@xl > .fill-10\@sm, .flex\@2xl > .fill-10\@sm {
|
|
1174
|
-
flex: 0 0 83.3333333333
|
|
1028
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
1175
1029
|
}
|
|
1176
1030
|
.flex > .order-10\@sm, .flex\@xs > .order-10\@sm, .flex\@sm > .order-10\@sm, .flex\@md > .order-10\@sm, .flex\@lg > .order-10\@sm, .flex\@xl > .order-10\@sm, .flex\@2xl > .order-10\@sm {
|
|
1177
1031
|
order: 10;
|
|
1178
1032
|
}
|
|
1179
1033
|
.flex > .fill-11\@sm, .flex\@xs > .fill-11\@sm, .flex\@sm > .fill-11\@sm, .flex\@md > .fill-11\@sm, .flex\@lg > .fill-11\@sm, .flex\@xl > .fill-11\@sm, .flex\@2xl > .fill-11\@sm {
|
|
1180
|
-
flex: 0 0 91.6666666667
|
|
1034
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
1181
1035
|
}
|
|
1182
1036
|
.flex > .order-11\@sm, .flex\@xs > .order-11\@sm, .flex\@sm > .order-11\@sm, .flex\@md > .order-11\@sm, .flex\@lg > .order-11\@sm, .flex\@xl > .order-11\@sm, .flex\@2xl > .order-11\@sm {
|
|
1183
1037
|
order: 11;
|
|
1184
1038
|
}
|
|
1185
1039
|
.flex > .fill-12\@sm, .flex\@xs > .fill-12\@sm, .flex\@sm > .fill-12\@sm, .flex\@md > .fill-12\@sm, .flex\@lg > .fill-12\@sm, .flex\@xl > .fill-12\@sm, .flex\@2xl > .fill-12\@sm {
|
|
1186
|
-
flex: 0 0 100
|
|
1040
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
1187
1041
|
}
|
|
1188
1042
|
.flex > .order-12\@sm, .flex\@xs > .order-12\@sm, .flex\@sm > .order-12\@sm, .flex\@md > .order-12\@sm, .flex\@lg > .order-12\@sm, .flex\@xl > .order-12\@sm, .flex\@2xl > .order-12\@sm {
|
|
1189
1043
|
order: 12;
|
|
1190
1044
|
}
|
|
1191
|
-
.flex.inline\@sm,
|
|
1192
|
-
.flex\@sm.inline\@sm {
|
|
1193
|
-
display: inline-flex;
|
|
1194
|
-
}
|
|
1195
1045
|
}
|
|
1196
1046
|
@media (min-width: 768px) {
|
|
1197
1047
|
.flex.row\@md, .flex\@xs.row\@md, .flex\@sm.row\@md, .flex\@md.row\@md, .flex\@lg.row\@md, .flex\@xl.row\@md, .flex\@2xl.row\@md {
|
|
@@ -1321,81 +1171,77 @@ code {
|
|
|
1321
1171
|
align-self: auto;
|
|
1322
1172
|
}
|
|
1323
1173
|
.flex > .fill-1\@md, .flex\@xs > .fill-1\@md, .flex\@sm > .fill-1\@md, .flex\@md > .fill-1\@md, .flex\@lg > .fill-1\@md, .flex\@xl > .fill-1\@md, .flex\@2xl > .fill-1\@md {
|
|
1324
|
-
flex: 0 0 8.3333333333
|
|
1174
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
1325
1175
|
}
|
|
1326
1176
|
.flex > .order-1\@md, .flex\@xs > .order-1\@md, .flex\@sm > .order-1\@md, .flex\@md > .order-1\@md, .flex\@lg > .order-1\@md, .flex\@xl > .order-1\@md, .flex\@2xl > .order-1\@md {
|
|
1327
1177
|
order: 1;
|
|
1328
1178
|
}
|
|
1329
1179
|
.flex > .fill-2\@md, .flex\@xs > .fill-2\@md, .flex\@sm > .fill-2\@md, .flex\@md > .fill-2\@md, .flex\@lg > .fill-2\@md, .flex\@xl > .fill-2\@md, .flex\@2xl > .fill-2\@md {
|
|
1330
|
-
flex: 0 0 16.6666666667
|
|
1180
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
1331
1181
|
}
|
|
1332
1182
|
.flex > .order-2\@md, .flex\@xs > .order-2\@md, .flex\@sm > .order-2\@md, .flex\@md > .order-2\@md, .flex\@lg > .order-2\@md, .flex\@xl > .order-2\@md, .flex\@2xl > .order-2\@md {
|
|
1333
1183
|
order: 2;
|
|
1334
1184
|
}
|
|
1335
1185
|
.flex > .fill-3\@md, .flex\@xs > .fill-3\@md, .flex\@sm > .fill-3\@md, .flex\@md > .fill-3\@md, .flex\@lg > .fill-3\@md, .flex\@xl > .fill-3\@md, .flex\@2xl > .fill-3\@md {
|
|
1336
|
-
flex: 0 0 25
|
|
1186
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
1337
1187
|
}
|
|
1338
1188
|
.flex > .order-3\@md, .flex\@xs > .order-3\@md, .flex\@sm > .order-3\@md, .flex\@md > .order-3\@md, .flex\@lg > .order-3\@md, .flex\@xl > .order-3\@md, .flex\@2xl > .order-3\@md {
|
|
1339
1189
|
order: 3;
|
|
1340
1190
|
}
|
|
1341
1191
|
.flex > .fill-4\@md, .flex\@xs > .fill-4\@md, .flex\@sm > .fill-4\@md, .flex\@md > .fill-4\@md, .flex\@lg > .fill-4\@md, .flex\@xl > .fill-4\@md, .flex\@2xl > .fill-4\@md {
|
|
1342
|
-
flex: 0 0 33.3333333333
|
|
1192
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
1343
1193
|
}
|
|
1344
1194
|
.flex > .order-4\@md, .flex\@xs > .order-4\@md, .flex\@sm > .order-4\@md, .flex\@md > .order-4\@md, .flex\@lg > .order-4\@md, .flex\@xl > .order-4\@md, .flex\@2xl > .order-4\@md {
|
|
1345
1195
|
order: 4;
|
|
1346
1196
|
}
|
|
1347
1197
|
.flex > .fill-5\@md, .flex\@xs > .fill-5\@md, .flex\@sm > .fill-5\@md, .flex\@md > .fill-5\@md, .flex\@lg > .fill-5\@md, .flex\@xl > .fill-5\@md, .flex\@2xl > .fill-5\@md {
|
|
1348
|
-
flex: 0 0 41.6666666667
|
|
1198
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
1349
1199
|
}
|
|
1350
1200
|
.flex > .order-5\@md, .flex\@xs > .order-5\@md, .flex\@sm > .order-5\@md, .flex\@md > .order-5\@md, .flex\@lg > .order-5\@md, .flex\@xl > .order-5\@md, .flex\@2xl > .order-5\@md {
|
|
1351
1201
|
order: 5;
|
|
1352
1202
|
}
|
|
1353
1203
|
.flex > .fill-6\@md, .flex\@xs > .fill-6\@md, .flex\@sm > .fill-6\@md, .flex\@md > .fill-6\@md, .flex\@lg > .fill-6\@md, .flex\@xl > .fill-6\@md, .flex\@2xl > .fill-6\@md {
|
|
1354
|
-
flex: 0 0 50
|
|
1204
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
1355
1205
|
}
|
|
1356
1206
|
.flex > .order-6\@md, .flex\@xs > .order-6\@md, .flex\@sm > .order-6\@md, .flex\@md > .order-6\@md, .flex\@lg > .order-6\@md, .flex\@xl > .order-6\@md, .flex\@2xl > .order-6\@md {
|
|
1357
1207
|
order: 6;
|
|
1358
1208
|
}
|
|
1359
1209
|
.flex > .fill-7\@md, .flex\@xs > .fill-7\@md, .flex\@sm > .fill-7\@md, .flex\@md > .fill-7\@md, .flex\@lg > .fill-7\@md, .flex\@xl > .fill-7\@md, .flex\@2xl > .fill-7\@md {
|
|
1360
|
-
flex: 0 0 58.3333333333
|
|
1210
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
1361
1211
|
}
|
|
1362
1212
|
.flex > .order-7\@md, .flex\@xs > .order-7\@md, .flex\@sm > .order-7\@md, .flex\@md > .order-7\@md, .flex\@lg > .order-7\@md, .flex\@xl > .order-7\@md, .flex\@2xl > .order-7\@md {
|
|
1363
1213
|
order: 7;
|
|
1364
1214
|
}
|
|
1365
1215
|
.flex > .fill-8\@md, .flex\@xs > .fill-8\@md, .flex\@sm > .fill-8\@md, .flex\@md > .fill-8\@md, .flex\@lg > .fill-8\@md, .flex\@xl > .fill-8\@md, .flex\@2xl > .fill-8\@md {
|
|
1366
|
-
flex: 0 0 66.6666666667
|
|
1216
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
1367
1217
|
}
|
|
1368
1218
|
.flex > .order-8\@md, .flex\@xs > .order-8\@md, .flex\@sm > .order-8\@md, .flex\@md > .order-8\@md, .flex\@lg > .order-8\@md, .flex\@xl > .order-8\@md, .flex\@2xl > .order-8\@md {
|
|
1369
1219
|
order: 8;
|
|
1370
1220
|
}
|
|
1371
1221
|
.flex > .fill-9\@md, .flex\@xs > .fill-9\@md, .flex\@sm > .fill-9\@md, .flex\@md > .fill-9\@md, .flex\@lg > .fill-9\@md, .flex\@xl > .fill-9\@md, .flex\@2xl > .fill-9\@md {
|
|
1372
|
-
flex: 0 0 75
|
|
1222
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
1373
1223
|
}
|
|
1374
1224
|
.flex > .order-9\@md, .flex\@xs > .order-9\@md, .flex\@sm > .order-9\@md, .flex\@md > .order-9\@md, .flex\@lg > .order-9\@md, .flex\@xl > .order-9\@md, .flex\@2xl > .order-9\@md {
|
|
1375
1225
|
order: 9;
|
|
1376
1226
|
}
|
|
1377
1227
|
.flex > .fill-10\@md, .flex\@xs > .fill-10\@md, .flex\@sm > .fill-10\@md, .flex\@md > .fill-10\@md, .flex\@lg > .fill-10\@md, .flex\@xl > .fill-10\@md, .flex\@2xl > .fill-10\@md {
|
|
1378
|
-
flex: 0 0 83.3333333333
|
|
1228
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
1379
1229
|
}
|
|
1380
1230
|
.flex > .order-10\@md, .flex\@xs > .order-10\@md, .flex\@sm > .order-10\@md, .flex\@md > .order-10\@md, .flex\@lg > .order-10\@md, .flex\@xl > .order-10\@md, .flex\@2xl > .order-10\@md {
|
|
1381
1231
|
order: 10;
|
|
1382
1232
|
}
|
|
1383
1233
|
.flex > .fill-11\@md, .flex\@xs > .fill-11\@md, .flex\@sm > .fill-11\@md, .flex\@md > .fill-11\@md, .flex\@lg > .fill-11\@md, .flex\@xl > .fill-11\@md, .flex\@2xl > .fill-11\@md {
|
|
1384
|
-
flex: 0 0 91.6666666667
|
|
1234
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
1385
1235
|
}
|
|
1386
1236
|
.flex > .order-11\@md, .flex\@xs > .order-11\@md, .flex\@sm > .order-11\@md, .flex\@md > .order-11\@md, .flex\@lg > .order-11\@md, .flex\@xl > .order-11\@md, .flex\@2xl > .order-11\@md {
|
|
1387
1237
|
order: 11;
|
|
1388
1238
|
}
|
|
1389
1239
|
.flex > .fill-12\@md, .flex\@xs > .fill-12\@md, .flex\@sm > .fill-12\@md, .flex\@md > .fill-12\@md, .flex\@lg > .fill-12\@md, .flex\@xl > .fill-12\@md, .flex\@2xl > .fill-12\@md {
|
|
1390
|
-
flex: 0 0 100
|
|
1240
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
1391
1241
|
}
|
|
1392
1242
|
.flex > .order-12\@md, .flex\@xs > .order-12\@md, .flex\@sm > .order-12\@md, .flex\@md > .order-12\@md, .flex\@lg > .order-12\@md, .flex\@xl > .order-12\@md, .flex\@2xl > .order-12\@md {
|
|
1393
1243
|
order: 12;
|
|
1394
1244
|
}
|
|
1395
|
-
.flex.inline\@md,
|
|
1396
|
-
.flex\@md.inline\@md {
|
|
1397
|
-
display: inline-flex;
|
|
1398
|
-
}
|
|
1399
1245
|
}
|
|
1400
1246
|
@media (min-width: 1024px) {
|
|
1401
1247
|
.flex.row\@lg, .flex\@xs.row\@lg, .flex\@sm.row\@lg, .flex\@md.row\@lg, .flex\@lg.row\@lg, .flex\@xl.row\@lg, .flex\@2xl.row\@lg {
|
|
@@ -1525,81 +1371,77 @@ code {
|
|
|
1525
1371
|
align-self: auto;
|
|
1526
1372
|
}
|
|
1527
1373
|
.flex > .fill-1\@lg, .flex\@xs > .fill-1\@lg, .flex\@sm > .fill-1\@lg, .flex\@md > .fill-1\@lg, .flex\@lg > .fill-1\@lg, .flex\@xl > .fill-1\@lg, .flex\@2xl > .fill-1\@lg {
|
|
1528
|
-
flex: 0 0 8.3333333333
|
|
1374
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
1529
1375
|
}
|
|
1530
1376
|
.flex > .order-1\@lg, .flex\@xs > .order-1\@lg, .flex\@sm > .order-1\@lg, .flex\@md > .order-1\@lg, .flex\@lg > .order-1\@lg, .flex\@xl > .order-1\@lg, .flex\@2xl > .order-1\@lg {
|
|
1531
1377
|
order: 1;
|
|
1532
1378
|
}
|
|
1533
1379
|
.flex > .fill-2\@lg, .flex\@xs > .fill-2\@lg, .flex\@sm > .fill-2\@lg, .flex\@md > .fill-2\@lg, .flex\@lg > .fill-2\@lg, .flex\@xl > .fill-2\@lg, .flex\@2xl > .fill-2\@lg {
|
|
1534
|
-
flex: 0 0 16.6666666667
|
|
1380
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
1535
1381
|
}
|
|
1536
1382
|
.flex > .order-2\@lg, .flex\@xs > .order-2\@lg, .flex\@sm > .order-2\@lg, .flex\@md > .order-2\@lg, .flex\@lg > .order-2\@lg, .flex\@xl > .order-2\@lg, .flex\@2xl > .order-2\@lg {
|
|
1537
1383
|
order: 2;
|
|
1538
1384
|
}
|
|
1539
1385
|
.flex > .fill-3\@lg, .flex\@xs > .fill-3\@lg, .flex\@sm > .fill-3\@lg, .flex\@md > .fill-3\@lg, .flex\@lg > .fill-3\@lg, .flex\@xl > .fill-3\@lg, .flex\@2xl > .fill-3\@lg {
|
|
1540
|
-
flex: 0 0 25
|
|
1386
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
1541
1387
|
}
|
|
1542
1388
|
.flex > .order-3\@lg, .flex\@xs > .order-3\@lg, .flex\@sm > .order-3\@lg, .flex\@md > .order-3\@lg, .flex\@lg > .order-3\@lg, .flex\@xl > .order-3\@lg, .flex\@2xl > .order-3\@lg {
|
|
1543
1389
|
order: 3;
|
|
1544
1390
|
}
|
|
1545
1391
|
.flex > .fill-4\@lg, .flex\@xs > .fill-4\@lg, .flex\@sm > .fill-4\@lg, .flex\@md > .fill-4\@lg, .flex\@lg > .fill-4\@lg, .flex\@xl > .fill-4\@lg, .flex\@2xl > .fill-4\@lg {
|
|
1546
|
-
flex: 0 0 33.3333333333
|
|
1392
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
1547
1393
|
}
|
|
1548
1394
|
.flex > .order-4\@lg, .flex\@xs > .order-4\@lg, .flex\@sm > .order-4\@lg, .flex\@md > .order-4\@lg, .flex\@lg > .order-4\@lg, .flex\@xl > .order-4\@lg, .flex\@2xl > .order-4\@lg {
|
|
1549
1395
|
order: 4;
|
|
1550
1396
|
}
|
|
1551
1397
|
.flex > .fill-5\@lg, .flex\@xs > .fill-5\@lg, .flex\@sm > .fill-5\@lg, .flex\@md > .fill-5\@lg, .flex\@lg > .fill-5\@lg, .flex\@xl > .fill-5\@lg, .flex\@2xl > .fill-5\@lg {
|
|
1552
|
-
flex: 0 0 41.6666666667
|
|
1398
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
1553
1399
|
}
|
|
1554
1400
|
.flex > .order-5\@lg, .flex\@xs > .order-5\@lg, .flex\@sm > .order-5\@lg, .flex\@md > .order-5\@lg, .flex\@lg > .order-5\@lg, .flex\@xl > .order-5\@lg, .flex\@2xl > .order-5\@lg {
|
|
1555
1401
|
order: 5;
|
|
1556
1402
|
}
|
|
1557
1403
|
.flex > .fill-6\@lg, .flex\@xs > .fill-6\@lg, .flex\@sm > .fill-6\@lg, .flex\@md > .fill-6\@lg, .flex\@lg > .fill-6\@lg, .flex\@xl > .fill-6\@lg, .flex\@2xl > .fill-6\@lg {
|
|
1558
|
-
flex: 0 0 50
|
|
1404
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
1559
1405
|
}
|
|
1560
1406
|
.flex > .order-6\@lg, .flex\@xs > .order-6\@lg, .flex\@sm > .order-6\@lg, .flex\@md > .order-6\@lg, .flex\@lg > .order-6\@lg, .flex\@xl > .order-6\@lg, .flex\@2xl > .order-6\@lg {
|
|
1561
1407
|
order: 6;
|
|
1562
1408
|
}
|
|
1563
1409
|
.flex > .fill-7\@lg, .flex\@xs > .fill-7\@lg, .flex\@sm > .fill-7\@lg, .flex\@md > .fill-7\@lg, .flex\@lg > .fill-7\@lg, .flex\@xl > .fill-7\@lg, .flex\@2xl > .fill-7\@lg {
|
|
1564
|
-
flex: 0 0 58.3333333333
|
|
1410
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
1565
1411
|
}
|
|
1566
1412
|
.flex > .order-7\@lg, .flex\@xs > .order-7\@lg, .flex\@sm > .order-7\@lg, .flex\@md > .order-7\@lg, .flex\@lg > .order-7\@lg, .flex\@xl > .order-7\@lg, .flex\@2xl > .order-7\@lg {
|
|
1567
1413
|
order: 7;
|
|
1568
1414
|
}
|
|
1569
1415
|
.flex > .fill-8\@lg, .flex\@xs > .fill-8\@lg, .flex\@sm > .fill-8\@lg, .flex\@md > .fill-8\@lg, .flex\@lg > .fill-8\@lg, .flex\@xl > .fill-8\@lg, .flex\@2xl > .fill-8\@lg {
|
|
1570
|
-
flex: 0 0 66.6666666667
|
|
1416
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
1571
1417
|
}
|
|
1572
1418
|
.flex > .order-8\@lg, .flex\@xs > .order-8\@lg, .flex\@sm > .order-8\@lg, .flex\@md > .order-8\@lg, .flex\@lg > .order-8\@lg, .flex\@xl > .order-8\@lg, .flex\@2xl > .order-8\@lg {
|
|
1573
1419
|
order: 8;
|
|
1574
1420
|
}
|
|
1575
1421
|
.flex > .fill-9\@lg, .flex\@xs > .fill-9\@lg, .flex\@sm > .fill-9\@lg, .flex\@md > .fill-9\@lg, .flex\@lg > .fill-9\@lg, .flex\@xl > .fill-9\@lg, .flex\@2xl > .fill-9\@lg {
|
|
1576
|
-
flex: 0 0 75
|
|
1422
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
1577
1423
|
}
|
|
1578
1424
|
.flex > .order-9\@lg, .flex\@xs > .order-9\@lg, .flex\@sm > .order-9\@lg, .flex\@md > .order-9\@lg, .flex\@lg > .order-9\@lg, .flex\@xl > .order-9\@lg, .flex\@2xl > .order-9\@lg {
|
|
1579
1425
|
order: 9;
|
|
1580
1426
|
}
|
|
1581
1427
|
.flex > .fill-10\@lg, .flex\@xs > .fill-10\@lg, .flex\@sm > .fill-10\@lg, .flex\@md > .fill-10\@lg, .flex\@lg > .fill-10\@lg, .flex\@xl > .fill-10\@lg, .flex\@2xl > .fill-10\@lg {
|
|
1582
|
-
flex: 0 0 83.3333333333
|
|
1428
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
1583
1429
|
}
|
|
1584
1430
|
.flex > .order-10\@lg, .flex\@xs > .order-10\@lg, .flex\@sm > .order-10\@lg, .flex\@md > .order-10\@lg, .flex\@lg > .order-10\@lg, .flex\@xl > .order-10\@lg, .flex\@2xl > .order-10\@lg {
|
|
1585
1431
|
order: 10;
|
|
1586
1432
|
}
|
|
1587
1433
|
.flex > .fill-11\@lg, .flex\@xs > .fill-11\@lg, .flex\@sm > .fill-11\@lg, .flex\@md > .fill-11\@lg, .flex\@lg > .fill-11\@lg, .flex\@xl > .fill-11\@lg, .flex\@2xl > .fill-11\@lg {
|
|
1588
|
-
flex: 0 0 91.6666666667
|
|
1434
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
1589
1435
|
}
|
|
1590
1436
|
.flex > .order-11\@lg, .flex\@xs > .order-11\@lg, .flex\@sm > .order-11\@lg, .flex\@md > .order-11\@lg, .flex\@lg > .order-11\@lg, .flex\@xl > .order-11\@lg, .flex\@2xl > .order-11\@lg {
|
|
1591
1437
|
order: 11;
|
|
1592
1438
|
}
|
|
1593
1439
|
.flex > .fill-12\@lg, .flex\@xs > .fill-12\@lg, .flex\@sm > .fill-12\@lg, .flex\@md > .fill-12\@lg, .flex\@lg > .fill-12\@lg, .flex\@xl > .fill-12\@lg, .flex\@2xl > .fill-12\@lg {
|
|
1594
|
-
flex: 0 0 100
|
|
1440
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
1595
1441
|
}
|
|
1596
1442
|
.flex > .order-12\@lg, .flex\@xs > .order-12\@lg, .flex\@sm > .order-12\@lg, .flex\@md > .order-12\@lg, .flex\@lg > .order-12\@lg, .flex\@xl > .order-12\@lg, .flex\@2xl > .order-12\@lg {
|
|
1597
1443
|
order: 12;
|
|
1598
1444
|
}
|
|
1599
|
-
.flex.inline\@lg,
|
|
1600
|
-
.flex\@lg.inline\@lg {
|
|
1601
|
-
display: inline-flex;
|
|
1602
|
-
}
|
|
1603
1445
|
}
|
|
1604
1446
|
@media (min-width: 1280px) {
|
|
1605
1447
|
.flex.row\@xl, .flex\@xs.row\@xl, .flex\@sm.row\@xl, .flex\@md.row\@xl, .flex\@lg.row\@xl, .flex\@xl.row\@xl, .flex\@2xl.row\@xl {
|
|
@@ -1729,81 +1571,77 @@ code {
|
|
|
1729
1571
|
align-self: auto;
|
|
1730
1572
|
}
|
|
1731
1573
|
.flex > .fill-1\@xl, .flex\@xs > .fill-1\@xl, .flex\@sm > .fill-1\@xl, .flex\@md > .fill-1\@xl, .flex\@lg > .fill-1\@xl, .flex\@xl > .fill-1\@xl, .flex\@2xl > .fill-1\@xl {
|
|
1732
|
-
flex: 0 0 8.3333333333
|
|
1574
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
1733
1575
|
}
|
|
1734
1576
|
.flex > .order-1\@xl, .flex\@xs > .order-1\@xl, .flex\@sm > .order-1\@xl, .flex\@md > .order-1\@xl, .flex\@lg > .order-1\@xl, .flex\@xl > .order-1\@xl, .flex\@2xl > .order-1\@xl {
|
|
1735
1577
|
order: 1;
|
|
1736
1578
|
}
|
|
1737
1579
|
.flex > .fill-2\@xl, .flex\@xs > .fill-2\@xl, .flex\@sm > .fill-2\@xl, .flex\@md > .fill-2\@xl, .flex\@lg > .fill-2\@xl, .flex\@xl > .fill-2\@xl, .flex\@2xl > .fill-2\@xl {
|
|
1738
|
-
flex: 0 0 16.6666666667
|
|
1580
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
1739
1581
|
}
|
|
1740
1582
|
.flex > .order-2\@xl, .flex\@xs > .order-2\@xl, .flex\@sm > .order-2\@xl, .flex\@md > .order-2\@xl, .flex\@lg > .order-2\@xl, .flex\@xl > .order-2\@xl, .flex\@2xl > .order-2\@xl {
|
|
1741
1583
|
order: 2;
|
|
1742
1584
|
}
|
|
1743
1585
|
.flex > .fill-3\@xl, .flex\@xs > .fill-3\@xl, .flex\@sm > .fill-3\@xl, .flex\@md > .fill-3\@xl, .flex\@lg > .fill-3\@xl, .flex\@xl > .fill-3\@xl, .flex\@2xl > .fill-3\@xl {
|
|
1744
|
-
flex: 0 0 25
|
|
1586
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
1745
1587
|
}
|
|
1746
1588
|
.flex > .order-3\@xl, .flex\@xs > .order-3\@xl, .flex\@sm > .order-3\@xl, .flex\@md > .order-3\@xl, .flex\@lg > .order-3\@xl, .flex\@xl > .order-3\@xl, .flex\@2xl > .order-3\@xl {
|
|
1747
1589
|
order: 3;
|
|
1748
1590
|
}
|
|
1749
1591
|
.flex > .fill-4\@xl, .flex\@xs > .fill-4\@xl, .flex\@sm > .fill-4\@xl, .flex\@md > .fill-4\@xl, .flex\@lg > .fill-4\@xl, .flex\@xl > .fill-4\@xl, .flex\@2xl > .fill-4\@xl {
|
|
1750
|
-
flex: 0 0 33.3333333333
|
|
1592
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
1751
1593
|
}
|
|
1752
1594
|
.flex > .order-4\@xl, .flex\@xs > .order-4\@xl, .flex\@sm > .order-4\@xl, .flex\@md > .order-4\@xl, .flex\@lg > .order-4\@xl, .flex\@xl > .order-4\@xl, .flex\@2xl > .order-4\@xl {
|
|
1753
1595
|
order: 4;
|
|
1754
1596
|
}
|
|
1755
1597
|
.flex > .fill-5\@xl, .flex\@xs > .fill-5\@xl, .flex\@sm > .fill-5\@xl, .flex\@md > .fill-5\@xl, .flex\@lg > .fill-5\@xl, .flex\@xl > .fill-5\@xl, .flex\@2xl > .fill-5\@xl {
|
|
1756
|
-
flex: 0 0 41.6666666667
|
|
1598
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
1757
1599
|
}
|
|
1758
1600
|
.flex > .order-5\@xl, .flex\@xs > .order-5\@xl, .flex\@sm > .order-5\@xl, .flex\@md > .order-5\@xl, .flex\@lg > .order-5\@xl, .flex\@xl > .order-5\@xl, .flex\@2xl > .order-5\@xl {
|
|
1759
1601
|
order: 5;
|
|
1760
1602
|
}
|
|
1761
1603
|
.flex > .fill-6\@xl, .flex\@xs > .fill-6\@xl, .flex\@sm > .fill-6\@xl, .flex\@md > .fill-6\@xl, .flex\@lg > .fill-6\@xl, .flex\@xl > .fill-6\@xl, .flex\@2xl > .fill-6\@xl {
|
|
1762
|
-
flex: 0 0 50
|
|
1604
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
1763
1605
|
}
|
|
1764
1606
|
.flex > .order-6\@xl, .flex\@xs > .order-6\@xl, .flex\@sm > .order-6\@xl, .flex\@md > .order-6\@xl, .flex\@lg > .order-6\@xl, .flex\@xl > .order-6\@xl, .flex\@2xl > .order-6\@xl {
|
|
1765
1607
|
order: 6;
|
|
1766
1608
|
}
|
|
1767
1609
|
.flex > .fill-7\@xl, .flex\@xs > .fill-7\@xl, .flex\@sm > .fill-7\@xl, .flex\@md > .fill-7\@xl, .flex\@lg > .fill-7\@xl, .flex\@xl > .fill-7\@xl, .flex\@2xl > .fill-7\@xl {
|
|
1768
|
-
flex: 0 0 58.3333333333
|
|
1610
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
1769
1611
|
}
|
|
1770
1612
|
.flex > .order-7\@xl, .flex\@xs > .order-7\@xl, .flex\@sm > .order-7\@xl, .flex\@md > .order-7\@xl, .flex\@lg > .order-7\@xl, .flex\@xl > .order-7\@xl, .flex\@2xl > .order-7\@xl {
|
|
1771
1613
|
order: 7;
|
|
1772
1614
|
}
|
|
1773
1615
|
.flex > .fill-8\@xl, .flex\@xs > .fill-8\@xl, .flex\@sm > .fill-8\@xl, .flex\@md > .fill-8\@xl, .flex\@lg > .fill-8\@xl, .flex\@xl > .fill-8\@xl, .flex\@2xl > .fill-8\@xl {
|
|
1774
|
-
flex: 0 0 66.6666666667
|
|
1616
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
1775
1617
|
}
|
|
1776
1618
|
.flex > .order-8\@xl, .flex\@xs > .order-8\@xl, .flex\@sm > .order-8\@xl, .flex\@md > .order-8\@xl, .flex\@lg > .order-8\@xl, .flex\@xl > .order-8\@xl, .flex\@2xl > .order-8\@xl {
|
|
1777
1619
|
order: 8;
|
|
1778
1620
|
}
|
|
1779
1621
|
.flex > .fill-9\@xl, .flex\@xs > .fill-9\@xl, .flex\@sm > .fill-9\@xl, .flex\@md > .fill-9\@xl, .flex\@lg > .fill-9\@xl, .flex\@xl > .fill-9\@xl, .flex\@2xl > .fill-9\@xl {
|
|
1780
|
-
flex: 0 0 75
|
|
1622
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
1781
1623
|
}
|
|
1782
1624
|
.flex > .order-9\@xl, .flex\@xs > .order-9\@xl, .flex\@sm > .order-9\@xl, .flex\@md > .order-9\@xl, .flex\@lg > .order-9\@xl, .flex\@xl > .order-9\@xl, .flex\@2xl > .order-9\@xl {
|
|
1783
1625
|
order: 9;
|
|
1784
1626
|
}
|
|
1785
1627
|
.flex > .fill-10\@xl, .flex\@xs > .fill-10\@xl, .flex\@sm > .fill-10\@xl, .flex\@md > .fill-10\@xl, .flex\@lg > .fill-10\@xl, .flex\@xl > .fill-10\@xl, .flex\@2xl > .fill-10\@xl {
|
|
1786
|
-
flex: 0 0 83.3333333333
|
|
1628
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
1787
1629
|
}
|
|
1788
1630
|
.flex > .order-10\@xl, .flex\@xs > .order-10\@xl, .flex\@sm > .order-10\@xl, .flex\@md > .order-10\@xl, .flex\@lg > .order-10\@xl, .flex\@xl > .order-10\@xl, .flex\@2xl > .order-10\@xl {
|
|
1789
1631
|
order: 10;
|
|
1790
1632
|
}
|
|
1791
1633
|
.flex > .fill-11\@xl, .flex\@xs > .fill-11\@xl, .flex\@sm > .fill-11\@xl, .flex\@md > .fill-11\@xl, .flex\@lg > .fill-11\@xl, .flex\@xl > .fill-11\@xl, .flex\@2xl > .fill-11\@xl {
|
|
1792
|
-
flex: 0 0 91.6666666667
|
|
1634
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
1793
1635
|
}
|
|
1794
1636
|
.flex > .order-11\@xl, .flex\@xs > .order-11\@xl, .flex\@sm > .order-11\@xl, .flex\@md > .order-11\@xl, .flex\@lg > .order-11\@xl, .flex\@xl > .order-11\@xl, .flex\@2xl > .order-11\@xl {
|
|
1795
1637
|
order: 11;
|
|
1796
1638
|
}
|
|
1797
1639
|
.flex > .fill-12\@xl, .flex\@xs > .fill-12\@xl, .flex\@sm > .fill-12\@xl, .flex\@md > .fill-12\@xl, .flex\@lg > .fill-12\@xl, .flex\@xl > .fill-12\@xl, .flex\@2xl > .fill-12\@xl {
|
|
1798
|
-
flex: 0 0 100
|
|
1640
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
1799
1641
|
}
|
|
1800
1642
|
.flex > .order-12\@xl, .flex\@xs > .order-12\@xl, .flex\@sm > .order-12\@xl, .flex\@md > .order-12\@xl, .flex\@lg > .order-12\@xl, .flex\@xl > .order-12\@xl, .flex\@2xl > .order-12\@xl {
|
|
1801
1643
|
order: 12;
|
|
1802
1644
|
}
|
|
1803
|
-
.flex.inline\@xl,
|
|
1804
|
-
.flex\@xl.inline\@xl {
|
|
1805
|
-
display: inline-flex;
|
|
1806
|
-
}
|
|
1807
1645
|
}
|
|
1808
1646
|
@media (min-width: 1536px) {
|
|
1809
1647
|
.flex.row\@2xl, .flex\@xs.row\@2xl, .flex\@sm.row\@2xl, .flex\@md.row\@2xl, .flex\@lg.row\@2xl, .flex\@xl.row\@2xl, .flex\@2xl.row\@2xl {
|
|
@@ -1933,116 +1771,77 @@ code {
|
|
|
1933
1771
|
align-self: auto;
|
|
1934
1772
|
}
|
|
1935
1773
|
.flex > .fill-1\@2xl, .flex\@xs > .fill-1\@2xl, .flex\@sm > .fill-1\@2xl, .flex\@md > .fill-1\@2xl, .flex\@lg > .fill-1\@2xl, .flex\@xl > .fill-1\@2xl, .flex\@2xl > .fill-1\@2xl {
|
|
1936
|
-
flex: 0 0 8.3333333333
|
|
1774
|
+
flex: 0 0 calc(8.3333333333% - calc(var(--flex-gap, 0px) * 11 / 12));
|
|
1937
1775
|
}
|
|
1938
1776
|
.flex > .order-1\@2xl, .flex\@xs > .order-1\@2xl, .flex\@sm > .order-1\@2xl, .flex\@md > .order-1\@2xl, .flex\@lg > .order-1\@2xl, .flex\@xl > .order-1\@2xl, .flex\@2xl > .order-1\@2xl {
|
|
1939
1777
|
order: 1;
|
|
1940
1778
|
}
|
|
1941
1779
|
.flex > .fill-2\@2xl, .flex\@xs > .fill-2\@2xl, .flex\@sm > .fill-2\@2xl, .flex\@md > .fill-2\@2xl, .flex\@lg > .fill-2\@2xl, .flex\@xl > .fill-2\@2xl, .flex\@2xl > .fill-2\@2xl {
|
|
1942
|
-
flex: 0 0 16.6666666667
|
|
1780
|
+
flex: 0 0 calc(16.6666666667% - calc(var(--flex-gap, 0px) * 5 / 6));
|
|
1943
1781
|
}
|
|
1944
1782
|
.flex > .order-2\@2xl, .flex\@xs > .order-2\@2xl, .flex\@sm > .order-2\@2xl, .flex\@md > .order-2\@2xl, .flex\@lg > .order-2\@2xl, .flex\@xl > .order-2\@2xl, .flex\@2xl > .order-2\@2xl {
|
|
1945
1783
|
order: 2;
|
|
1946
1784
|
}
|
|
1947
1785
|
.flex > .fill-3\@2xl, .flex\@xs > .fill-3\@2xl, .flex\@sm > .fill-3\@2xl, .flex\@md > .fill-3\@2xl, .flex\@lg > .fill-3\@2xl, .flex\@xl > .fill-3\@2xl, .flex\@2xl > .fill-3\@2xl {
|
|
1948
|
-
flex: 0 0 25
|
|
1786
|
+
flex: 0 0 calc(25% - calc(var(--flex-gap, 0px) * 3 / 4));
|
|
1949
1787
|
}
|
|
1950
1788
|
.flex > .order-3\@2xl, .flex\@xs > .order-3\@2xl, .flex\@sm > .order-3\@2xl, .flex\@md > .order-3\@2xl, .flex\@lg > .order-3\@2xl, .flex\@xl > .order-3\@2xl, .flex\@2xl > .order-3\@2xl {
|
|
1951
1789
|
order: 3;
|
|
1952
1790
|
}
|
|
1953
1791
|
.flex > .fill-4\@2xl, .flex\@xs > .fill-4\@2xl, .flex\@sm > .fill-4\@2xl, .flex\@md > .fill-4\@2xl, .flex\@lg > .fill-4\@2xl, .flex\@xl > .fill-4\@2xl, .flex\@2xl > .fill-4\@2xl {
|
|
1954
|
-
flex: 0 0 33.3333333333
|
|
1792
|
+
flex: 0 0 calc(33.3333333333% - calc(var(--flex-gap, 0px) * 2 / 3));
|
|
1955
1793
|
}
|
|
1956
1794
|
.flex > .order-4\@2xl, .flex\@xs > .order-4\@2xl, .flex\@sm > .order-4\@2xl, .flex\@md > .order-4\@2xl, .flex\@lg > .order-4\@2xl, .flex\@xl > .order-4\@2xl, .flex\@2xl > .order-4\@2xl {
|
|
1957
1795
|
order: 4;
|
|
1958
1796
|
}
|
|
1959
1797
|
.flex > .fill-5\@2xl, .flex\@xs > .fill-5\@2xl, .flex\@sm > .fill-5\@2xl, .flex\@md > .fill-5\@2xl, .flex\@lg > .fill-5\@2xl, .flex\@xl > .fill-5\@2xl, .flex\@2xl > .fill-5\@2xl {
|
|
1960
|
-
flex: 0 0 41.6666666667
|
|
1798
|
+
flex: 0 0 calc(41.6666666667% - calc(var(--flex-gap, 0px) * 1.4 / 2.4));
|
|
1961
1799
|
}
|
|
1962
1800
|
.flex > .order-5\@2xl, .flex\@xs > .order-5\@2xl, .flex\@sm > .order-5\@2xl, .flex\@md > .order-5\@2xl, .flex\@lg > .order-5\@2xl, .flex\@xl > .order-5\@2xl, .flex\@2xl > .order-5\@2xl {
|
|
1963
1801
|
order: 5;
|
|
1964
1802
|
}
|
|
1965
1803
|
.flex > .fill-6\@2xl, .flex\@xs > .fill-6\@2xl, .flex\@sm > .fill-6\@2xl, .flex\@md > .fill-6\@2xl, .flex\@lg > .fill-6\@2xl, .flex\@xl > .fill-6\@2xl, .flex\@2xl > .fill-6\@2xl {
|
|
1966
|
-
flex: 0 0 50
|
|
1804
|
+
flex: 0 0 calc(50% - calc(var(--flex-gap, 0px) * 1 / 2));
|
|
1967
1805
|
}
|
|
1968
1806
|
.flex > .order-6\@2xl, .flex\@xs > .order-6\@2xl, .flex\@sm > .order-6\@2xl, .flex\@md > .order-6\@2xl, .flex\@lg > .order-6\@2xl, .flex\@xl > .order-6\@2xl, .flex\@2xl > .order-6\@2xl {
|
|
1969
1807
|
order: 6;
|
|
1970
1808
|
}
|
|
1971
1809
|
.flex > .fill-7\@2xl, .flex\@xs > .fill-7\@2xl, .flex\@sm > .fill-7\@2xl, .flex\@md > .fill-7\@2xl, .flex\@lg > .fill-7\@2xl, .flex\@xl > .fill-7\@2xl, .flex\@2xl > .fill-7\@2xl {
|
|
1972
|
-
flex: 0 0 58.3333333333
|
|
1810
|
+
flex: 0 0 calc(58.3333333333% - calc(var(--flex-gap, 0px) * 0.7142857143 / 1.7142857143));
|
|
1973
1811
|
}
|
|
1974
1812
|
.flex > .order-7\@2xl, .flex\@xs > .order-7\@2xl, .flex\@sm > .order-7\@2xl, .flex\@md > .order-7\@2xl, .flex\@lg > .order-7\@2xl, .flex\@xl > .order-7\@2xl, .flex\@2xl > .order-7\@2xl {
|
|
1975
1813
|
order: 7;
|
|
1976
1814
|
}
|
|
1977
1815
|
.flex > .fill-8\@2xl, .flex\@xs > .fill-8\@2xl, .flex\@sm > .fill-8\@2xl, .flex\@md > .fill-8\@2xl, .flex\@lg > .fill-8\@2xl, .flex\@xl > .fill-8\@2xl, .flex\@2xl > .fill-8\@2xl {
|
|
1978
|
-
flex: 0 0 66.6666666667
|
|
1816
|
+
flex: 0 0 calc(66.6666666667% - calc(var(--flex-gap, 0px) * 0.5 / 1.5));
|
|
1979
1817
|
}
|
|
1980
1818
|
.flex > .order-8\@2xl, .flex\@xs > .order-8\@2xl, .flex\@sm > .order-8\@2xl, .flex\@md > .order-8\@2xl, .flex\@lg > .order-8\@2xl, .flex\@xl > .order-8\@2xl, .flex\@2xl > .order-8\@2xl {
|
|
1981
1819
|
order: 8;
|
|
1982
1820
|
}
|
|
1983
1821
|
.flex > .fill-9\@2xl, .flex\@xs > .fill-9\@2xl, .flex\@sm > .fill-9\@2xl, .flex\@md > .fill-9\@2xl, .flex\@lg > .fill-9\@2xl, .flex\@xl > .fill-9\@2xl, .flex\@2xl > .fill-9\@2xl {
|
|
1984
|
-
flex: 0 0 75
|
|
1822
|
+
flex: 0 0 calc(75% - calc(var(--flex-gap, 0px) * 0.3333333333 / 1.3333333333));
|
|
1985
1823
|
}
|
|
1986
1824
|
.flex > .order-9\@2xl, .flex\@xs > .order-9\@2xl, .flex\@sm > .order-9\@2xl, .flex\@md > .order-9\@2xl, .flex\@lg > .order-9\@2xl, .flex\@xl > .order-9\@2xl, .flex\@2xl > .order-9\@2xl {
|
|
1987
1825
|
order: 9;
|
|
1988
1826
|
}
|
|
1989
1827
|
.flex > .fill-10\@2xl, .flex\@xs > .fill-10\@2xl, .flex\@sm > .fill-10\@2xl, .flex\@md > .fill-10\@2xl, .flex\@lg > .fill-10\@2xl, .flex\@xl > .fill-10\@2xl, .flex\@2xl > .fill-10\@2xl {
|
|
1990
|
-
flex: 0 0 83.3333333333
|
|
1828
|
+
flex: 0 0 calc(83.3333333333% - calc(var(--flex-gap, 0px) * 0.2 / 1.2));
|
|
1991
1829
|
}
|
|
1992
1830
|
.flex > .order-10\@2xl, .flex\@xs > .order-10\@2xl, .flex\@sm > .order-10\@2xl, .flex\@md > .order-10\@2xl, .flex\@lg > .order-10\@2xl, .flex\@xl > .order-10\@2xl, .flex\@2xl > .order-10\@2xl {
|
|
1993
1831
|
order: 10;
|
|
1994
1832
|
}
|
|
1995
1833
|
.flex > .fill-11\@2xl, .flex\@xs > .fill-11\@2xl, .flex\@sm > .fill-11\@2xl, .flex\@md > .fill-11\@2xl, .flex\@lg > .fill-11\@2xl, .flex\@xl > .fill-11\@2xl, .flex\@2xl > .fill-11\@2xl {
|
|
1996
|
-
flex: 0 0 91.6666666667
|
|
1834
|
+
flex: 0 0 calc(91.6666666667% - calc(var(--flex-gap, 0px) * 0.0909090909 / 1.0909090909));
|
|
1997
1835
|
}
|
|
1998
1836
|
.flex > .order-11\@2xl, .flex\@xs > .order-11\@2xl, .flex\@sm > .order-11\@2xl, .flex\@md > .order-11\@2xl, .flex\@lg > .order-11\@2xl, .flex\@xl > .order-11\@2xl, .flex\@2xl > .order-11\@2xl {
|
|
1999
1837
|
order: 11;
|
|
2000
1838
|
}
|
|
2001
1839
|
.flex > .fill-12\@2xl, .flex\@xs > .fill-12\@2xl, .flex\@sm > .fill-12\@2xl, .flex\@md > .fill-12\@2xl, .flex\@lg > .fill-12\@2xl, .flex\@xl > .fill-12\@2xl, .flex\@2xl > .fill-12\@2xl {
|
|
2002
|
-
flex: 0 0 100
|
|
1840
|
+
flex: 0 0 calc(100% - calc(var(--flex-gap, 0px) * 0 / 1));
|
|
2003
1841
|
}
|
|
2004
1842
|
.flex > .order-12\@2xl, .flex\@xs > .order-12\@2xl, .flex\@sm > .order-12\@2xl, .flex\@md > .order-12\@2xl, .flex\@lg > .order-12\@2xl, .flex\@xl > .order-12\@2xl, .flex\@2xl > .order-12\@2xl {
|
|
2005
1843
|
order: 12;
|
|
2006
1844
|
}
|
|
2007
|
-
.flex.inline\@2xl,
|
|
2008
|
-
.flex\@2xl.inline\@2xl {
|
|
2009
|
-
display: inline-flex;
|
|
2010
|
-
}
|
|
2011
|
-
}
|
|
2012
|
-
/**
|
|
2013
|
-
* @description Establishes a grid container.
|
|
2014
|
-
*/
|
|
2015
|
-
/**
|
|
2016
|
-
* @description Establishes a inline-grid container.
|
|
2017
|
-
*/
|
|
2018
|
-
/**
|
|
2019
|
-
* @description Establishes a grid container with a specified number of columns.
|
|
2020
|
-
* @param {number} $count - The number of columns.
|
|
2021
|
-
|
|
2022
|
-
/// EXAMPLE USAGE
|
|
2023
|
-
.custom-grid {
|
|
2024
|
-
display: grid;
|
|
2025
|
-
@include cols-custom("1fr_auto_1fr");
|
|
2026
|
-
}
|
|
2027
|
-
|
|
2028
|
-
*/
|
|
2029
|
-
/**
|
|
2030
|
-
* @description justify-items container.
|
|
2031
|
-
* @param {string} $value - The value for the justify-items property.
|
|
2032
|
-
*/
|
|
2033
|
-
/**
|
|
2034
|
-
* @description Establishes a align-items container.
|
|
2035
|
-
* @param {string} $value - The value for the align-items property.
|
|
2036
|
-
*/
|
|
2037
|
-
/**
|
|
2038
|
-
* @description Establishes a place-items container.
|
|
2039
|
-
* @param {string} $value - The value for the place-items property.
|
|
2040
|
-
*/
|
|
2041
|
-
.grid, .grid\@xs, .grid\@sm, .grid\@md, .grid\@lg, .grid\@xl, .grid\@2xl {
|
|
2042
|
-
display: grid;
|
|
2043
|
-
}
|
|
2044
|
-
.grid.inline, .grid\@xs.inline, .grid\@sm.inline, .grid\@md.inline, .grid\@lg.inline, .grid\@xl.inline, .grid\@2xl.inline {
|
|
2045
|
-
display: inline-grid;
|
|
2046
1845
|
}
|
|
2047
1846
|
.grid.auto-fit-xs, .grid\@xs.auto-fit-xs, .grid\@sm.auto-fit-xs, .grid\@md.auto-fit-xs, .grid\@lg.auto-fit-xs, .grid\@xl.auto-fit-xs, .grid\@2xl.auto-fit-xs {
|
|
2048
1847
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
@@ -3356,72 +3155,6 @@ code {
|
|
|
3356
3155
|
place-items: stretch;
|
|
3357
3156
|
}
|
|
3358
3157
|
}
|
|
3359
|
-
/**
|
|
3360
|
-
* @component Opacity
|
|
3361
|
-
* @description Controls element transparency with customizable opacity values and interactive states
|
|
3362
|
-
*
|
|
3363
|
-
* @example
|
|
3364
|
-
* <!-- Basic opacity -->
|
|
3365
|
-
* <div class="opacity-50">This element has 50% opacity</div>
|
|
3366
|
-
*
|
|
3367
|
-
* <!-- Responsive opacity -->
|
|
3368
|
-
* <div class="opacity-100 opacity-50@md">
|
|
3369
|
-
* 100% opacity by default, 50% on medium screens and up
|
|
3370
|
-
* </div>
|
|
3371
|
-
*
|
|
3372
|
-
* <!-- Interactive states -->
|
|
3373
|
-
* <div class="opacity-50 hover:opacity-100">
|
|
3374
|
-
* 50% opacity, becomes fully visible on hover
|
|
3375
|
-
* </div>
|
|
3376
|
-
*
|
|
3377
|
-
* <button class="opacity-70 focus:opacity-100">
|
|
3378
|
-
* 70% opacity, fully visible when focused
|
|
3379
|
-
* </button>
|
|
3380
|
-
*
|
|
3381
|
-
* <div class="opacity-75 active:opacity-100">
|
|
3382
|
-
* 75% opacity, fully visible when clicked/active
|
|
3383
|
-
* </div>
|
|
3384
|
-
*
|
|
3385
|
-
* <!-- Group hover effect -->
|
|
3386
|
-
* <div class="group">
|
|
3387
|
-
* <h3>Parent element with "group" class</h3>
|
|
3388
|
-
* <div class="opacity-0 group-hover:opacity-100">
|
|
3389
|
-
* Hidden by default, visible when parent is hovered
|
|
3390
|
-
* </div>
|
|
3391
|
-
* </div>
|
|
3392
|
-
*
|
|
3393
|
-
* <!-- With transition -->
|
|
3394
|
-
* <div class="opacity-50 hover:opacity-100 transition-opacity">
|
|
3395
|
-
* Smooth opacity transition on hover
|
|
3396
|
-
* </div>
|
|
3397
|
-
*
|
|
3398
|
-
* @classes
|
|
3399
|
-
* Base:
|
|
3400
|
-
* - opacity-{value}: Sets element opacity (0-100%)
|
|
3401
|
-
* Values: 0, 5, 10, 20, 25, 30, 40, 50, 60, 70, 75, 80, 90, 100
|
|
3402
|
-
*
|
|
3403
|
-
* Interactive States:
|
|
3404
|
-
* - hover:opacity-{value}: Changes opacity on mouse hover
|
|
3405
|
-
* - focus:opacity-{value}: Changes opacity when element receives focus
|
|
3406
|
-
* - active:opacity-{value}: Changes opacity when element is active/pressed
|
|
3407
|
-
* - group-hover:opacity-{value}: Changes opacity when parent with .group class is hovered
|
|
3408
|
-
*
|
|
3409
|
-
* Animation:
|
|
3410
|
-
* - transition-opacity: Adds smooth transition when opacity changes
|
|
3411
|
-
*
|
|
3412
|
-
* @responsive
|
|
3413
|
-
* All opacity classes support responsive variants using @breakpoint suffix:
|
|
3414
|
-
* - opacity-50@sm: 50% opacity on small screens and up
|
|
3415
|
-
* - hover:opacity-100@md: Full opacity on hover for medium screens and up
|
|
3416
|
-
*
|
|
3417
|
-
* Available breakpoints: xs, sm, md, lg, xl, xxl
|
|
3418
|
-
*
|
|
3419
|
-
* @customization
|
|
3420
|
-
* Opacity values are defined in the $percentages variable
|
|
3421
|
-
* Transition timing can be customized via CSS variables
|
|
3422
|
-
*
|
|
3423
|
-
* @see transitions
|
|
3424
|
-
*/
|
|
3425
3158
|
.opacity-0,
|
|
3426
3159
|
.hover\:opacity-0:hover,
|
|
3427
3160
|
.focus\:opacity-0:focus,
|
|
@@ -4334,16 +4067,6 @@ code {
|
|
|
4334
4067
|
vertical-align: bottom;
|
|
4335
4068
|
}
|
|
4336
4069
|
}
|
|
4337
|
-
/**
|
|
4338
|
-
* Backdrop Filter Utilities
|
|
4339
|
-
*
|
|
4340
|
-
* Provides utility classes and mixins for backdrop-filter effects.
|
|
4341
|
-
* All utilities come with responsive variants.
|
|
4342
|
-
*
|
|
4343
|
-
* Usage:
|
|
4344
|
-
* <div class="backdrop-blur-md">Blurred backdrop</div>
|
|
4345
|
-
* <div class="backdrop-blur-lg@md">Blurred backdrop on medium screens and up</div>
|
|
4346
|
-
*/
|
|
4347
4070
|
.backdrop-layer {
|
|
4348
4071
|
--backdrop-blur: blur(0);
|
|
4349
4072
|
--backdrop-brightness: brightness(100%);
|
|
@@ -5568,194 +5291,231 @@ code {
|
|
|
5568
5291
|
backdrop-filter: blur(20px) saturate(90%) brightness(90%);
|
|
5569
5292
|
}
|
|
5570
5293
|
}
|
|
5571
|
-
/**
|
|
5572
|
-
* @description Applies border radius to all corners
|
|
5573
|
-
* @param {String} $val - The border radius value
|
|
5574
|
-
*/
|
|
5575
5294
|
.border {
|
|
5295
|
+
--border-size: 1px;
|
|
5576
5296
|
border-width: 1px;
|
|
5577
5297
|
border-style: solid;
|
|
5578
|
-
border-color: var(--border-
|
|
5298
|
+
border-color: var(--border-color);
|
|
5299
|
+
--border-style: solid;
|
|
5300
|
+
--border-color: var(--border-color);
|
|
5579
5301
|
}
|
|
5580
5302
|
|
|
5581
5303
|
.border-0 {
|
|
5304
|
+
--border-size: 0px;
|
|
5582
5305
|
border-width: 0px;
|
|
5583
5306
|
border-style: solid;
|
|
5584
|
-
border-color: var(--border-
|
|
5307
|
+
border-color: var(--border-color);
|
|
5308
|
+
--border-style: solid;
|
|
5309
|
+
--border-color: var(--border-color);
|
|
5585
5310
|
}
|
|
5586
5311
|
|
|
5587
|
-
.border-
|
|
5588
|
-
border-width:
|
|
5589
|
-
border-style: solid;
|
|
5590
|
-
border-color: var(--border-
|
|
5312
|
+
.border-t {
|
|
5313
|
+
border-top-width: 1px;
|
|
5314
|
+
border-top-style: var(--border-style, solid);
|
|
5315
|
+
border-top-color: var(--border-color);
|
|
5591
5316
|
}
|
|
5592
5317
|
|
|
5593
|
-
.border-
|
|
5594
|
-
border-width: 1px;
|
|
5595
|
-
border-style: solid;
|
|
5596
|
-
border-color: var(--border-
|
|
5318
|
+
.border-r {
|
|
5319
|
+
border-right-width: 1px;
|
|
5320
|
+
border-right-style: var(--border-style, solid);
|
|
5321
|
+
border-right-color: var(--border-color);
|
|
5597
5322
|
}
|
|
5598
5323
|
|
|
5599
|
-
.border-
|
|
5600
|
-
border-width:
|
|
5601
|
-
border-style: solid;
|
|
5602
|
-
border-color: var(--border-
|
|
5324
|
+
.border-b {
|
|
5325
|
+
border-bottom-width: 1px;
|
|
5326
|
+
border-bottom-style: var(--border-style, solid);
|
|
5327
|
+
border-bottom-color: var(--border-color);
|
|
5603
5328
|
}
|
|
5604
5329
|
|
|
5605
|
-
.border-
|
|
5606
|
-
border-width:
|
|
5607
|
-
border-style: solid;
|
|
5608
|
-
border-color: var(--border-
|
|
5330
|
+
.border-l {
|
|
5331
|
+
border-left-width: 1px;
|
|
5332
|
+
border-left-style: var(--border-style, solid);
|
|
5333
|
+
border-left-color: var(--border-color);
|
|
5609
5334
|
}
|
|
5610
5335
|
|
|
5611
|
-
.border-
|
|
5612
|
-
|
|
5336
|
+
.border-0,
|
|
5337
|
+
.hover\:border-0:hover,
|
|
5338
|
+
.active\:border-0:active,
|
|
5339
|
+
.focus\:border-0:focus,
|
|
5340
|
+
.group:hover .group-hover\:border-0 {
|
|
5341
|
+
--border-size: 0px;
|
|
5342
|
+
border-width: 0px;
|
|
5613
5343
|
border-style: solid;
|
|
5614
|
-
border-color: var(--border-
|
|
5344
|
+
border-color: var(--border-color);
|
|
5345
|
+
--border-style: solid;
|
|
5346
|
+
--border-color: var(--border-color);
|
|
5615
5347
|
}
|
|
5616
5348
|
|
|
5617
5349
|
.border-t-0 {
|
|
5618
5350
|
border-top-width: 0px;
|
|
5619
|
-
border-top-style: solid;
|
|
5620
|
-
border-top-color: var(--border);
|
|
5351
|
+
border-top-style: var(--border-style, solid);
|
|
5352
|
+
border-top-color: var(--border-color);
|
|
5621
5353
|
}
|
|
5622
5354
|
|
|
5623
5355
|
.border-r-0 {
|
|
5624
5356
|
border-right-width: 0px;
|
|
5625
|
-
border-right-style: solid;
|
|
5626
|
-
border-right-color: var(--border);
|
|
5357
|
+
border-right-style: var(--border-style, solid);
|
|
5358
|
+
border-right-color: var(--border-color);
|
|
5627
5359
|
}
|
|
5628
5360
|
|
|
5629
5361
|
.border-b-0 {
|
|
5630
5362
|
border-bottom-width: 0px;
|
|
5631
|
-
border-bottom-style: solid;
|
|
5632
|
-
border-bottom-color: var(--border);
|
|
5363
|
+
border-bottom-style: var(--border-style, solid);
|
|
5364
|
+
border-bottom-color: var(--border-color);
|
|
5633
5365
|
}
|
|
5634
5366
|
|
|
5635
5367
|
.border-l-0 {
|
|
5636
5368
|
border-left-width: 0px;
|
|
5637
|
-
border-left-style: solid;
|
|
5638
|
-
border-left-color: var(--border);
|
|
5369
|
+
border-left-style: var(--border-style, solid);
|
|
5370
|
+
border-left-color: var(--border-color);
|
|
5371
|
+
}
|
|
5372
|
+
|
|
5373
|
+
.border-1,
|
|
5374
|
+
.hover\:border-1:hover,
|
|
5375
|
+
.active\:border-1:active,
|
|
5376
|
+
.focus\:border-1:focus,
|
|
5377
|
+
.group:hover .group-hover\:border-1 {
|
|
5378
|
+
--border-size: 1px;
|
|
5379
|
+
border-width: 1px;
|
|
5380
|
+
border-style: solid;
|
|
5381
|
+
border-color: var(--border-color);
|
|
5382
|
+
--border-style: solid;
|
|
5383
|
+
--border-color: var(--border-color);
|
|
5639
5384
|
}
|
|
5640
5385
|
|
|
5641
5386
|
.border-t-1 {
|
|
5642
5387
|
border-top-width: 1px;
|
|
5643
|
-
border-top-style: solid;
|
|
5644
|
-
border-top-color: var(--border);
|
|
5388
|
+
border-top-style: var(--border-style, solid);
|
|
5389
|
+
border-top-color: var(--border-color);
|
|
5645
5390
|
}
|
|
5646
5391
|
|
|
5647
5392
|
.border-r-1 {
|
|
5648
5393
|
border-right-width: 1px;
|
|
5649
|
-
border-right-style: solid;
|
|
5650
|
-
border-right-color: var(--border);
|
|
5394
|
+
border-right-style: var(--border-style, solid);
|
|
5395
|
+
border-right-color: var(--border-color);
|
|
5651
5396
|
}
|
|
5652
5397
|
|
|
5653
5398
|
.border-b-1 {
|
|
5654
5399
|
border-bottom-width: 1px;
|
|
5655
|
-
border-bottom-style: solid;
|
|
5656
|
-
border-bottom-color: var(--border);
|
|
5400
|
+
border-bottom-style: var(--border-style, solid);
|
|
5401
|
+
border-bottom-color: var(--border-color);
|
|
5657
5402
|
}
|
|
5658
5403
|
|
|
5659
5404
|
.border-l-1 {
|
|
5660
5405
|
border-left-width: 1px;
|
|
5661
|
-
border-left-style: solid;
|
|
5662
|
-
border-left-color: var(--border);
|
|
5406
|
+
border-left-style: var(--border-style, solid);
|
|
5407
|
+
border-left-color: var(--border-color);
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
.border-2,
|
|
5411
|
+
.hover\:border-2:hover,
|
|
5412
|
+
.active\:border-2:active,
|
|
5413
|
+
.focus\:border-2:focus,
|
|
5414
|
+
.group:hover .group-hover\:border-2 {
|
|
5415
|
+
--border-size: 2px;
|
|
5416
|
+
border-width: 2px;
|
|
5417
|
+
border-style: solid;
|
|
5418
|
+
border-color: var(--border-color);
|
|
5419
|
+
--border-style: solid;
|
|
5420
|
+
--border-color: var(--border-color);
|
|
5663
5421
|
}
|
|
5664
5422
|
|
|
5665
5423
|
.border-t-2 {
|
|
5666
5424
|
border-top-width: 2px;
|
|
5667
|
-
border-top-style: solid;
|
|
5668
|
-
border-top-color: var(--border);
|
|
5425
|
+
border-top-style: var(--border-style, solid);
|
|
5426
|
+
border-top-color: var(--border-color);
|
|
5669
5427
|
}
|
|
5670
5428
|
|
|
5671
5429
|
.border-r-2 {
|
|
5672
5430
|
border-right-width: 2px;
|
|
5673
|
-
border-right-style: solid;
|
|
5674
|
-
border-right-color: var(--border);
|
|
5431
|
+
border-right-style: var(--border-style, solid);
|
|
5432
|
+
border-right-color: var(--border-color);
|
|
5675
5433
|
}
|
|
5676
5434
|
|
|
5677
5435
|
.border-b-2 {
|
|
5678
5436
|
border-bottom-width: 2px;
|
|
5679
|
-
border-bottom-style: solid;
|
|
5680
|
-
border-bottom-color: var(--border);
|
|
5437
|
+
border-bottom-style: var(--border-style, solid);
|
|
5438
|
+
border-bottom-color: var(--border-color);
|
|
5681
5439
|
}
|
|
5682
5440
|
|
|
5683
5441
|
.border-l-2 {
|
|
5684
5442
|
border-left-width: 2px;
|
|
5685
|
-
border-left-style: solid;
|
|
5686
|
-
border-left-color: var(--border);
|
|
5443
|
+
border-left-style: var(--border-style, solid);
|
|
5444
|
+
border-left-color: var(--border-color);
|
|
5445
|
+
}
|
|
5446
|
+
|
|
5447
|
+
.border-4,
|
|
5448
|
+
.hover\:border-4:hover,
|
|
5449
|
+
.active\:border-4:active,
|
|
5450
|
+
.focus\:border-4:focus,
|
|
5451
|
+
.group:hover .group-hover\:border-4 {
|
|
5452
|
+
--border-size: 4px;
|
|
5453
|
+
border-width: 4px;
|
|
5454
|
+
border-style: solid;
|
|
5455
|
+
border-color: var(--border-color);
|
|
5456
|
+
--border-style: solid;
|
|
5457
|
+
--border-color: var(--border-color);
|
|
5687
5458
|
}
|
|
5688
5459
|
|
|
5689
5460
|
.border-t-4 {
|
|
5690
5461
|
border-top-width: 4px;
|
|
5691
|
-
border-top-style: solid;
|
|
5692
|
-
border-top-color: var(--border);
|
|
5462
|
+
border-top-style: var(--border-style, solid);
|
|
5463
|
+
border-top-color: var(--border-color);
|
|
5693
5464
|
}
|
|
5694
5465
|
|
|
5695
5466
|
.border-r-4 {
|
|
5696
5467
|
border-right-width: 4px;
|
|
5697
|
-
border-right-style: solid;
|
|
5698
|
-
border-right-color: var(--border);
|
|
5468
|
+
border-right-style: var(--border-style, solid);
|
|
5469
|
+
border-right-color: var(--border-color);
|
|
5699
5470
|
}
|
|
5700
5471
|
|
|
5701
5472
|
.border-b-4 {
|
|
5702
5473
|
border-bottom-width: 4px;
|
|
5703
|
-
border-bottom-style: solid;
|
|
5704
|
-
border-bottom-color: var(--border);
|
|
5474
|
+
border-bottom-style: var(--border-style, solid);
|
|
5475
|
+
border-bottom-color: var(--border-color);
|
|
5705
5476
|
}
|
|
5706
5477
|
|
|
5707
5478
|
.border-l-4 {
|
|
5708
5479
|
border-left-width: 4px;
|
|
5709
|
-
border-left-style: solid;
|
|
5710
|
-
border-left-color: var(--border);
|
|
5480
|
+
border-left-style: var(--border-style, solid);
|
|
5481
|
+
border-left-color: var(--border-color);
|
|
5482
|
+
}
|
|
5483
|
+
|
|
5484
|
+
.border-8,
|
|
5485
|
+
.hover\:border-8:hover,
|
|
5486
|
+
.active\:border-8:active,
|
|
5487
|
+
.focus\:border-8:focus,
|
|
5488
|
+
.group:hover .group-hover\:border-8 {
|
|
5489
|
+
--border-size: 8px;
|
|
5490
|
+
border-width: 8px;
|
|
5491
|
+
border-style: solid;
|
|
5492
|
+
border-color: var(--border-color);
|
|
5493
|
+
--border-style: solid;
|
|
5494
|
+
--border-color: var(--border-color);
|
|
5711
5495
|
}
|
|
5712
5496
|
|
|
5713
5497
|
.border-t-8 {
|
|
5714
5498
|
border-top-width: 8px;
|
|
5715
|
-
border-top-style: solid;
|
|
5716
|
-
border-top-color: var(--border);
|
|
5499
|
+
border-top-style: var(--border-style, solid);
|
|
5500
|
+
border-top-color: var(--border-color);
|
|
5717
5501
|
}
|
|
5718
5502
|
|
|
5719
5503
|
.border-r-8 {
|
|
5720
5504
|
border-right-width: 8px;
|
|
5721
|
-
border-right-style: solid;
|
|
5722
|
-
border-right-color: var(--border);
|
|
5505
|
+
border-right-style: var(--border-style, solid);
|
|
5506
|
+
border-right-color: var(--border-color);
|
|
5723
5507
|
}
|
|
5724
5508
|
|
|
5725
5509
|
.border-b-8 {
|
|
5726
5510
|
border-bottom-width: 8px;
|
|
5727
|
-
border-bottom-style: solid;
|
|
5728
|
-
border-bottom-color: var(--border);
|
|
5511
|
+
border-bottom-style: var(--border-style, solid);
|
|
5512
|
+
border-bottom-color: var(--border-color);
|
|
5729
5513
|
}
|
|
5730
5514
|
|
|
5731
5515
|
.border-l-8 {
|
|
5732
5516
|
border-left-width: 8px;
|
|
5733
|
-
border-left-style: solid;
|
|
5734
|
-
border-left-color: var(--border);
|
|
5735
|
-
}
|
|
5736
|
-
|
|
5737
|
-
.border-t {
|
|
5738
|
-
border-top-width: 1px;
|
|
5739
|
-
border-top-style: solid;
|
|
5740
|
-
border-top-color: var(--border);
|
|
5741
|
-
}
|
|
5742
|
-
|
|
5743
|
-
.border-r {
|
|
5744
|
-
border-right-width: 1px;
|
|
5745
|
-
border-right-style: solid;
|
|
5746
|
-
border-right-color: var(--border);
|
|
5747
|
-
}
|
|
5748
|
-
|
|
5749
|
-
.border-b {
|
|
5750
|
-
border-bottom-width: 1px;
|
|
5751
|
-
border-bottom-style: solid;
|
|
5752
|
-
border-bottom-color: var(--border);
|
|
5753
|
-
}
|
|
5754
|
-
|
|
5755
|
-
.border-l {
|
|
5756
|
-
border-left-width: 1px;
|
|
5757
|
-
border-left-style: solid;
|
|
5758
|
-
border-left-color: var(--border);
|
|
5517
|
+
border-left-style: var(--border-style, solid);
|
|
5518
|
+
border-left-color: var(--border-color);
|
|
5759
5519
|
}
|
|
5760
5520
|
|
|
5761
5521
|
.rounded {
|
|
@@ -5770,34 +5530,6 @@ code {
|
|
|
5770
5530
|
border-radius: 0.25rem;
|
|
5771
5531
|
}
|
|
5772
5532
|
|
|
5773
|
-
.rounded-sm {
|
|
5774
|
-
border-radius: 0.375rem;
|
|
5775
|
-
}
|
|
5776
|
-
|
|
5777
|
-
.rounded-md {
|
|
5778
|
-
border-radius: 0.5rem;
|
|
5779
|
-
}
|
|
5780
|
-
|
|
5781
|
-
.rounded-lg {
|
|
5782
|
-
border-radius: 0.75rem;
|
|
5783
|
-
}
|
|
5784
|
-
|
|
5785
|
-
.rounded-xl {
|
|
5786
|
-
border-radius: 1rem;
|
|
5787
|
-
}
|
|
5788
|
-
|
|
5789
|
-
.rounded-2xl {
|
|
5790
|
-
border-radius: 1.25rem;
|
|
5791
|
-
}
|
|
5792
|
-
|
|
5793
|
-
.rounded-circle {
|
|
5794
|
-
border-radius: 50%;
|
|
5795
|
-
}
|
|
5796
|
-
|
|
5797
|
-
.rounded-none {
|
|
5798
|
-
border-radius: 0px;
|
|
5799
|
-
}
|
|
5800
|
-
|
|
5801
5533
|
.rounded-t-xs {
|
|
5802
5534
|
border-top-left-radius: 0.25rem;
|
|
5803
5535
|
border-top-right-radius: 0.25rem;
|
|
@@ -5834,6 +5566,10 @@ code {
|
|
|
5834
5566
|
border-bottom-left-radius: 0.25rem;
|
|
5835
5567
|
}
|
|
5836
5568
|
|
|
5569
|
+
.rounded-sm {
|
|
5570
|
+
border-radius: 0.375rem;
|
|
5571
|
+
}
|
|
5572
|
+
|
|
5837
5573
|
.rounded-t-sm {
|
|
5838
5574
|
border-top-left-radius: 0.375rem;
|
|
5839
5575
|
border-top-right-radius: 0.375rem;
|
|
@@ -5870,6 +5606,10 @@ code {
|
|
|
5870
5606
|
border-bottom-left-radius: 0.375rem;
|
|
5871
5607
|
}
|
|
5872
5608
|
|
|
5609
|
+
.rounded-md {
|
|
5610
|
+
border-radius: 0.5rem;
|
|
5611
|
+
}
|
|
5612
|
+
|
|
5873
5613
|
.rounded-t-md {
|
|
5874
5614
|
border-top-left-radius: 0.5rem;
|
|
5875
5615
|
border-top-right-radius: 0.5rem;
|
|
@@ -5906,6 +5646,10 @@ code {
|
|
|
5906
5646
|
border-bottom-left-radius: 0.5rem;
|
|
5907
5647
|
}
|
|
5908
5648
|
|
|
5649
|
+
.rounded-lg {
|
|
5650
|
+
border-radius: 0.75rem;
|
|
5651
|
+
}
|
|
5652
|
+
|
|
5909
5653
|
.rounded-t-lg {
|
|
5910
5654
|
border-top-left-radius: 0.75rem;
|
|
5911
5655
|
border-top-right-radius: 0.75rem;
|
|
@@ -5942,6 +5686,10 @@ code {
|
|
|
5942
5686
|
border-bottom-left-radius: 0.75rem;
|
|
5943
5687
|
}
|
|
5944
5688
|
|
|
5689
|
+
.rounded-xl {
|
|
5690
|
+
border-radius: 1rem;
|
|
5691
|
+
}
|
|
5692
|
+
|
|
5945
5693
|
.rounded-t-xl {
|
|
5946
5694
|
border-top-left-radius: 1rem;
|
|
5947
5695
|
border-top-right-radius: 1rem;
|
|
@@ -5978,6 +5726,10 @@ code {
|
|
|
5978
5726
|
border-bottom-left-radius: 1rem;
|
|
5979
5727
|
}
|
|
5980
5728
|
|
|
5729
|
+
.rounded-2xl {
|
|
5730
|
+
border-radius: 1.25rem;
|
|
5731
|
+
}
|
|
5732
|
+
|
|
5981
5733
|
.rounded-t-2xl {
|
|
5982
5734
|
border-top-left-radius: 1.25rem;
|
|
5983
5735
|
border-top-right-radius: 1.25rem;
|
|
@@ -6014,42 +5766,50 @@ code {
|
|
|
6014
5766
|
border-bottom-left-radius: 1.25rem;
|
|
6015
5767
|
}
|
|
6016
5768
|
|
|
6017
|
-
.rounded-
|
|
5769
|
+
.rounded-full {
|
|
5770
|
+
border-radius: 50%;
|
|
5771
|
+
}
|
|
5772
|
+
|
|
5773
|
+
.rounded-t-full {
|
|
6018
5774
|
border-top-left-radius: 50%;
|
|
6019
5775
|
border-top-right-radius: 50%;
|
|
6020
5776
|
}
|
|
6021
5777
|
|
|
6022
|
-
.rounded-r-
|
|
5778
|
+
.rounded-r-full {
|
|
6023
5779
|
border-top-right-radius: 50%;
|
|
6024
5780
|
border-bottom-right-radius: 50%;
|
|
6025
5781
|
}
|
|
6026
5782
|
|
|
6027
|
-
.rounded-b-
|
|
5783
|
+
.rounded-b-full {
|
|
6028
5784
|
border-bottom-left-radius: 50%;
|
|
6029
5785
|
border-bottom-right-radius: 50%;
|
|
6030
5786
|
}
|
|
6031
5787
|
|
|
6032
|
-
.rounded-l-
|
|
5788
|
+
.rounded-l-full {
|
|
6033
5789
|
border-top-left-radius: 50%;
|
|
6034
5790
|
border-bottom-left-radius: 50%;
|
|
6035
5791
|
}
|
|
6036
5792
|
|
|
6037
|
-
.rounded-tl-
|
|
5793
|
+
.rounded-tl-full {
|
|
6038
5794
|
border-top-left-radius: 50%;
|
|
6039
5795
|
}
|
|
6040
5796
|
|
|
6041
|
-
.rounded-tr-
|
|
5797
|
+
.rounded-tr-full {
|
|
6042
5798
|
border-top-right-radius: 50%;
|
|
6043
5799
|
}
|
|
6044
5800
|
|
|
6045
|
-
.rounded-br-
|
|
5801
|
+
.rounded-br-full {
|
|
6046
5802
|
border-bottom-right-radius: 50%;
|
|
6047
5803
|
}
|
|
6048
5804
|
|
|
6049
|
-
.rounded-bl-
|
|
5805
|
+
.rounded-bl-full {
|
|
6050
5806
|
border-bottom-left-radius: 50%;
|
|
6051
5807
|
}
|
|
6052
5808
|
|
|
5809
|
+
.rounded-none {
|
|
5810
|
+
border-radius: 0px;
|
|
5811
|
+
}
|
|
5812
|
+
|
|
6053
5813
|
.rounded-t-none {
|
|
6054
5814
|
border-top-left-radius: 0px;
|
|
6055
5815
|
border-top-right-radius: 0px;
|
|
@@ -6090,365 +5850,230 @@ code {
|
|
|
6090
5850
|
border-radius: 9999px;
|
|
6091
5851
|
}
|
|
6092
5852
|
|
|
6093
|
-
.border-solid
|
|
5853
|
+
.border-solid,
|
|
5854
|
+
.hover\:border-solid:hover,
|
|
5855
|
+
.active\:border-solid:active,
|
|
5856
|
+
.focus\:border-solid:focus,
|
|
5857
|
+
.group:hover .group-hover\:border-solid {
|
|
6094
5858
|
border-style: solid;
|
|
6095
5859
|
}
|
|
6096
5860
|
|
|
6097
|
-
.border-dashed
|
|
5861
|
+
.border-dashed,
|
|
5862
|
+
.hover\:border-dashed:hover,
|
|
5863
|
+
.active\:border-dashed:active,
|
|
5864
|
+
.focus\:border-dashed:focus,
|
|
5865
|
+
.group:hover .group-hover\:border-dashed {
|
|
6098
5866
|
border-style: dashed;
|
|
6099
5867
|
}
|
|
6100
5868
|
|
|
6101
|
-
.border-dotted
|
|
5869
|
+
.border-dotted,
|
|
5870
|
+
.hover\:border-dotted:hover,
|
|
5871
|
+
.active\:border-dotted:active,
|
|
5872
|
+
.focus\:border-dotted:focus,
|
|
5873
|
+
.group:hover .group-hover\:border-dotted {
|
|
6102
5874
|
border-style: dotted;
|
|
6103
5875
|
}
|
|
6104
5876
|
|
|
6105
|
-
.border-double
|
|
5877
|
+
.border-double,
|
|
5878
|
+
.hover\:border-double:hover,
|
|
5879
|
+
.active\:border-double:active,
|
|
5880
|
+
.focus\:border-double:focus,
|
|
5881
|
+
.group:hover .group-hover\:border-double {
|
|
6106
5882
|
border-style: double;
|
|
6107
5883
|
}
|
|
6108
5884
|
|
|
6109
|
-
.border-none
|
|
5885
|
+
.border-none,
|
|
5886
|
+
.hover\:border-none:hover,
|
|
5887
|
+
.active\:border-none:active,
|
|
5888
|
+
.focus\:border-none:focus,
|
|
5889
|
+
.group:hover .group-hover\:border-none {
|
|
6110
5890
|
border-style: none;
|
|
6111
5891
|
}
|
|
6112
5892
|
|
|
6113
|
-
.border-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
.border-
|
|
6118
|
-
border-color: var(--border-light-color);
|
|
6119
|
-
}
|
|
6120
|
-
|
|
6121
|
-
.border-dark {
|
|
6122
|
-
border-color: var(--border-dark-color);
|
|
6123
|
-
}
|
|
6124
|
-
|
|
6125
|
-
.border-primary {
|
|
5893
|
+
.border-primary,
|
|
5894
|
+
.hover\:border-primary:hover,
|
|
5895
|
+
.active\:border-primary:active,
|
|
5896
|
+
.focus\:border-primary:focus,
|
|
5897
|
+
.group:hover .group-hover\:border-primary {
|
|
6126
5898
|
border-color: var(--primary);
|
|
6127
5899
|
}
|
|
6128
5900
|
|
|
6129
|
-
.border-secondary
|
|
5901
|
+
.border-secondary,
|
|
5902
|
+
.hover\:border-secondary:hover,
|
|
5903
|
+
.active\:border-secondary:active,
|
|
5904
|
+
.focus\:border-secondary:focus,
|
|
5905
|
+
.group:hover .group-hover\:border-secondary {
|
|
6130
5906
|
border-color: var(--secondary);
|
|
6131
5907
|
}
|
|
6132
5908
|
|
|
6133
|
-
.border-success
|
|
5909
|
+
.border-success,
|
|
5910
|
+
.hover\:border-success:hover,
|
|
5911
|
+
.active\:border-success:active,
|
|
5912
|
+
.focus\:border-success:focus,
|
|
5913
|
+
.group:hover .group-hover\:border-success {
|
|
6134
5914
|
border-color: var(--success);
|
|
6135
5915
|
}
|
|
6136
5916
|
|
|
6137
|
-
.border-danger
|
|
5917
|
+
.border-danger,
|
|
5918
|
+
.hover\:border-danger:hover,
|
|
5919
|
+
.active\:border-danger:active,
|
|
5920
|
+
.focus\:border-danger:focus,
|
|
5921
|
+
.group:hover .group-hover\:border-danger {
|
|
6138
5922
|
border-color: var(--danger);
|
|
6139
5923
|
}
|
|
6140
5924
|
|
|
6141
|
-
.border-warning
|
|
5925
|
+
.border-warning,
|
|
5926
|
+
.hover\:border-warning:hover,
|
|
5927
|
+
.active\:border-warning:active,
|
|
5928
|
+
.focus\:border-warning:focus,
|
|
5929
|
+
.group:hover .group-hover\:border-warning {
|
|
6142
5930
|
border-color: var(--warning);
|
|
6143
5931
|
}
|
|
6144
5932
|
|
|
6145
|
-
.border-info
|
|
5933
|
+
.border-info,
|
|
5934
|
+
.hover\:border-info:hover,
|
|
5935
|
+
.active\:border-info:active,
|
|
5936
|
+
.focus\:border-info:focus,
|
|
5937
|
+
.group:hover .group-hover\:border-info {
|
|
6146
5938
|
border-color: var(--info);
|
|
6147
5939
|
}
|
|
6148
5940
|
|
|
6149
|
-
.border-
|
|
6150
|
-
|
|
6151
|
-
|
|
5941
|
+
.border-gray,
|
|
5942
|
+
.hover\:border-gray:hover,
|
|
5943
|
+
.active\:border-gray:active,
|
|
5944
|
+
.focus\:border-gray:focus,
|
|
5945
|
+
.group:hover .group-hover\:border-gray {
|
|
5946
|
+
border-color: var(--gray);
|
|
6152
5947
|
}
|
|
6153
5948
|
|
|
6154
|
-
.border-
|
|
6155
|
-
|
|
6156
|
-
|
|
5949
|
+
.border-red,
|
|
5950
|
+
.hover\:border-red:hover,
|
|
5951
|
+
.active\:border-red:active,
|
|
5952
|
+
.focus\:border-red:focus,
|
|
5953
|
+
.group:hover .group-hover\:border-red {
|
|
5954
|
+
border-color: var(--red);
|
|
6157
5955
|
}
|
|
6158
5956
|
|
|
6159
|
-
.
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
5957
|
+
.border-blue,
|
|
5958
|
+
.hover\:border-blue:hover,
|
|
5959
|
+
.active\:border-blue:active,
|
|
5960
|
+
.focus\:border-blue:focus,
|
|
5961
|
+
.group:hover .group-hover\:border-blue {
|
|
5962
|
+
border-color: var(--blue);
|
|
6163
5963
|
}
|
|
6164
5964
|
|
|
6165
|
-
.
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
5965
|
+
.border-green,
|
|
5966
|
+
.hover\:border-green:hover,
|
|
5967
|
+
.active\:border-green:active,
|
|
5968
|
+
.focus\:border-green:focus,
|
|
5969
|
+
.group:hover .group-hover\:border-green {
|
|
5970
|
+
border-color: var(--green);
|
|
6169
5971
|
}
|
|
6170
5972
|
|
|
6171
|
-
.
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
.hover\:border-4:hover {
|
|
6178
|
-
border-width: 4px;
|
|
6179
|
-
border-style: solid;
|
|
6180
|
-
border-color: var(--border-base);
|
|
6181
|
-
}
|
|
6182
|
-
|
|
6183
|
-
.hover\:border-8:hover {
|
|
6184
|
-
border-width: 8px;
|
|
6185
|
-
border-style: solid;
|
|
6186
|
-
border-color: var(--border-base);
|
|
6187
|
-
}
|
|
6188
|
-
|
|
6189
|
-
.hover\:border-solid:hover {
|
|
6190
|
-
border-style: solid;
|
|
6191
|
-
}
|
|
6192
|
-
|
|
6193
|
-
.hover\:border-dashed:hover {
|
|
6194
|
-
border-style: dashed;
|
|
6195
|
-
}
|
|
6196
|
-
|
|
6197
|
-
.hover\:border-dotted:hover {
|
|
6198
|
-
border-style: dotted;
|
|
6199
|
-
}
|
|
6200
|
-
|
|
6201
|
-
.hover\:border-double:hover {
|
|
6202
|
-
border-style: double;
|
|
6203
|
-
}
|
|
6204
|
-
|
|
6205
|
-
.hover\:border-none:hover {
|
|
6206
|
-
border-style: none;
|
|
6207
|
-
}
|
|
6208
|
-
|
|
6209
|
-
.hover\:border-default:hover {
|
|
6210
|
-
border-color: var(--border);
|
|
6211
|
-
}
|
|
6212
|
-
|
|
6213
|
-
.hover\:border-light:hover {
|
|
6214
|
-
border-color: var(--border-light-color);
|
|
6215
|
-
}
|
|
6216
|
-
|
|
6217
|
-
.hover\:border-dark:hover {
|
|
6218
|
-
border-color: var(--border-dark-color);
|
|
6219
|
-
}
|
|
6220
|
-
|
|
6221
|
-
.hover\:border-primary:hover {
|
|
6222
|
-
border-color: var(--primary);
|
|
6223
|
-
}
|
|
6224
|
-
|
|
6225
|
-
.hover\:border-secondary:hover {
|
|
6226
|
-
border-color: var(--secondary);
|
|
6227
|
-
}
|
|
6228
|
-
|
|
6229
|
-
.hover\:border-success:hover {
|
|
6230
|
-
border-color: var(--success);
|
|
6231
|
-
}
|
|
6232
|
-
|
|
6233
|
-
.hover\:border-danger:hover {
|
|
6234
|
-
border-color: var(--danger);
|
|
6235
|
-
}
|
|
6236
|
-
|
|
6237
|
-
.hover\:border-warning:hover {
|
|
6238
|
-
border-color: var(--warning);
|
|
6239
|
-
}
|
|
6240
|
-
|
|
6241
|
-
.hover\:border-info:hover {
|
|
6242
|
-
border-color: var(--info);
|
|
6243
|
-
}
|
|
6244
|
-
|
|
6245
|
-
.active\:border-0:active {
|
|
6246
|
-
border-width: 0px;
|
|
6247
|
-
border-style: solid;
|
|
6248
|
-
border-color: var(--border-base);
|
|
6249
|
-
}
|
|
6250
|
-
|
|
6251
|
-
.active\:border-1:active {
|
|
6252
|
-
border-width: 1px;
|
|
6253
|
-
border-style: solid;
|
|
6254
|
-
border-color: var(--border-base);
|
|
6255
|
-
}
|
|
6256
|
-
|
|
6257
|
-
.active\:border-2:active {
|
|
6258
|
-
border-width: 2px;
|
|
6259
|
-
border-style: solid;
|
|
6260
|
-
border-color: var(--border-base);
|
|
6261
|
-
}
|
|
6262
|
-
|
|
6263
|
-
.active\:border-4:active {
|
|
6264
|
-
border-width: 4px;
|
|
6265
|
-
border-style: solid;
|
|
6266
|
-
border-color: var(--border-base);
|
|
6267
|
-
}
|
|
6268
|
-
|
|
6269
|
-
.active\:border-8:active {
|
|
6270
|
-
border-width: 8px;
|
|
6271
|
-
border-style: solid;
|
|
6272
|
-
border-color: var(--border-base);
|
|
6273
|
-
}
|
|
6274
|
-
|
|
6275
|
-
.active\:border-solid:active {
|
|
6276
|
-
border-style: solid;
|
|
6277
|
-
}
|
|
6278
|
-
|
|
6279
|
-
.active\:border-dashed:active {
|
|
6280
|
-
border-style: dashed;
|
|
6281
|
-
}
|
|
6282
|
-
|
|
6283
|
-
.active\:border-dotted:active {
|
|
6284
|
-
border-style: dotted;
|
|
6285
|
-
}
|
|
6286
|
-
|
|
6287
|
-
.active\:border-double:active {
|
|
6288
|
-
border-style: double;
|
|
6289
|
-
}
|
|
6290
|
-
|
|
6291
|
-
.active\:border-none:active {
|
|
6292
|
-
border-style: none;
|
|
6293
|
-
}
|
|
6294
|
-
|
|
6295
|
-
.active\:border-default:active {
|
|
6296
|
-
border-color: var(--border);
|
|
6297
|
-
}
|
|
6298
|
-
|
|
6299
|
-
.active\:border-light:active {
|
|
6300
|
-
border-color: var(--border-light-color);
|
|
6301
|
-
}
|
|
6302
|
-
|
|
6303
|
-
.active\:border-dark:active {
|
|
6304
|
-
border-color: var(--border-dark-color);
|
|
6305
|
-
}
|
|
6306
|
-
|
|
6307
|
-
.active\:border-primary:active {
|
|
6308
|
-
border-color: var(--primary);
|
|
6309
|
-
}
|
|
6310
|
-
|
|
6311
|
-
.active\:border-secondary:active {
|
|
6312
|
-
border-color: var(--secondary);
|
|
6313
|
-
}
|
|
6314
|
-
|
|
6315
|
-
.active\:border-success:active {
|
|
6316
|
-
border-color: var(--success);
|
|
6317
|
-
}
|
|
6318
|
-
|
|
6319
|
-
.active\:border-danger:active {
|
|
6320
|
-
border-color: var(--danger);
|
|
6321
|
-
}
|
|
6322
|
-
|
|
6323
|
-
.active\:border-warning:active {
|
|
6324
|
-
border-color: var(--warning);
|
|
6325
|
-
}
|
|
6326
|
-
|
|
6327
|
-
.active\:border-info:active {
|
|
6328
|
-
border-color: var(--info);
|
|
6329
|
-
}
|
|
6330
|
-
|
|
6331
|
-
.focus\:border-0:focus {
|
|
6332
|
-
border-width: 0px;
|
|
6333
|
-
border-style: solid;
|
|
6334
|
-
border-color: var(--border-base);
|
|
6335
|
-
}
|
|
6336
|
-
|
|
6337
|
-
.focus\:border-1:focus {
|
|
6338
|
-
border-width: 1px;
|
|
6339
|
-
border-style: solid;
|
|
6340
|
-
border-color: var(--border-base);
|
|
6341
|
-
}
|
|
6342
|
-
|
|
6343
|
-
.focus\:border-2:focus {
|
|
6344
|
-
border-width: 2px;
|
|
6345
|
-
border-style: solid;
|
|
6346
|
-
border-color: var(--border-base);
|
|
6347
|
-
}
|
|
6348
|
-
|
|
6349
|
-
.focus\:border-4:focus {
|
|
6350
|
-
border-width: 4px;
|
|
6351
|
-
border-style: solid;
|
|
6352
|
-
border-color: var(--border-base);
|
|
6353
|
-
}
|
|
6354
|
-
|
|
6355
|
-
.focus\:border-8:focus {
|
|
6356
|
-
border-width: 8px;
|
|
6357
|
-
border-style: solid;
|
|
6358
|
-
border-color: var(--border-base);
|
|
6359
|
-
}
|
|
6360
|
-
|
|
6361
|
-
.focus\:border-solid:focus {
|
|
6362
|
-
border-style: solid;
|
|
6363
|
-
}
|
|
6364
|
-
|
|
6365
|
-
.focus\:border-dashed:focus {
|
|
6366
|
-
border-style: dashed;
|
|
6367
|
-
}
|
|
6368
|
-
|
|
6369
|
-
.focus\:border-dotted:focus {
|
|
6370
|
-
border-style: dotted;
|
|
6371
|
-
}
|
|
6372
|
-
|
|
6373
|
-
.focus\:border-double:focus {
|
|
6374
|
-
border-style: double;
|
|
6375
|
-
}
|
|
6376
|
-
|
|
6377
|
-
.focus\:border-none:focus {
|
|
6378
|
-
border-style: none;
|
|
6379
|
-
}
|
|
6380
|
-
|
|
6381
|
-
.focus\:border-default:focus {
|
|
6382
|
-
border-color: var(--border);
|
|
6383
|
-
}
|
|
6384
|
-
|
|
6385
|
-
.focus\:border-light:focus {
|
|
6386
|
-
border-color: var(--border-light-color);
|
|
6387
|
-
}
|
|
6388
|
-
|
|
6389
|
-
.focus\:border-dark:focus {
|
|
6390
|
-
border-color: var(--border-dark-color);
|
|
6391
|
-
}
|
|
6392
|
-
|
|
6393
|
-
.focus\:border-primary:focus {
|
|
6394
|
-
border-color: var(--primary);
|
|
5973
|
+
.border-yellow,
|
|
5974
|
+
.hover\:border-yellow:hover,
|
|
5975
|
+
.active\:border-yellow:active,
|
|
5976
|
+
.focus\:border-yellow:focus,
|
|
5977
|
+
.group:hover .group-hover\:border-yellow {
|
|
5978
|
+
border-color: var(--yellow);
|
|
6395
5979
|
}
|
|
6396
5980
|
|
|
6397
|
-
.
|
|
6398
|
-
|
|
5981
|
+
.border-purple,
|
|
5982
|
+
.hover\:border-purple:hover,
|
|
5983
|
+
.active\:border-purple:active,
|
|
5984
|
+
.focus\:border-purple:focus,
|
|
5985
|
+
.group:hover .group-hover\:border-purple {
|
|
5986
|
+
border-color: var(--purple);
|
|
6399
5987
|
}
|
|
6400
5988
|
|
|
6401
|
-
.
|
|
6402
|
-
|
|
5989
|
+
.border-pink,
|
|
5990
|
+
.hover\:border-pink:hover,
|
|
5991
|
+
.active\:border-pink:active,
|
|
5992
|
+
.focus\:border-pink:focus,
|
|
5993
|
+
.group:hover .group-hover\:border-pink {
|
|
5994
|
+
border-color: var(--pink);
|
|
6403
5995
|
}
|
|
6404
5996
|
|
|
6405
|
-
.
|
|
6406
|
-
|
|
5997
|
+
.border-black,
|
|
5998
|
+
.hover\:border-black:hover,
|
|
5999
|
+
.active\:border-black:active,
|
|
6000
|
+
.focus\:border-black:focus,
|
|
6001
|
+
.group:hover .group-hover\:border-black {
|
|
6002
|
+
border-color: var(--black);
|
|
6407
6003
|
}
|
|
6408
6004
|
|
|
6409
|
-
.
|
|
6410
|
-
|
|
6005
|
+
.border-white,
|
|
6006
|
+
.hover\:border-white:hover,
|
|
6007
|
+
.active\:border-white:active,
|
|
6008
|
+
.focus\:border-white:focus,
|
|
6009
|
+
.group:hover .group-hover\:border-white {
|
|
6010
|
+
border-color: var(--white);
|
|
6411
6011
|
}
|
|
6412
6012
|
|
|
6413
|
-
.
|
|
6414
|
-
|
|
6013
|
+
.border-transparent,
|
|
6014
|
+
.hover\:border-transparent:hover,
|
|
6015
|
+
.active\:border-transparent:active,
|
|
6016
|
+
.focus\:border-transparent:focus,
|
|
6017
|
+
.group:hover .group-hover\:border-transparent {
|
|
6018
|
+
border-color: var(--transparent);
|
|
6415
6019
|
}
|
|
6416
6020
|
|
|
6417
6021
|
@media (min-width: 480px) {
|
|
6418
6022
|
.border-0\@xs {
|
|
6023
|
+
--border-size: 0px;
|
|
6419
6024
|
border-width: 0px;
|
|
6420
6025
|
border-style: solid;
|
|
6421
|
-
border-color: var(--border-
|
|
6026
|
+
border-color: var(--border-color);
|
|
6027
|
+
--border-style: solid;
|
|
6028
|
+
--border-color: var(--border-color);
|
|
6422
6029
|
}
|
|
6423
6030
|
.border-1\@xs {
|
|
6031
|
+
--border-size: 1px;
|
|
6424
6032
|
border-width: 1px;
|
|
6425
6033
|
border-style: solid;
|
|
6426
|
-
border-color: var(--border-
|
|
6034
|
+
border-color: var(--border-color);
|
|
6035
|
+
--border-style: solid;
|
|
6036
|
+
--border-color: var(--border-color);
|
|
6427
6037
|
}
|
|
6428
6038
|
.border-2\@xs {
|
|
6039
|
+
--border-size: 2px;
|
|
6429
6040
|
border-width: 2px;
|
|
6430
6041
|
border-style: solid;
|
|
6431
|
-
border-color: var(--border-
|
|
6042
|
+
border-color: var(--border-color);
|
|
6043
|
+
--border-style: solid;
|
|
6044
|
+
--border-color: var(--border-color);
|
|
6432
6045
|
}
|
|
6433
6046
|
.border-4\@xs {
|
|
6047
|
+
--border-size: 4px;
|
|
6434
6048
|
border-width: 4px;
|
|
6435
6049
|
border-style: solid;
|
|
6436
|
-
border-color: var(--border-
|
|
6050
|
+
border-color: var(--border-color);
|
|
6051
|
+
--border-style: solid;
|
|
6052
|
+
--border-color: var(--border-color);
|
|
6437
6053
|
}
|
|
6438
6054
|
.border-8\@xs {
|
|
6055
|
+
--border-size: 8px;
|
|
6439
6056
|
border-width: 8px;
|
|
6440
6057
|
border-style: solid;
|
|
6441
|
-
border-color: var(--border-
|
|
6058
|
+
border-color: var(--border-color);
|
|
6059
|
+
--border-style: solid;
|
|
6060
|
+
--border-color: var(--border-color);
|
|
6442
6061
|
}
|
|
6443
6062
|
.border\@xs {
|
|
6063
|
+
--border-size: 1px;
|
|
6444
6064
|
border-width: 1px;
|
|
6445
6065
|
border-style: solid;
|
|
6446
|
-
border-color: var(--border-
|
|
6066
|
+
border-color: var(--border-color);
|
|
6067
|
+
--border-style: solid;
|
|
6068
|
+
--border-color: var(--border-color);
|
|
6447
6069
|
}
|
|
6448
6070
|
.border-0\@xs {
|
|
6071
|
+
--border-size: 0px;
|
|
6449
6072
|
border-width: 0px;
|
|
6450
6073
|
border-style: solid;
|
|
6451
|
-
border-color: var(--border-
|
|
6074
|
+
border-color: var(--border-color);
|
|
6075
|
+
--border-style: solid;
|
|
6076
|
+
--border-color: var(--border-color);
|
|
6452
6077
|
}
|
|
6453
6078
|
.rounded-xs\@xs {
|
|
6454
6079
|
border-radius: 0.25rem;
|
|
@@ -6468,7 +6093,7 @@ code {
|
|
|
6468
6093
|
.rounded-2xl\@xs {
|
|
6469
6094
|
border-radius: 1.25rem;
|
|
6470
6095
|
}
|
|
6471
|
-
.rounded-
|
|
6096
|
+
.rounded-full\@xs {
|
|
6472
6097
|
border-radius: 50%;
|
|
6473
6098
|
}
|
|
6474
6099
|
.rounded-none\@xs {
|
|
@@ -6486,39 +6111,60 @@ code {
|
|
|
6486
6111
|
}
|
|
6487
6112
|
@media (min-width: 640px) {
|
|
6488
6113
|
.border-0\@sm {
|
|
6114
|
+
--border-size: 0px;
|
|
6489
6115
|
border-width: 0px;
|
|
6490
6116
|
border-style: solid;
|
|
6491
|
-
border-color: var(--border-
|
|
6117
|
+
border-color: var(--border-color);
|
|
6118
|
+
--border-style: solid;
|
|
6119
|
+
--border-color: var(--border-color);
|
|
6492
6120
|
}
|
|
6493
6121
|
.border-1\@sm {
|
|
6122
|
+
--border-size: 1px;
|
|
6494
6123
|
border-width: 1px;
|
|
6495
6124
|
border-style: solid;
|
|
6496
|
-
border-color: var(--border-
|
|
6125
|
+
border-color: var(--border-color);
|
|
6126
|
+
--border-style: solid;
|
|
6127
|
+
--border-color: var(--border-color);
|
|
6497
6128
|
}
|
|
6498
6129
|
.border-2\@sm {
|
|
6130
|
+
--border-size: 2px;
|
|
6499
6131
|
border-width: 2px;
|
|
6500
6132
|
border-style: solid;
|
|
6501
|
-
border-color: var(--border-
|
|
6133
|
+
border-color: var(--border-color);
|
|
6134
|
+
--border-style: solid;
|
|
6135
|
+
--border-color: var(--border-color);
|
|
6502
6136
|
}
|
|
6503
6137
|
.border-4\@sm {
|
|
6138
|
+
--border-size: 4px;
|
|
6504
6139
|
border-width: 4px;
|
|
6505
6140
|
border-style: solid;
|
|
6506
|
-
border-color: var(--border-
|
|
6141
|
+
border-color: var(--border-color);
|
|
6142
|
+
--border-style: solid;
|
|
6143
|
+
--border-color: var(--border-color);
|
|
6507
6144
|
}
|
|
6508
6145
|
.border-8\@sm {
|
|
6146
|
+
--border-size: 8px;
|
|
6509
6147
|
border-width: 8px;
|
|
6510
6148
|
border-style: solid;
|
|
6511
|
-
border-color: var(--border-
|
|
6149
|
+
border-color: var(--border-color);
|
|
6150
|
+
--border-style: solid;
|
|
6151
|
+
--border-color: var(--border-color);
|
|
6512
6152
|
}
|
|
6513
6153
|
.border\@sm {
|
|
6154
|
+
--border-size: 1px;
|
|
6514
6155
|
border-width: 1px;
|
|
6515
6156
|
border-style: solid;
|
|
6516
|
-
border-color: var(--border-
|
|
6157
|
+
border-color: var(--border-color);
|
|
6158
|
+
--border-style: solid;
|
|
6159
|
+
--border-color: var(--border-color);
|
|
6517
6160
|
}
|
|
6518
6161
|
.border-0\@sm {
|
|
6162
|
+
--border-size: 0px;
|
|
6519
6163
|
border-width: 0px;
|
|
6520
6164
|
border-style: solid;
|
|
6521
|
-
border-color: var(--border-
|
|
6165
|
+
border-color: var(--border-color);
|
|
6166
|
+
--border-style: solid;
|
|
6167
|
+
--border-color: var(--border-color);
|
|
6522
6168
|
}
|
|
6523
6169
|
.rounded-xs\@sm {
|
|
6524
6170
|
border-radius: 0.25rem;
|
|
@@ -6538,7 +6184,7 @@ code {
|
|
|
6538
6184
|
.rounded-2xl\@sm {
|
|
6539
6185
|
border-radius: 1.25rem;
|
|
6540
6186
|
}
|
|
6541
|
-
.rounded-
|
|
6187
|
+
.rounded-full\@sm {
|
|
6542
6188
|
border-radius: 50%;
|
|
6543
6189
|
}
|
|
6544
6190
|
.rounded-none\@sm {
|
|
@@ -6556,39 +6202,60 @@ code {
|
|
|
6556
6202
|
}
|
|
6557
6203
|
@media (min-width: 768px) {
|
|
6558
6204
|
.border-0\@md {
|
|
6205
|
+
--border-size: 0px;
|
|
6559
6206
|
border-width: 0px;
|
|
6560
6207
|
border-style: solid;
|
|
6561
|
-
border-color: var(--border-
|
|
6208
|
+
border-color: var(--border-color);
|
|
6209
|
+
--border-style: solid;
|
|
6210
|
+
--border-color: var(--border-color);
|
|
6562
6211
|
}
|
|
6563
6212
|
.border-1\@md {
|
|
6213
|
+
--border-size: 1px;
|
|
6564
6214
|
border-width: 1px;
|
|
6565
6215
|
border-style: solid;
|
|
6566
|
-
border-color: var(--border-
|
|
6216
|
+
border-color: var(--border-color);
|
|
6217
|
+
--border-style: solid;
|
|
6218
|
+
--border-color: var(--border-color);
|
|
6567
6219
|
}
|
|
6568
6220
|
.border-2\@md {
|
|
6221
|
+
--border-size: 2px;
|
|
6569
6222
|
border-width: 2px;
|
|
6570
6223
|
border-style: solid;
|
|
6571
|
-
border-color: var(--border-
|
|
6224
|
+
border-color: var(--border-color);
|
|
6225
|
+
--border-style: solid;
|
|
6226
|
+
--border-color: var(--border-color);
|
|
6572
6227
|
}
|
|
6573
6228
|
.border-4\@md {
|
|
6229
|
+
--border-size: 4px;
|
|
6574
6230
|
border-width: 4px;
|
|
6575
6231
|
border-style: solid;
|
|
6576
|
-
border-color: var(--border-
|
|
6232
|
+
border-color: var(--border-color);
|
|
6233
|
+
--border-style: solid;
|
|
6234
|
+
--border-color: var(--border-color);
|
|
6577
6235
|
}
|
|
6578
6236
|
.border-8\@md {
|
|
6237
|
+
--border-size: 8px;
|
|
6579
6238
|
border-width: 8px;
|
|
6580
6239
|
border-style: solid;
|
|
6581
|
-
border-color: var(--border-
|
|
6240
|
+
border-color: var(--border-color);
|
|
6241
|
+
--border-style: solid;
|
|
6242
|
+
--border-color: var(--border-color);
|
|
6582
6243
|
}
|
|
6583
6244
|
.border\@md {
|
|
6245
|
+
--border-size: 1px;
|
|
6584
6246
|
border-width: 1px;
|
|
6585
6247
|
border-style: solid;
|
|
6586
|
-
border-color: var(--border-
|
|
6248
|
+
border-color: var(--border-color);
|
|
6249
|
+
--border-style: solid;
|
|
6250
|
+
--border-color: var(--border-color);
|
|
6587
6251
|
}
|
|
6588
6252
|
.border-0\@md {
|
|
6253
|
+
--border-size: 0px;
|
|
6589
6254
|
border-width: 0px;
|
|
6590
6255
|
border-style: solid;
|
|
6591
|
-
border-color: var(--border-
|
|
6256
|
+
border-color: var(--border-color);
|
|
6257
|
+
--border-style: solid;
|
|
6258
|
+
--border-color: var(--border-color);
|
|
6592
6259
|
}
|
|
6593
6260
|
.rounded-xs\@md {
|
|
6594
6261
|
border-radius: 0.25rem;
|
|
@@ -6608,7 +6275,7 @@ code {
|
|
|
6608
6275
|
.rounded-2xl\@md {
|
|
6609
6276
|
border-radius: 1.25rem;
|
|
6610
6277
|
}
|
|
6611
|
-
.rounded-
|
|
6278
|
+
.rounded-full\@md {
|
|
6612
6279
|
border-radius: 50%;
|
|
6613
6280
|
}
|
|
6614
6281
|
.rounded-none\@md {
|
|
@@ -6626,39 +6293,60 @@ code {
|
|
|
6626
6293
|
}
|
|
6627
6294
|
@media (min-width: 1024px) {
|
|
6628
6295
|
.border-0\@lg {
|
|
6296
|
+
--border-size: 0px;
|
|
6629
6297
|
border-width: 0px;
|
|
6630
6298
|
border-style: solid;
|
|
6631
|
-
border-color: var(--border-
|
|
6299
|
+
border-color: var(--border-color);
|
|
6300
|
+
--border-style: solid;
|
|
6301
|
+
--border-color: var(--border-color);
|
|
6632
6302
|
}
|
|
6633
6303
|
.border-1\@lg {
|
|
6304
|
+
--border-size: 1px;
|
|
6634
6305
|
border-width: 1px;
|
|
6635
6306
|
border-style: solid;
|
|
6636
|
-
border-color: var(--border-
|
|
6307
|
+
border-color: var(--border-color);
|
|
6308
|
+
--border-style: solid;
|
|
6309
|
+
--border-color: var(--border-color);
|
|
6637
6310
|
}
|
|
6638
6311
|
.border-2\@lg {
|
|
6312
|
+
--border-size: 2px;
|
|
6639
6313
|
border-width: 2px;
|
|
6640
6314
|
border-style: solid;
|
|
6641
|
-
border-color: var(--border-
|
|
6315
|
+
border-color: var(--border-color);
|
|
6316
|
+
--border-style: solid;
|
|
6317
|
+
--border-color: var(--border-color);
|
|
6642
6318
|
}
|
|
6643
6319
|
.border-4\@lg {
|
|
6320
|
+
--border-size: 4px;
|
|
6644
6321
|
border-width: 4px;
|
|
6645
6322
|
border-style: solid;
|
|
6646
|
-
border-color: var(--border-
|
|
6323
|
+
border-color: var(--border-color);
|
|
6324
|
+
--border-style: solid;
|
|
6325
|
+
--border-color: var(--border-color);
|
|
6647
6326
|
}
|
|
6648
6327
|
.border-8\@lg {
|
|
6328
|
+
--border-size: 8px;
|
|
6649
6329
|
border-width: 8px;
|
|
6650
6330
|
border-style: solid;
|
|
6651
|
-
border-color: var(--border-
|
|
6331
|
+
border-color: var(--border-color);
|
|
6332
|
+
--border-style: solid;
|
|
6333
|
+
--border-color: var(--border-color);
|
|
6652
6334
|
}
|
|
6653
6335
|
.border\@lg {
|
|
6336
|
+
--border-size: 1px;
|
|
6654
6337
|
border-width: 1px;
|
|
6655
6338
|
border-style: solid;
|
|
6656
|
-
border-color: var(--border-
|
|
6339
|
+
border-color: var(--border-color);
|
|
6340
|
+
--border-style: solid;
|
|
6341
|
+
--border-color: var(--border-color);
|
|
6657
6342
|
}
|
|
6658
6343
|
.border-0\@lg {
|
|
6344
|
+
--border-size: 0px;
|
|
6659
6345
|
border-width: 0px;
|
|
6660
6346
|
border-style: solid;
|
|
6661
|
-
border-color: var(--border-
|
|
6347
|
+
border-color: var(--border-color);
|
|
6348
|
+
--border-style: solid;
|
|
6349
|
+
--border-color: var(--border-color);
|
|
6662
6350
|
}
|
|
6663
6351
|
.rounded-xs\@lg {
|
|
6664
6352
|
border-radius: 0.25rem;
|
|
@@ -6678,7 +6366,7 @@ code {
|
|
|
6678
6366
|
.rounded-2xl\@lg {
|
|
6679
6367
|
border-radius: 1.25rem;
|
|
6680
6368
|
}
|
|
6681
|
-
.rounded-
|
|
6369
|
+
.rounded-full\@lg {
|
|
6682
6370
|
border-radius: 50%;
|
|
6683
6371
|
}
|
|
6684
6372
|
.rounded-none\@lg {
|
|
@@ -6696,39 +6384,60 @@ code {
|
|
|
6696
6384
|
}
|
|
6697
6385
|
@media (min-width: 1280px) {
|
|
6698
6386
|
.border-0\@xl {
|
|
6387
|
+
--border-size: 0px;
|
|
6699
6388
|
border-width: 0px;
|
|
6700
6389
|
border-style: solid;
|
|
6701
|
-
border-color: var(--border-
|
|
6390
|
+
border-color: var(--border-color);
|
|
6391
|
+
--border-style: solid;
|
|
6392
|
+
--border-color: var(--border-color);
|
|
6702
6393
|
}
|
|
6703
6394
|
.border-1\@xl {
|
|
6395
|
+
--border-size: 1px;
|
|
6704
6396
|
border-width: 1px;
|
|
6705
6397
|
border-style: solid;
|
|
6706
|
-
border-color: var(--border-
|
|
6398
|
+
border-color: var(--border-color);
|
|
6399
|
+
--border-style: solid;
|
|
6400
|
+
--border-color: var(--border-color);
|
|
6707
6401
|
}
|
|
6708
6402
|
.border-2\@xl {
|
|
6403
|
+
--border-size: 2px;
|
|
6709
6404
|
border-width: 2px;
|
|
6710
6405
|
border-style: solid;
|
|
6711
|
-
border-color: var(--border-
|
|
6406
|
+
border-color: var(--border-color);
|
|
6407
|
+
--border-style: solid;
|
|
6408
|
+
--border-color: var(--border-color);
|
|
6712
6409
|
}
|
|
6713
6410
|
.border-4\@xl {
|
|
6411
|
+
--border-size: 4px;
|
|
6714
6412
|
border-width: 4px;
|
|
6715
6413
|
border-style: solid;
|
|
6716
|
-
border-color: var(--border-
|
|
6414
|
+
border-color: var(--border-color);
|
|
6415
|
+
--border-style: solid;
|
|
6416
|
+
--border-color: var(--border-color);
|
|
6717
6417
|
}
|
|
6718
6418
|
.border-8\@xl {
|
|
6419
|
+
--border-size: 8px;
|
|
6719
6420
|
border-width: 8px;
|
|
6720
6421
|
border-style: solid;
|
|
6721
|
-
border-color: var(--border-
|
|
6422
|
+
border-color: var(--border-color);
|
|
6423
|
+
--border-style: solid;
|
|
6424
|
+
--border-color: var(--border-color);
|
|
6722
6425
|
}
|
|
6723
6426
|
.border\@xl {
|
|
6427
|
+
--border-size: 1px;
|
|
6724
6428
|
border-width: 1px;
|
|
6725
6429
|
border-style: solid;
|
|
6726
|
-
border-color: var(--border-
|
|
6430
|
+
border-color: var(--border-color);
|
|
6431
|
+
--border-style: solid;
|
|
6432
|
+
--border-color: var(--border-color);
|
|
6727
6433
|
}
|
|
6728
6434
|
.border-0\@xl {
|
|
6435
|
+
--border-size: 0px;
|
|
6729
6436
|
border-width: 0px;
|
|
6730
6437
|
border-style: solid;
|
|
6731
|
-
border-color: var(--border-
|
|
6438
|
+
border-color: var(--border-color);
|
|
6439
|
+
--border-style: solid;
|
|
6440
|
+
--border-color: var(--border-color);
|
|
6732
6441
|
}
|
|
6733
6442
|
.rounded-xs\@xl {
|
|
6734
6443
|
border-radius: 0.25rem;
|
|
@@ -6748,7 +6457,7 @@ code {
|
|
|
6748
6457
|
.rounded-2xl\@xl {
|
|
6749
6458
|
border-radius: 1.25rem;
|
|
6750
6459
|
}
|
|
6751
|
-
.rounded-
|
|
6460
|
+
.rounded-full\@xl {
|
|
6752
6461
|
border-radius: 50%;
|
|
6753
6462
|
}
|
|
6754
6463
|
.rounded-none\@xl {
|
|
@@ -6766,39 +6475,60 @@ code {
|
|
|
6766
6475
|
}
|
|
6767
6476
|
@media (min-width: 1536px) {
|
|
6768
6477
|
.border-0\@2xl {
|
|
6478
|
+
--border-size: 0px;
|
|
6769
6479
|
border-width: 0px;
|
|
6770
6480
|
border-style: solid;
|
|
6771
|
-
border-color: var(--border-
|
|
6481
|
+
border-color: var(--border-color);
|
|
6482
|
+
--border-style: solid;
|
|
6483
|
+
--border-color: var(--border-color);
|
|
6772
6484
|
}
|
|
6773
6485
|
.border-1\@2xl {
|
|
6486
|
+
--border-size: 1px;
|
|
6774
6487
|
border-width: 1px;
|
|
6775
6488
|
border-style: solid;
|
|
6776
|
-
border-color: var(--border-
|
|
6489
|
+
border-color: var(--border-color);
|
|
6490
|
+
--border-style: solid;
|
|
6491
|
+
--border-color: var(--border-color);
|
|
6777
6492
|
}
|
|
6778
6493
|
.border-2\@2xl {
|
|
6494
|
+
--border-size: 2px;
|
|
6779
6495
|
border-width: 2px;
|
|
6780
6496
|
border-style: solid;
|
|
6781
|
-
border-color: var(--border-
|
|
6497
|
+
border-color: var(--border-color);
|
|
6498
|
+
--border-style: solid;
|
|
6499
|
+
--border-color: var(--border-color);
|
|
6782
6500
|
}
|
|
6783
6501
|
.border-4\@2xl {
|
|
6502
|
+
--border-size: 4px;
|
|
6784
6503
|
border-width: 4px;
|
|
6785
6504
|
border-style: solid;
|
|
6786
|
-
border-color: var(--border-
|
|
6505
|
+
border-color: var(--border-color);
|
|
6506
|
+
--border-style: solid;
|
|
6507
|
+
--border-color: var(--border-color);
|
|
6787
6508
|
}
|
|
6788
6509
|
.border-8\@2xl {
|
|
6510
|
+
--border-size: 8px;
|
|
6789
6511
|
border-width: 8px;
|
|
6790
6512
|
border-style: solid;
|
|
6791
|
-
border-color: var(--border-
|
|
6513
|
+
border-color: var(--border-color);
|
|
6514
|
+
--border-style: solid;
|
|
6515
|
+
--border-color: var(--border-color);
|
|
6792
6516
|
}
|
|
6793
6517
|
.border\@2xl {
|
|
6518
|
+
--border-size: 1px;
|
|
6794
6519
|
border-width: 1px;
|
|
6795
6520
|
border-style: solid;
|
|
6796
|
-
border-color: var(--border-
|
|
6521
|
+
border-color: var(--border-color);
|
|
6522
|
+
--border-style: solid;
|
|
6523
|
+
--border-color: var(--border-color);
|
|
6797
6524
|
}
|
|
6798
6525
|
.border-0\@2xl {
|
|
6526
|
+
--border-size: 0px;
|
|
6799
6527
|
border-width: 0px;
|
|
6800
6528
|
border-style: solid;
|
|
6801
|
-
border-color: var(--border-
|
|
6529
|
+
border-color: var(--border-color);
|
|
6530
|
+
--border-style: solid;
|
|
6531
|
+
--border-color: var(--border-color);
|
|
6802
6532
|
}
|
|
6803
6533
|
.rounded-xs\@2xl {
|
|
6804
6534
|
border-radius: 0.25rem;
|
|
@@ -6818,7 +6548,7 @@ code {
|
|
|
6818
6548
|
.rounded-2xl\@2xl {
|
|
6819
6549
|
border-radius: 1.25rem;
|
|
6820
6550
|
}
|
|
6821
|
-
.rounded-
|
|
6551
|
+
.rounded-full\@2xl {
|
|
6822
6552
|
border-radius: 50%;
|
|
6823
6553
|
}
|
|
6824
6554
|
.rounded-none\@2xl {
|
|
@@ -6834,21 +6564,6 @@ code {
|
|
|
6834
6564
|
border-radius: 9999px;
|
|
6835
6565
|
}
|
|
6836
6566
|
}
|
|
6837
|
-
/**
|
|
6838
|
-
* Container Query Mixins
|
|
6839
|
-
*
|
|
6840
|
-
* Usage:
|
|
6841
|
-
* .container {
|
|
6842
|
-
* container-type: inline-size;
|
|
6843
|
-
* container-name: sidebar;
|
|
6844
|
-
* }
|
|
6845
|
-
*
|
|
6846
|
-
* .item {
|
|
6847
|
-
* @include container-up('md', 'sidebar') {
|
|
6848
|
-
* // Styles for 'md' and up within 'sidebar' container
|
|
6849
|
-
* }
|
|
6850
|
-
* }
|
|
6851
|
-
*/
|
|
6852
6567
|
.container-inline-size {
|
|
6853
6568
|
container-type: inline-size;
|
|
6854
6569
|
}
|
|
@@ -7001,42 +6716,6 @@ code {
|
|
|
7001
6716
|
cursor: all-scroll;
|
|
7002
6717
|
}
|
|
7003
6718
|
|
|
7004
|
-
/**
|
|
7005
|
-
* Display Utilities
|
|
7006
|
-
*
|
|
7007
|
-
* Classes:
|
|
7008
|
-
* - .hide, .show: Control element visibility
|
|
7009
|
-
* - .block, .inline, .inline-block: Basic display modes
|
|
7010
|
-
* - .d-tbl, .d-tbl-row, .d-tbl-cell: Table display modes
|
|
7011
|
-
* - .overflow-hidden: Control overflow behavior
|
|
7012
|
-
*
|
|
7013
|
-
* All utilities support responsive variants with @breakpoint suffix:
|
|
7014
|
-
* - .hide@md, .block@lg, etc.
|
|
7015
|
-
*/
|
|
7016
|
-
/**
|
|
7017
|
-
* @description Set display to none.
|
|
7018
|
-
*/
|
|
7019
|
-
/**
|
|
7020
|
-
* @description Set display to block.
|
|
7021
|
-
*/
|
|
7022
|
-
/**
|
|
7023
|
-
* @description Set display to inline.
|
|
7024
|
-
*/
|
|
7025
|
-
/**
|
|
7026
|
-
* @description Set display to inline-block.
|
|
7027
|
-
*/
|
|
7028
|
-
/**
|
|
7029
|
-
* @description Set display to initial original state.
|
|
7030
|
-
*/
|
|
7031
|
-
/**
|
|
7032
|
-
* @description Set display to table.
|
|
7033
|
-
*/
|
|
7034
|
-
/**
|
|
7035
|
-
* @description Set display to table-row.
|
|
7036
|
-
*/
|
|
7037
|
-
/**
|
|
7038
|
-
* @description Set display to table-cell.
|
|
7039
|
-
*/
|
|
7040
6719
|
.hide {
|
|
7041
6720
|
display: none;
|
|
7042
6721
|
}
|
|
@@ -7057,6 +6736,24 @@ code {
|
|
|
7057
6736
|
display: inline-block;
|
|
7058
6737
|
}
|
|
7059
6738
|
|
|
6739
|
+
.contents {
|
|
6740
|
+
display: contents;
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
.grid {
|
|
6744
|
+
display: grid;
|
|
6745
|
+
}
|
|
6746
|
+
.grid.inline {
|
|
6747
|
+
display: inline-grid;
|
|
6748
|
+
}
|
|
6749
|
+
|
|
6750
|
+
.flex {
|
|
6751
|
+
display: flex;
|
|
6752
|
+
}
|
|
6753
|
+
.flex.inline {
|
|
6754
|
+
display: inline-flex;
|
|
6755
|
+
}
|
|
6756
|
+
|
|
7060
6757
|
.visible {
|
|
7061
6758
|
visibility: visible;
|
|
7062
6759
|
}
|
|
@@ -7069,10 +6766,6 @@ code {
|
|
|
7069
6766
|
visibility: collapse;
|
|
7070
6767
|
}
|
|
7071
6768
|
|
|
7072
|
-
.contents {
|
|
7073
|
-
display: contents;
|
|
7074
|
-
}
|
|
7075
|
-
|
|
7076
6769
|
.overflow-hidden {
|
|
7077
6770
|
overflow: hidden;
|
|
7078
6771
|
}
|
|
@@ -7139,6 +6832,21 @@ code {
|
|
|
7139
6832
|
.inline-block\@xs {
|
|
7140
6833
|
display: inline-block;
|
|
7141
6834
|
}
|
|
6835
|
+
.contents\@xs {
|
|
6836
|
+
display: contents;
|
|
6837
|
+
}
|
|
6838
|
+
.grid\@xs {
|
|
6839
|
+
display: grid;
|
|
6840
|
+
}
|
|
6841
|
+
.grid\@xs.inline {
|
|
6842
|
+
display: inline-grid;
|
|
6843
|
+
}
|
|
6844
|
+
.flex\@xs {
|
|
6845
|
+
display: flex;
|
|
6846
|
+
}
|
|
6847
|
+
.flex\@xs.inline {
|
|
6848
|
+
display: inline-flex;
|
|
6849
|
+
}
|
|
7142
6850
|
.visible\@xs {
|
|
7143
6851
|
visibility: visible;
|
|
7144
6852
|
}
|
|
@@ -7148,9 +6856,6 @@ code {
|
|
|
7148
6856
|
.collapse\@xs {
|
|
7149
6857
|
visibility: collapse;
|
|
7150
6858
|
}
|
|
7151
|
-
.contents\@xs {
|
|
7152
|
-
display: contents;
|
|
7153
|
-
}
|
|
7154
6859
|
.overflow-hidden\@xs {
|
|
7155
6860
|
overflow: hidden;
|
|
7156
6861
|
}
|
|
@@ -7207,6 +6912,21 @@ code {
|
|
|
7207
6912
|
.inline-block\@sm {
|
|
7208
6913
|
display: inline-block;
|
|
7209
6914
|
}
|
|
6915
|
+
.contents\@sm {
|
|
6916
|
+
display: contents;
|
|
6917
|
+
}
|
|
6918
|
+
.grid\@sm {
|
|
6919
|
+
display: grid;
|
|
6920
|
+
}
|
|
6921
|
+
.grid\@sm.inline {
|
|
6922
|
+
display: inline-grid;
|
|
6923
|
+
}
|
|
6924
|
+
.flex\@sm {
|
|
6925
|
+
display: flex;
|
|
6926
|
+
}
|
|
6927
|
+
.flex\@sm.inline {
|
|
6928
|
+
display: inline-flex;
|
|
6929
|
+
}
|
|
7210
6930
|
.visible\@sm {
|
|
7211
6931
|
visibility: visible;
|
|
7212
6932
|
}
|
|
@@ -7216,9 +6936,6 @@ code {
|
|
|
7216
6936
|
.collapse\@sm {
|
|
7217
6937
|
visibility: collapse;
|
|
7218
6938
|
}
|
|
7219
|
-
.contents\@sm {
|
|
7220
|
-
display: contents;
|
|
7221
|
-
}
|
|
7222
6939
|
.overflow-hidden\@sm {
|
|
7223
6940
|
overflow: hidden;
|
|
7224
6941
|
}
|
|
@@ -7275,6 +6992,21 @@ code {
|
|
|
7275
6992
|
.inline-block\@md {
|
|
7276
6993
|
display: inline-block;
|
|
7277
6994
|
}
|
|
6995
|
+
.contents\@md {
|
|
6996
|
+
display: contents;
|
|
6997
|
+
}
|
|
6998
|
+
.grid\@md {
|
|
6999
|
+
display: grid;
|
|
7000
|
+
}
|
|
7001
|
+
.grid\@md.inline {
|
|
7002
|
+
display: inline-grid;
|
|
7003
|
+
}
|
|
7004
|
+
.flex\@md {
|
|
7005
|
+
display: flex;
|
|
7006
|
+
}
|
|
7007
|
+
.flex\@md.inline {
|
|
7008
|
+
display: inline-flex;
|
|
7009
|
+
}
|
|
7278
7010
|
.visible\@md {
|
|
7279
7011
|
visibility: visible;
|
|
7280
7012
|
}
|
|
@@ -7284,9 +7016,6 @@ code {
|
|
|
7284
7016
|
.collapse\@md {
|
|
7285
7017
|
visibility: collapse;
|
|
7286
7018
|
}
|
|
7287
|
-
.contents\@md {
|
|
7288
|
-
display: contents;
|
|
7289
|
-
}
|
|
7290
7019
|
.overflow-hidden\@md {
|
|
7291
7020
|
overflow: hidden;
|
|
7292
7021
|
}
|
|
@@ -7343,6 +7072,21 @@ code {
|
|
|
7343
7072
|
.inline-block\@lg {
|
|
7344
7073
|
display: inline-block;
|
|
7345
7074
|
}
|
|
7075
|
+
.contents\@lg {
|
|
7076
|
+
display: contents;
|
|
7077
|
+
}
|
|
7078
|
+
.grid\@lg {
|
|
7079
|
+
display: grid;
|
|
7080
|
+
}
|
|
7081
|
+
.grid\@lg.inline {
|
|
7082
|
+
display: inline-grid;
|
|
7083
|
+
}
|
|
7084
|
+
.flex\@lg {
|
|
7085
|
+
display: flex;
|
|
7086
|
+
}
|
|
7087
|
+
.flex\@lg.inline {
|
|
7088
|
+
display: inline-flex;
|
|
7089
|
+
}
|
|
7346
7090
|
.visible\@lg {
|
|
7347
7091
|
visibility: visible;
|
|
7348
7092
|
}
|
|
@@ -7352,9 +7096,6 @@ code {
|
|
|
7352
7096
|
.collapse\@lg {
|
|
7353
7097
|
visibility: collapse;
|
|
7354
7098
|
}
|
|
7355
|
-
.contents\@lg {
|
|
7356
|
-
display: contents;
|
|
7357
|
-
}
|
|
7358
7099
|
.overflow-hidden\@lg {
|
|
7359
7100
|
overflow: hidden;
|
|
7360
7101
|
}
|
|
@@ -7411,6 +7152,21 @@ code {
|
|
|
7411
7152
|
.inline-block\@xl {
|
|
7412
7153
|
display: inline-block;
|
|
7413
7154
|
}
|
|
7155
|
+
.contents\@xl {
|
|
7156
|
+
display: contents;
|
|
7157
|
+
}
|
|
7158
|
+
.grid\@xl {
|
|
7159
|
+
display: grid;
|
|
7160
|
+
}
|
|
7161
|
+
.grid\@xl.inline {
|
|
7162
|
+
display: inline-grid;
|
|
7163
|
+
}
|
|
7164
|
+
.flex\@xl {
|
|
7165
|
+
display: flex;
|
|
7166
|
+
}
|
|
7167
|
+
.flex\@xl.inline {
|
|
7168
|
+
display: inline-flex;
|
|
7169
|
+
}
|
|
7414
7170
|
.visible\@xl {
|
|
7415
7171
|
visibility: visible;
|
|
7416
7172
|
}
|
|
@@ -7420,9 +7176,6 @@ code {
|
|
|
7420
7176
|
.collapse\@xl {
|
|
7421
7177
|
visibility: collapse;
|
|
7422
7178
|
}
|
|
7423
|
-
.contents\@xl {
|
|
7424
|
-
display: contents;
|
|
7425
|
-
}
|
|
7426
7179
|
.overflow-hidden\@xl {
|
|
7427
7180
|
overflow: hidden;
|
|
7428
7181
|
}
|
|
@@ -7479,6 +7232,21 @@ code {
|
|
|
7479
7232
|
.inline-block\@2xl {
|
|
7480
7233
|
display: inline-block;
|
|
7481
7234
|
}
|
|
7235
|
+
.contents\@2xl {
|
|
7236
|
+
display: contents;
|
|
7237
|
+
}
|
|
7238
|
+
.grid\@2xl {
|
|
7239
|
+
display: grid;
|
|
7240
|
+
}
|
|
7241
|
+
.grid\@2xl.inline {
|
|
7242
|
+
display: inline-grid;
|
|
7243
|
+
}
|
|
7244
|
+
.flex\@2xl {
|
|
7245
|
+
display: flex;
|
|
7246
|
+
}
|
|
7247
|
+
.flex\@2xl.inline {
|
|
7248
|
+
display: inline-flex;
|
|
7249
|
+
}
|
|
7482
7250
|
.visible\@2xl {
|
|
7483
7251
|
visibility: visible;
|
|
7484
7252
|
}
|
|
@@ -7488,9 +7256,6 @@ code {
|
|
|
7488
7256
|
.collapse\@2xl {
|
|
7489
7257
|
visibility: collapse;
|
|
7490
7258
|
}
|
|
7491
|
-
.contents\@2xl {
|
|
7492
|
-
display: contents;
|
|
7493
|
-
}
|
|
7494
7259
|
.overflow-hidden\@2xl {
|
|
7495
7260
|
overflow: hidden;
|
|
7496
7261
|
}
|
|
@@ -7531,19 +7296,6 @@ code {
|
|
|
7531
7296
|
display: table-cell;
|
|
7532
7297
|
}
|
|
7533
7298
|
}
|
|
7534
|
-
/**
|
|
7535
|
-
* Generates a CSS shadow string from a given size.
|
|
7536
|
-
*
|
|
7537
|
-
* @param {String} $size - The shadow size.
|
|
7538
|
-
* @param {String} $color - The shadow color.
|
|
7539
|
-
* @return {String} - The CSS shadow string.
|
|
7540
|
-
*/
|
|
7541
|
-
/**
|
|
7542
|
-
* Generates a CSS shadow string from a given size.
|
|
7543
|
-
*
|
|
7544
|
-
* @param {String} $size - The shadow size.
|
|
7545
|
-
* @param {String} $color - The shadow color.
|
|
7546
|
-
*/
|
|
7547
7299
|
.shadow-none {
|
|
7548
7300
|
box-shadow: none !important;
|
|
7549
7301
|
}
|
|
@@ -15123,7 +14875,7 @@ code {
|
|
|
15123
14875
|
}
|
|
15124
14876
|
|
|
15125
14877
|
[role~=tooltip][data-microtip-position|=top]::before {
|
|
15126
|
-
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
14878
|
+
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
15127
14879
|
height: 6px;
|
|
15128
14880
|
width: 18px;
|
|
15129
14881
|
margin-bottom: 6px;
|
|
@@ -15161,7 +14913,7 @@ code {
|
|
|
15161
14913
|
}
|
|
15162
14914
|
|
|
15163
14915
|
[role~=tooltip][data-microtip-position|=bottom]::before {
|
|
15164
|
-
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
14916
|
+
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
15165
14917
|
height: 6px;
|
|
15166
14918
|
width: 18px;
|
|
15167
14919
|
margin-top: 5px;
|
|
@@ -15208,7 +14960,7 @@ code {
|
|
|
15208
14960
|
transform: translate3d(10px, -50%, 0);
|
|
15209
14961
|
}
|
|
15210
14962
|
[role~=tooltip][data-microtip-position=left]::before {
|
|
15211
|
-
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
14963
|
+
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
15212
14964
|
height: 18px;
|
|
15213
14965
|
width: 6px;
|
|
15214
14966
|
margin-right: 5px;
|
|
@@ -15228,7 +14980,7 @@ code {
|
|
|
15228
14980
|
transform: translate3d(-10px, -50%, 0);
|
|
15229
14981
|
}
|
|
15230
14982
|
[role~=tooltip][data-microtip-position=right]::before {
|
|
15231
|
-
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
14983
|
+
background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A// www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
15232
14984
|
height: 18px;
|
|
15233
14985
|
width: 6px;
|
|
15234
14986
|
margin-bottom: 0;
|
|
@@ -15256,15 +15008,6 @@ code {
|
|
|
15256
15008
|
width: var(--tooltip-large-width);
|
|
15257
15009
|
}
|
|
15258
15010
|
|
|
15259
|
-
/**
|
|
15260
|
-
* Transform Utilities
|
|
15261
|
-
*
|
|
15262
|
-
* - Translate (X, Y, Z)
|
|
15263
|
-
* - Scale
|
|
15264
|
-
* - Rotate
|
|
15265
|
-
* - Skew
|
|
15266
|
-
* - Transform origin
|
|
15267
|
-
*/
|
|
15268
15011
|
.translate-x-0,
|
|
15269
15012
|
.hover\:translate-x-0:hover,
|
|
15270
15013
|
.group:hover .group-hover\:translate-x-0 {
|
|
@@ -20358,15 +20101,6 @@ code {
|
|
|
20358
20101
|
transform-origin: top left;
|
|
20359
20102
|
}
|
|
20360
20103
|
}
|
|
20361
|
-
/**
|
|
20362
|
-
* Transition Utilities
|
|
20363
|
-
*
|
|
20364
|
-
* - .transition: Default transition for common properties
|
|
20365
|
-
* - .transition-{property}: Transition specific properties
|
|
20366
|
-
* - .duration-{time}: Set transition duration
|
|
20367
|
-
* - .ease-{type}: Set transition timing function
|
|
20368
|
-
* - .delay-{time}: Set transition delay
|
|
20369
|
-
*/
|
|
20370
20104
|
.transition-none {
|
|
20371
20105
|
transition-property: none;
|
|
20372
20106
|
}
|
|
@@ -21029,26 +20763,6 @@ code {
|
|
|
21029
20763
|
transition-delay: 1000ms;
|
|
21030
20764
|
}
|
|
21031
20765
|
}
|
|
21032
|
-
/**
|
|
21033
|
-
* Typography Utilities
|
|
21034
|
-
*
|
|
21035
|
-
* Classes:
|
|
21036
|
-
* - Font Size: .text-xs, .text-sm, .text-base, etc.
|
|
21037
|
-
* - Font Weight: .font-thin, .font-normal, .font-bold, etc.
|
|
21038
|
-
* - Line Height: .leading-none, .leading-tight, .leading-normal, etc.
|
|
21039
|
-
* - Text Align: .text-left, .text-center, .text-right, .text-justify
|
|
21040
|
-
* - Text Transform: .uppercase, .lowercase, .capitalize, .normal-case
|
|
21041
|
-
* - Text Style: .italic, .not-italic
|
|
21042
|
-
* - Text Decoration: .underline, .line-through, .no-underline
|
|
21043
|
-
* - Text Overflow: .truncate
|
|
21044
|
-
*
|
|
21045
|
-
* All utilities support responsive variants with @breakpoint suffix:
|
|
21046
|
-
* - .text-lg@md, .font-bold@lg, etc.
|
|
21047
|
-
*/
|
|
21048
|
-
/**
|
|
21049
|
-
* Text size utility
|
|
21050
|
-
* @param {string} $size - The size of the text.
|
|
21051
|
-
*/
|
|
21052
20766
|
.text-xs {
|
|
21053
20767
|
font-size: 0.75rem;
|
|
21054
20768
|
}
|
|
@@ -22488,24 +22202,6 @@ code {
|
|
|
22488
22202
|
min-width: 0;
|
|
22489
22203
|
}
|
|
22490
22204
|
}
|
|
22491
|
-
/**
|
|
22492
|
-
* Z-Index Utilities
|
|
22493
|
-
*
|
|
22494
|
-
* Classes:
|
|
22495
|
-
* - z-index values: .z-0, .z-10, .z-20, etc.
|
|
22496
|
-
* - Named z-index levels: .z-auto, .z-base, .z-dropdown, etc.
|
|
22497
|
-
*
|
|
22498
|
-
* All utilities support responsive variants with @breakpoint suffix:
|
|
22499
|
-
* - .z-10@md, .z-dropdown@lg, etc.
|
|
22500
|
-
*/
|
|
22501
|
-
/**
|
|
22502
|
-
* Apply a z-index value
|
|
22503
|
-
* @param {Number|String} $value - Z-index value or key
|
|
22504
|
-
*/
|
|
22505
|
-
/**
|
|
22506
|
-
* Generate z-index utility classes
|
|
22507
|
-
* @param {String} $breakpoint - Optional breakpoint name for responsive variants
|
|
22508
|
-
*/
|
|
22509
22205
|
.z-auto {
|
|
22510
22206
|
z-index: auto;
|
|
22511
22207
|
}
|
|
@@ -23112,208 +22808,6 @@ code {
|
|
|
23112
22808
|
z-index: 9999;
|
|
23113
22809
|
}
|
|
23114
22810
|
}
|
|
23115
|
-
/**
|
|
23116
|
-
* @component Spacing
|
|
23117
|
-
* @description Controls element margins, padding, gaps, and spacing between children
|
|
23118
|
-
*
|
|
23119
|
-
* @example
|
|
23120
|
-
* <!-- Padding -->
|
|
23121
|
-
* <div class="p-4">All sides padding</div>
|
|
23122
|
-
* <div class="px-4 py-2">Horizontal and vertical padding</div>
|
|
23123
|
-
* <div class="pt-2 pb-4">Top and bottom padding</div>
|
|
23124
|
-
*
|
|
23125
|
-
* <!-- Margins -->
|
|
23126
|
-
* <div class="m-4">All sides margin</div>
|
|
23127
|
-
* <div class="mt-4">Top margin only</div>
|
|
23128
|
-
* <div class="mx-auto">Horizontally centered</div>
|
|
23129
|
-
*
|
|
23130
|
-
* <!-- Gap (for flex/grid containers) -->
|
|
23131
|
-
* <div class="flex gap-4">
|
|
23132
|
-
* <div>Item 1</div>
|
|
23133
|
-
* <div>Item 2</div>
|
|
23134
|
-
* </div>
|
|
23135
|
-
*
|
|
23136
|
-
* <!-- Responsive spacing -->
|
|
23137
|
-
* <div class="p-2 p-4@md p-6@lg">
|
|
23138
|
-
* Padding increases at each breakpoint
|
|
23139
|
-
* </div>
|
|
23140
|
-
*
|
|
23141
|
-
* <!-- Child spacing -->
|
|
23142
|
-
* <div class="space-y-4">
|
|
23143
|
-
* <div>First child</div>
|
|
23144
|
-
* <div>Second child (margin-top: 1rem)</div>
|
|
23145
|
-
* <div>Third child (margin-top: 1rem)</div>
|
|
23146
|
-
* </div>
|
|
23147
|
-
*
|
|
23148
|
-
* @classes
|
|
23149
|
-
* Padding:
|
|
23150
|
-
* - p-{size}: Padding on all sides
|
|
23151
|
-
* - px-{size}: Horizontal padding (left and right)
|
|
23152
|
-
* - py-{size}: Vertical padding (top and bottom)
|
|
23153
|
-
* - pt-{size}, pr-{size}, pb-{size}, pl-{size}: Individual side padding
|
|
23154
|
-
*
|
|
23155
|
-
* Margin:
|
|
23156
|
-
* - m-{size}: Margin on all sides
|
|
23157
|
-
* - mx-{size}: Horizontal margin (left and right)
|
|
23158
|
-
* - my-{size}: Vertical margin (top and bottom)
|
|
23159
|
-
* - mt-{size}, mr-{size}, mb-{size}, ml-{size}: Individual side margin
|
|
23160
|
-
* - mx-auto, ml-auto, mr-auto: Auto margin for alignment
|
|
23161
|
-
*
|
|
23162
|
-
* Gap:
|
|
23163
|
-
* - gap-{size}: Gap between flex/grid children (all directions)
|
|
23164
|
-
* - gap-x-{size}: Horizontal gap between children (column-gap)
|
|
23165
|
-
* - gap-y-{size}: Vertical gap between children (row-gap)
|
|
23166
|
-
*
|
|
23167
|
-
* Child Spacing:
|
|
23168
|
-
* - space-x-{size}: Horizontal space between children
|
|
23169
|
-
* - space-y-{size}: Vertical space between children
|
|
23170
|
-
*
|
|
23171
|
-
* @responsive
|
|
23172
|
-
* All spacing classes support responsive variants using @breakpoint suffix:
|
|
23173
|
-
* - p-4@md: 1rem padding on medium screens and up
|
|
23174
|
-
* - mt-8@lg: 2rem top margin on large screens
|
|
23175
|
-
* - gap-2@xl: 0.5rem gap on extra large screens
|
|
23176
|
-
*
|
|
23177
|
-
* @customization
|
|
23178
|
-
* Spacing values are defined in the $spacings map in variables.scss
|
|
23179
|
-
* Typically follows a scale where higher numbers mean more spacing
|
|
23180
|
-
*
|
|
23181
|
-
* @see flex, grid, display
|
|
23182
|
-
*/
|
|
23183
|
-
/**
|
|
23184
|
-
* @mixin p
|
|
23185
|
-
* @description Sets padding on all sides
|
|
23186
|
-
* @param {Number|String} $val - Padding value
|
|
23187
|
-
*/
|
|
23188
|
-
/**
|
|
23189
|
-
* @mixin px
|
|
23190
|
-
* @description Sets horizontal padding (left and right)
|
|
23191
|
-
* @param {Number|String} $val - Padding value
|
|
23192
|
-
*/
|
|
23193
|
-
/**
|
|
23194
|
-
* @mixin py
|
|
23195
|
-
* @description Sets vertical padding (top and bottom)
|
|
23196
|
-
* @param {Number|String} $val - Padding value
|
|
23197
|
-
*/
|
|
23198
|
-
/**
|
|
23199
|
-
* @mixin pt
|
|
23200
|
-
* @description Sets padding-top
|
|
23201
|
-
* @param {Number|String} $val - Padding value
|
|
23202
|
-
*/
|
|
23203
|
-
/**
|
|
23204
|
-
* @mixin pr
|
|
23205
|
-
* @description Sets padding-right
|
|
23206
|
-
* @param {Number|String} $val - Padding value
|
|
23207
|
-
*/
|
|
23208
|
-
/**
|
|
23209
|
-
* @mixin pb
|
|
23210
|
-
* @description Sets padding-bottom
|
|
23211
|
-
* @param {Number|String} $val - Padding value
|
|
23212
|
-
*/
|
|
23213
|
-
/**
|
|
23214
|
-
* @mixin pl
|
|
23215
|
-
* @description Sets padding-left
|
|
23216
|
-
* @param {Number|String} $val - Padding value
|
|
23217
|
-
*/
|
|
23218
|
-
/**
|
|
23219
|
-
* @mixin m
|
|
23220
|
-
* @description Sets margin on all sides
|
|
23221
|
-
* @param {Number|String} $val - Margin value
|
|
23222
|
-
*/
|
|
23223
|
-
/**
|
|
23224
|
-
* @mixin mx
|
|
23225
|
-
* @description Sets horizontal margin (left and right)
|
|
23226
|
-
* @param {Number|String} $val - Margin value
|
|
23227
|
-
*/
|
|
23228
|
-
/**
|
|
23229
|
-
* @mixin my
|
|
23230
|
-
* @description Sets vertical margin (top and bottom)
|
|
23231
|
-
* @param {Number|String} $val - Margin value
|
|
23232
|
-
*/
|
|
23233
|
-
/**
|
|
23234
|
-
* @mixin mt
|
|
23235
|
-
* @description Sets margin-top
|
|
23236
|
-
* @param {Number|String} $val - Margin value
|
|
23237
|
-
*/
|
|
23238
|
-
/**
|
|
23239
|
-
* @mixin mr
|
|
23240
|
-
* @description Sets margin-right
|
|
23241
|
-
* @param {Number|String} $val - Margin value
|
|
23242
|
-
*/
|
|
23243
|
-
/**
|
|
23244
|
-
* @mixin mb
|
|
23245
|
-
* @description Sets margin-bottom
|
|
23246
|
-
* @param {Number|String} $val - Margin value
|
|
23247
|
-
*/
|
|
23248
|
-
/**
|
|
23249
|
-
* @mixin ml
|
|
23250
|
-
* @description Sets margin-left
|
|
23251
|
-
* @param {Number|String} $val - Margin value
|
|
23252
|
-
*/
|
|
23253
|
-
/**
|
|
23254
|
-
* @mixin ml-auto
|
|
23255
|
-
* @description Sets margin-left to auto
|
|
23256
|
-
*/
|
|
23257
|
-
/**
|
|
23258
|
-
* @mixin mr-auto
|
|
23259
|
-
* @description Sets margin-right to auto
|
|
23260
|
-
*/
|
|
23261
|
-
/**
|
|
23262
|
-
* @mixin mx-auto
|
|
23263
|
-
* @description Centers element horizontally using auto margins
|
|
23264
|
-
*/
|
|
23265
|
-
/**
|
|
23266
|
-
* @mixin inset
|
|
23267
|
-
* @description Sets all inset properties (top, right, bottom, left)
|
|
23268
|
-
* @param {Number|String} $val - Inset value
|
|
23269
|
-
*/
|
|
23270
|
-
/**
|
|
23271
|
-
* @mixin inset-x
|
|
23272
|
-
* @description Sets horizontal inset properties (left and right)
|
|
23273
|
-
* @param {Number|String} $val - Inset value
|
|
23274
|
-
*/
|
|
23275
|
-
/**
|
|
23276
|
-
* @mixin inset-y
|
|
23277
|
-
* @description Sets vertical inset properties (top and bottom)
|
|
23278
|
-
* @param {Number|String} $val - Inset value
|
|
23279
|
-
*/
|
|
23280
|
-
/**
|
|
23281
|
-
* @mixin inset-auto
|
|
23282
|
-
* @description Sets all inset properties to auto
|
|
23283
|
-
*/
|
|
23284
|
-
/**
|
|
23285
|
-
* @mixin inset-x-auto
|
|
23286
|
-
* @description Sets horizontal inset properties to auto
|
|
23287
|
-
*/
|
|
23288
|
-
/**
|
|
23289
|
-
* @mixin inset-y-auto
|
|
23290
|
-
* @description Sets vertical inset properties to auto
|
|
23291
|
-
*/
|
|
23292
|
-
/**
|
|
23293
|
-
* @mixin space-y
|
|
23294
|
-
* @description Adds vertical spacing between direct children
|
|
23295
|
-
* @param {Number|String} $i - Space amount
|
|
23296
|
-
*/
|
|
23297
|
-
/**
|
|
23298
|
-
* @mixin space-x
|
|
23299
|
-
* @description Adds horizontal spacing between direct children
|
|
23300
|
-
* @param {Number|String} $i - Space amount
|
|
23301
|
-
*/
|
|
23302
|
-
/**
|
|
23303
|
-
* @mixin gap
|
|
23304
|
-
* @description Sets gap between grid/flex children
|
|
23305
|
-
* @param {Number|String} $val - Gap value
|
|
23306
|
-
*/
|
|
23307
|
-
/**
|
|
23308
|
-
* @mixin gap-x
|
|
23309
|
-
* @description Sets horizontal gap between grid/flex children
|
|
23310
|
-
* @param {Number|String} $val - Gap value
|
|
23311
|
-
*/
|
|
23312
|
-
/**
|
|
23313
|
-
* @mixin gap-y
|
|
23314
|
-
* @description Sets vertical gap between grid/flex children
|
|
23315
|
-
* @param {Number|String} $val - Gap value
|
|
23316
|
-
*/
|
|
23317
22811
|
.mx-auto {
|
|
23318
22812
|
margin-left: auto;
|
|
23319
22813
|
margin-right: auto;
|
|
@@ -23403,10 +22897,12 @@ code {
|
|
|
23403
22897
|
|
|
23404
22898
|
.gap-0 {
|
|
23405
22899
|
gap: 0px;
|
|
22900
|
+
--flex-gap: 0px;
|
|
23406
22901
|
}
|
|
23407
22902
|
|
|
23408
22903
|
.gap-x-0 {
|
|
23409
22904
|
column-gap: 0px;
|
|
22905
|
+
--flex-gap: 0px;
|
|
23410
22906
|
}
|
|
23411
22907
|
|
|
23412
22908
|
.gap-y-0 {
|
|
@@ -23493,10 +22989,12 @@ code {
|
|
|
23493
22989
|
|
|
23494
22990
|
.gap-1 {
|
|
23495
22991
|
gap: 0.25rem;
|
|
22992
|
+
--flex-gap: 0.25rem;
|
|
23496
22993
|
}
|
|
23497
22994
|
|
|
23498
22995
|
.gap-x-1 {
|
|
23499
22996
|
column-gap: 0.25rem;
|
|
22997
|
+
--flex-gap: 0.25rem;
|
|
23500
22998
|
}
|
|
23501
22999
|
|
|
23502
23000
|
.gap-y-1 {
|
|
@@ -23583,10 +23081,12 @@ code {
|
|
|
23583
23081
|
|
|
23584
23082
|
.gap-2 {
|
|
23585
23083
|
gap: 0.5rem;
|
|
23084
|
+
--flex-gap: 0.5rem;
|
|
23586
23085
|
}
|
|
23587
23086
|
|
|
23588
23087
|
.gap-x-2 {
|
|
23589
23088
|
column-gap: 0.5rem;
|
|
23089
|
+
--flex-gap: 0.5rem;
|
|
23590
23090
|
}
|
|
23591
23091
|
|
|
23592
23092
|
.gap-y-2 {
|
|
@@ -23673,10 +23173,12 @@ code {
|
|
|
23673
23173
|
|
|
23674
23174
|
.gap-3 {
|
|
23675
23175
|
gap: 0.75rem;
|
|
23176
|
+
--flex-gap: 0.75rem;
|
|
23676
23177
|
}
|
|
23677
23178
|
|
|
23678
23179
|
.gap-x-3 {
|
|
23679
23180
|
column-gap: 0.75rem;
|
|
23181
|
+
--flex-gap: 0.75rem;
|
|
23680
23182
|
}
|
|
23681
23183
|
|
|
23682
23184
|
.gap-y-3 {
|
|
@@ -23763,10 +23265,12 @@ code {
|
|
|
23763
23265
|
|
|
23764
23266
|
.gap-4 {
|
|
23765
23267
|
gap: 1rem;
|
|
23268
|
+
--flex-gap: 1rem;
|
|
23766
23269
|
}
|
|
23767
23270
|
|
|
23768
23271
|
.gap-x-4 {
|
|
23769
23272
|
column-gap: 1rem;
|
|
23273
|
+
--flex-gap: 1rem;
|
|
23770
23274
|
}
|
|
23771
23275
|
|
|
23772
23276
|
.gap-y-4 {
|
|
@@ -23853,10 +23357,12 @@ code {
|
|
|
23853
23357
|
|
|
23854
23358
|
.gap-5 {
|
|
23855
23359
|
gap: 1.25rem;
|
|
23360
|
+
--flex-gap: 1.25rem;
|
|
23856
23361
|
}
|
|
23857
23362
|
|
|
23858
23363
|
.gap-x-5 {
|
|
23859
23364
|
column-gap: 1.25rem;
|
|
23365
|
+
--flex-gap: 1.25rem;
|
|
23860
23366
|
}
|
|
23861
23367
|
|
|
23862
23368
|
.gap-y-5 {
|
|
@@ -23943,10 +23449,12 @@ code {
|
|
|
23943
23449
|
|
|
23944
23450
|
.gap-6 {
|
|
23945
23451
|
gap: 1.5rem;
|
|
23452
|
+
--flex-gap: 1.5rem;
|
|
23946
23453
|
}
|
|
23947
23454
|
|
|
23948
23455
|
.gap-x-6 {
|
|
23949
23456
|
column-gap: 1.5rem;
|
|
23457
|
+
--flex-gap: 1.5rem;
|
|
23950
23458
|
}
|
|
23951
23459
|
|
|
23952
23460
|
.gap-y-6 {
|
|
@@ -24033,10 +23541,12 @@ code {
|
|
|
24033
23541
|
|
|
24034
23542
|
.gap-8 {
|
|
24035
23543
|
gap: 2rem;
|
|
23544
|
+
--flex-gap: 2rem;
|
|
24036
23545
|
}
|
|
24037
23546
|
|
|
24038
23547
|
.gap-x-8 {
|
|
24039
23548
|
column-gap: 2rem;
|
|
23549
|
+
--flex-gap: 2rem;
|
|
24040
23550
|
}
|
|
24041
23551
|
|
|
24042
23552
|
.gap-y-8 {
|
|
@@ -24123,10 +23633,12 @@ code {
|
|
|
24123
23633
|
|
|
24124
23634
|
.gap-10 {
|
|
24125
23635
|
gap: 2.5rem;
|
|
23636
|
+
--flex-gap: 2.5rem;
|
|
24126
23637
|
}
|
|
24127
23638
|
|
|
24128
23639
|
.gap-x-10 {
|
|
24129
23640
|
column-gap: 2.5rem;
|
|
23641
|
+
--flex-gap: 2.5rem;
|
|
24130
23642
|
}
|
|
24131
23643
|
|
|
24132
23644
|
.gap-y-10 {
|
|
@@ -24213,10 +23725,12 @@ code {
|
|
|
24213
23725
|
|
|
24214
23726
|
.gap-12 {
|
|
24215
23727
|
gap: 3rem;
|
|
23728
|
+
--flex-gap: 3rem;
|
|
24216
23729
|
}
|
|
24217
23730
|
|
|
24218
23731
|
.gap-x-12 {
|
|
24219
23732
|
column-gap: 3rem;
|
|
23733
|
+
--flex-gap: 3rem;
|
|
24220
23734
|
}
|
|
24221
23735
|
|
|
24222
23736
|
.gap-y-12 {
|
|
@@ -24303,10 +23817,12 @@ code {
|
|
|
24303
23817
|
|
|
24304
23818
|
.gap-16 {
|
|
24305
23819
|
gap: 4rem;
|
|
23820
|
+
--flex-gap: 4rem;
|
|
24306
23821
|
}
|
|
24307
23822
|
|
|
24308
23823
|
.gap-x-16 {
|
|
24309
23824
|
column-gap: 4rem;
|
|
23825
|
+
--flex-gap: 4rem;
|
|
24310
23826
|
}
|
|
24311
23827
|
|
|
24312
23828
|
.gap-y-16 {
|
|
@@ -24393,10 +23909,12 @@ code {
|
|
|
24393
23909
|
|
|
24394
23910
|
.gap-20 {
|
|
24395
23911
|
gap: 5rem;
|
|
23912
|
+
--flex-gap: 5rem;
|
|
24396
23913
|
}
|
|
24397
23914
|
|
|
24398
23915
|
.gap-x-20 {
|
|
24399
23916
|
column-gap: 5rem;
|
|
23917
|
+
--flex-gap: 5rem;
|
|
24400
23918
|
}
|
|
24401
23919
|
|
|
24402
23920
|
.gap-y-20 {
|
|
@@ -24483,10 +24001,12 @@ code {
|
|
|
24483
24001
|
|
|
24484
24002
|
.gap-24 {
|
|
24485
24003
|
gap: 6rem;
|
|
24004
|
+
--flex-gap: 6rem;
|
|
24486
24005
|
}
|
|
24487
24006
|
|
|
24488
24007
|
.gap-x-24 {
|
|
24489
24008
|
column-gap: 6rem;
|
|
24009
|
+
--flex-gap: 6rem;
|
|
24490
24010
|
}
|
|
24491
24011
|
|
|
24492
24012
|
.gap-y-24 {
|
|
@@ -24573,10 +24093,12 @@ code {
|
|
|
24573
24093
|
|
|
24574
24094
|
.gap-32 {
|
|
24575
24095
|
gap: 8rem;
|
|
24096
|
+
--flex-gap: 8rem;
|
|
24576
24097
|
}
|
|
24577
24098
|
|
|
24578
24099
|
.gap-x-32 {
|
|
24579
24100
|
column-gap: 8rem;
|
|
24101
|
+
--flex-gap: 8rem;
|
|
24580
24102
|
}
|
|
24581
24103
|
|
|
24582
24104
|
.gap-y-32 {
|
|
@@ -24663,10 +24185,12 @@ code {
|
|
|
24663
24185
|
|
|
24664
24186
|
.gap-40 {
|
|
24665
24187
|
gap: 10rem;
|
|
24188
|
+
--flex-gap: 10rem;
|
|
24666
24189
|
}
|
|
24667
24190
|
|
|
24668
24191
|
.gap-x-40 {
|
|
24669
24192
|
column-gap: 10rem;
|
|
24193
|
+
--flex-gap: 10rem;
|
|
24670
24194
|
}
|
|
24671
24195
|
|
|
24672
24196
|
.gap-y-40 {
|
|
@@ -24753,10 +24277,12 @@ code {
|
|
|
24753
24277
|
|
|
24754
24278
|
.gap-48 {
|
|
24755
24279
|
gap: 12rem;
|
|
24280
|
+
--flex-gap: 12rem;
|
|
24756
24281
|
}
|
|
24757
24282
|
|
|
24758
24283
|
.gap-x-48 {
|
|
24759
24284
|
column-gap: 12rem;
|
|
24285
|
+
--flex-gap: 12rem;
|
|
24760
24286
|
}
|
|
24761
24287
|
|
|
24762
24288
|
.gap-y-48 {
|
|
@@ -24843,10 +24369,12 @@ code {
|
|
|
24843
24369
|
|
|
24844
24370
|
.gap-56 {
|
|
24845
24371
|
gap: 14rem;
|
|
24372
|
+
--flex-gap: 14rem;
|
|
24846
24373
|
}
|
|
24847
24374
|
|
|
24848
24375
|
.gap-x-56 {
|
|
24849
24376
|
column-gap: 14rem;
|
|
24377
|
+
--flex-gap: 14rem;
|
|
24850
24378
|
}
|
|
24851
24379
|
|
|
24852
24380
|
.gap-y-56 {
|
|
@@ -24933,10 +24461,12 @@ code {
|
|
|
24933
24461
|
|
|
24934
24462
|
.gap-64 {
|
|
24935
24463
|
gap: 16rem;
|
|
24464
|
+
--flex-gap: 16rem;
|
|
24936
24465
|
}
|
|
24937
24466
|
|
|
24938
24467
|
.gap-x-64 {
|
|
24939
24468
|
column-gap: 16rem;
|
|
24469
|
+
--flex-gap: 16rem;
|
|
24940
24470
|
}
|
|
24941
24471
|
|
|
24942
24472
|
.gap-y-64 {
|
|
@@ -32447,36 +31977,6 @@ code {
|
|
|
32447
31977
|
bottom: 16rem;
|
|
32448
31978
|
}
|
|
32449
31979
|
}
|
|
32450
|
-
/**
|
|
32451
|
-
* @mixin animate-bounce
|
|
32452
|
-
* @description Creates a bouncing animation
|
|
32453
|
-
* @param {Map} $props - Animation properties
|
|
32454
|
-
*/
|
|
32455
|
-
/**
|
|
32456
|
-
* @mixin animate-pulse
|
|
32457
|
-
* @description Creates a pulsing opacity animation
|
|
32458
|
-
* @param {Map} $props - Animation properties
|
|
32459
|
-
*/
|
|
32460
|
-
/**
|
|
32461
|
-
* @mixin animate-spin
|
|
32462
|
-
* @description Creates a spinning animation
|
|
32463
|
-
* @param {Map} $props - Animation properties
|
|
32464
|
-
*/
|
|
32465
|
-
/**
|
|
32466
|
-
* @mixin animate-ping
|
|
32467
|
-
* @description Creates a ping animation (scale + fade)
|
|
32468
|
-
* @param {Map} $props - Animation properties
|
|
32469
|
-
*/
|
|
32470
|
-
/**
|
|
32471
|
-
* @mixin animate-fade
|
|
32472
|
-
* @description Creates fade in/out animation
|
|
32473
|
-
* @param {Map} $props - Animation properties
|
|
32474
|
-
*/
|
|
32475
|
-
/**
|
|
32476
|
-
* @mixin animate-shake
|
|
32477
|
-
* @description Creates a shake animation
|
|
32478
|
-
* @param {Map} $props - Animation properties
|
|
32479
|
-
*/
|
|
32480
31980
|
.animate-pulse {
|
|
32481
31981
|
animation: anim-pulse-50-100 1s ease-in-out infinite;
|
|
32482
31982
|
}
|
|
@@ -32564,9 +32064,9 @@ code {
|
|
|
32564
32064
|
}
|
|
32565
32065
|
|
|
32566
32066
|
.animate-shake {
|
|
32567
|
-
animation: anim-shake-
|
|
32067
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32568
32068
|
}
|
|
32569
|
-
@keyframes anim-shake-
|
|
32069
|
+
@keyframes anim-shake-strip-unit(5px) {
|
|
32570
32070
|
0%, 100% {
|
|
32571
32071
|
transform: translateX(0);
|
|
32572
32072
|
}
|
|
@@ -32601,7 +32101,7 @@ code {
|
|
|
32601
32101
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32602
32102
|
}
|
|
32603
32103
|
.animate-shake\@xs {
|
|
32604
|
-
animation: anim-shake-
|
|
32104
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32605
32105
|
}
|
|
32606
32106
|
}
|
|
32607
32107
|
@media (min-width: 640px) {
|
|
@@ -32627,7 +32127,7 @@ code {
|
|
|
32627
32127
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32628
32128
|
}
|
|
32629
32129
|
.animate-shake\@sm {
|
|
32630
|
-
animation: anim-shake-
|
|
32130
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32631
32131
|
}
|
|
32632
32132
|
}
|
|
32633
32133
|
@media (min-width: 768px) {
|
|
@@ -32653,7 +32153,7 @@ code {
|
|
|
32653
32153
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32654
32154
|
}
|
|
32655
32155
|
.animate-shake\@md {
|
|
32656
|
-
animation: anim-shake-
|
|
32156
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32657
32157
|
}
|
|
32658
32158
|
}
|
|
32659
32159
|
@media (min-width: 1024px) {
|
|
@@ -32679,7 +32179,7 @@ code {
|
|
|
32679
32179
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32680
32180
|
}
|
|
32681
32181
|
.animate-shake\@lg {
|
|
32682
|
-
animation: anim-shake-
|
|
32182
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32683
32183
|
}
|
|
32684
32184
|
}
|
|
32685
32185
|
@media (min-width: 1280px) {
|
|
@@ -32705,7 +32205,7 @@ code {
|
|
|
32705
32205
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32706
32206
|
}
|
|
32707
32207
|
.animate-shake\@xl {
|
|
32708
|
-
animation: anim-shake-
|
|
32208
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32709
32209
|
}
|
|
32710
32210
|
}
|
|
32711
32211
|
@media (min-width: 1536px) {
|
|
@@ -32731,7 +32231,7 @@ code {
|
|
|
32731
32231
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32732
32232
|
}
|
|
32733
32233
|
.animate-shake\@2xl {
|
|
32734
|
-
animation: anim-shake-
|
|
32234
|
+
animation: anim-shake-strip-unit(5px) 0.5s ease-in-out 1;
|
|
32735
32235
|
}
|
|
32736
32236
|
}
|
|
32737
32237
|
.hover-ready {
|
|
@@ -32740,137 +32240,6 @@ code {
|
|
|
32740
32240
|
transition-timing-function: ease-in-out;
|
|
32741
32241
|
}
|
|
32742
32242
|
|
|
32743
|
-
/**
|
|
32744
|
-
* @component Position
|
|
32745
|
-
* @description Controls element positioning and placement within the document flow
|
|
32746
|
-
*
|
|
32747
|
-
* @example
|
|
32748
|
-
* <!-- Basic positioning -->
|
|
32749
|
-
* <div class="relative">
|
|
32750
|
-
* <div class="absolute top-0 right-0">
|
|
32751
|
-
* Positioned in top-right corner
|
|
32752
|
-
* </div>
|
|
32753
|
-
* </div>
|
|
32754
|
-
*
|
|
32755
|
-
* <!-- Sticky header -->
|
|
32756
|
-
* <header class="sticky top-0">
|
|
32757
|
-
* This header sticks to the top when scrolling
|
|
32758
|
-
* </header>
|
|
32759
|
-
*
|
|
32760
|
-
* <!-- Responsive positioning -->
|
|
32761
|
-
* <div class="relative@md">
|
|
32762
|
-
* <div class="absolute@md top-2 left-2">
|
|
32763
|
-
* Only positioned on medium screens and up
|
|
32764
|
-
* </div>
|
|
32765
|
-
* </div>
|
|
32766
|
-
*
|
|
32767
|
-
* @classes
|
|
32768
|
-
* Position Types:
|
|
32769
|
-
* - static: Default position, follows document flow
|
|
32770
|
-
* - relative: Positioned relative to normal position
|
|
32771
|
-
* - absolute: Positioned relative to nearest positioned ancestor
|
|
32772
|
-
* - fixed: Positioned relative to viewport
|
|
32773
|
-
* - sticky: Positioned based on scroll position
|
|
32774
|
-
*
|
|
32775
|
-
* Placement:
|
|
32776
|
-
* - top-{value}: Sets top position
|
|
32777
|
-
* - right-{value}: Sets right position
|
|
32778
|
-
* - bottom-{value}: Sets bottom position
|
|
32779
|
-
* - left-{value}: Sets left position
|
|
32780
|
-
*
|
|
32781
|
-
* Common values: 0, 1, 2, 3, 4, 5, 10, etc. (based on spacing scale)
|
|
32782
|
-
*
|
|
32783
|
-
* @responsive
|
|
32784
|
-
* All position classes support responsive variants using @breakpoint suffix:
|
|
32785
|
-
* - relative@md: Relative positioning on medium screens and up
|
|
32786
|
-
* - top-0@lg: Zero top position on large screens
|
|
32787
|
-
*
|
|
32788
|
-
* @see z-index, transform
|
|
32789
|
-
*/
|
|
32790
|
-
/**
|
|
32791
|
-
* @mixin static
|
|
32792
|
-
* @description Sets position to static (default document flow)
|
|
32793
|
-
* @example
|
|
32794
|
-
* .element {
|
|
32795
|
-
* @include static;
|
|
32796
|
-
* }
|
|
32797
|
-
*/
|
|
32798
|
-
/**
|
|
32799
|
-
* @mixin relative
|
|
32800
|
-
* @description Sets position to relative, creating a positioning context
|
|
32801
|
-
* @example
|
|
32802
|
-
* .container {
|
|
32803
|
-
* @include relative;
|
|
32804
|
-
* }
|
|
32805
|
-
*/
|
|
32806
|
-
/**
|
|
32807
|
-
* @mixin absolute
|
|
32808
|
-
* @description Sets position to absolute, removing from normal document flow
|
|
32809
|
-
* @example
|
|
32810
|
-
* .popup {
|
|
32811
|
-
* @include absolute;
|
|
32812
|
-
* top: 0;
|
|
32813
|
-
* left: 0;
|
|
32814
|
-
* }
|
|
32815
|
-
*/
|
|
32816
|
-
/**
|
|
32817
|
-
* @mixin absolute
|
|
32818
|
-
* @description Sets position to absolute, removing from normal document flow
|
|
32819
|
-
* @example
|
|
32820
|
-
* .popup {
|
|
32821
|
-
* @include absolute;
|
|
32822
|
-
* top: 0;
|
|
32823
|
-
* left: 0;
|
|
32824
|
-
* }
|
|
32825
|
-
*/
|
|
32826
|
-
/**
|
|
32827
|
-
* @mixin sticky
|
|
32828
|
-
* @description Creates a sticky element that remains in view during scrolling
|
|
32829
|
-
* @example
|
|
32830
|
-
* .nav {
|
|
32831
|
-
* @include sticky;
|
|
32832
|
-
* }
|
|
32833
|
-
*/
|
|
32834
|
-
/**
|
|
32835
|
-
* @mixin top
|
|
32836
|
-
* @description Sets the top position of an element
|
|
32837
|
-
* @param {Number|Length} $value - Position value (in px, rem, etc.)
|
|
32838
|
-
* @example
|
|
32839
|
-
* .toast {
|
|
32840
|
-
* @include absolute;
|
|
32841
|
-
* @include top(1rem);
|
|
32842
|
-
* }
|
|
32843
|
-
*/
|
|
32844
|
-
/**
|
|
32845
|
-
* @mixin right
|
|
32846
|
-
* @description Sets the right position of an element
|
|
32847
|
-
* @param {Number|Length} $value - Position value (in px, rem, etc.)
|
|
32848
|
-
* @example
|
|
32849
|
-
* .badge {
|
|
32850
|
-
* @include absolute;
|
|
32851
|
-
* @include right(0);
|
|
32852
|
-
* }
|
|
32853
|
-
*/
|
|
32854
|
-
/**
|
|
32855
|
-
* @mixin bottom
|
|
32856
|
-
* @description Sets the bottom position of an element
|
|
32857
|
-
* @param {Number|Length} $value - Position value (in px, rem, etc.)
|
|
32858
|
-
* @example
|
|
32859
|
-
* .footer {
|
|
32860
|
-
* @include fixed;
|
|
32861
|
-
* @include bottom(0);
|
|
32862
|
-
* }
|
|
32863
|
-
*/
|
|
32864
|
-
/**
|
|
32865
|
-
* @mixin left
|
|
32866
|
-
* @description Sets the left position of an element
|
|
32867
|
-
* @param {Number|Length} $value - Position value (in px, rem, etc.)
|
|
32868
|
-
* @example
|
|
32869
|
-
* .sidebar {
|
|
32870
|
-
* @include fixed;
|
|
32871
|
-
* @include left(0);
|
|
32872
|
-
* }
|
|
32873
|
-
*/
|
|
32874
32243
|
.static {
|
|
32875
32244
|
position: static;
|
|
32876
32245
|
}
|