@nuvoui/core 1.3.4 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/nuvoui.css +424 -342
- package/dist/nuvoui.css.map +1 -1
- package/dist/nuvoui.min.css +23 -1
- package/dist/nuvoui.min.css.map +1 -1
- package/package.json +1 -1
- package/src/styles/base/_base.scss +148 -147
- package/src/styles/base/_reset.scss +41 -49
- package/src/styles/build.scss +25 -1
- package/src/styles/components/_tooltips.scss +271 -0
- package/src/styles/config/_borders.scss +15 -0
- package/src/styles/config/_breakpoints.scss +11 -0
- package/src/styles/config/_colors.scss +192 -0
- package/src/styles/config/_constants.scss +1 -0
- package/src/styles/config/_container-queries.scss +1 -0
- package/src/styles/config/_feature-flags.scss +33 -0
- package/src/styles/config/_layouts.scss +13 -0
- package/src/styles/config/_shadows.scss +9 -0
- package/src/styles/config/_spacing.scss +41 -0
- package/src/styles/config/_theme-validation.scss +59 -0
- package/src/styles/config/_typography.scss +45 -0
- package/src/styles/functions/_breakpoints.scss +15 -0
- package/src/styles/functions/_colors.scss +280 -0
- package/src/styles/functions/_css-vars.scss +33 -0
- package/src/styles/functions/_feature-flags.scss +20 -0
- package/src/styles/functions/_math.scss +72 -0
- package/src/styles/functions/_strings.scss +68 -0
- package/src/styles/functions/_types.scss +104 -0
- package/src/styles/functions/_units.scss +83 -0
- package/src/styles/index.scss +26 -5
- package/src/styles/layouts/_container.scss +28 -27
- package/src/styles/layouts/_flex.scss +340 -341
- package/src/styles/layouts/_grid.scss +131 -128
- package/src/styles/mixins-map.json +484 -479
- package/src/styles/mixins-map.scss +1 -1
- package/src/styles/themes/_theme.scss +230 -211
- package/src/styles/tools/_accessibility.scss +50 -0
- package/src/styles/tools/_container-queries.scss +98 -0
- package/src/styles/tools/_feature-support.scss +46 -0
- package/src/styles/tools/_media-queries.scss +70 -0
- package/src/styles/tools/_modern-layout.scss +49 -0
- package/src/styles/utilities/_alignment.scss +35 -34
- package/src/styles/utilities/_animations.scss +312 -311
- package/src/styles/utilities/_backdrop-filters.scss +194 -193
- package/src/styles/utilities/_borders.scss +243 -237
- package/src/styles/utilities/_colors.scss +16 -136
- package/src/styles/utilities/_cursor.scss +10 -10
- package/src/styles/utilities/_display.scss +192 -191
- package/src/styles/utilities/_helpers.scss +106 -106
- package/src/styles/utilities/_opacity.scss +27 -25
- package/src/styles/utilities/_position.scss +124 -121
- package/src/styles/utilities/_shadows.scss +171 -169
- package/src/styles/utilities/_sizing.scss +197 -194
- package/src/styles/utilities/_spacing.scss +231 -224
- package/src/styles/utilities/_transforms.scss +235 -234
- package/src/styles/utilities/_transitions.scss +136 -135
- package/src/styles/utilities/_typography.scss +242 -239
- package/src/styles/utilities/_z-index.scss +69 -68
- package/src/styles/abstracts/_config.scss +0 -253
- package/src/styles/abstracts/_functions.scss +0 -626
- package/src/styles/themes/refactored_borders.ipynb +0 -37
- package/src/styles/utilities/_container-queries.scss +0 -95
- package/src/styles/utilities/_media-queries.scss +0 -189
- package/src/styles/utilities/_tooltips.scss +0 -258
package/dist/nuvoui.css
CHANGED
|
@@ -1,11 +1,32 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* NuvoUI SCSS Framework
|
|
3
|
+
* MIT License
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) 2025 NuvoUI
|
|
6
|
+
*
|
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
*/
|
|
1
24
|
*,
|
|
2
25
|
::before,
|
|
3
26
|
::after,
|
|
4
27
|
::backdrop,
|
|
5
28
|
::file-selector-button {
|
|
6
29
|
box-sizing: border-box;
|
|
7
|
-
margin: 0;
|
|
8
|
-
padding: 0;
|
|
9
30
|
}
|
|
10
31
|
|
|
11
32
|
body,
|
|
@@ -89,15 +110,11 @@ select:disabled {
|
|
|
89
110
|
ul[role=list],
|
|
90
111
|
ol[role=list] {
|
|
91
112
|
list-style: none;
|
|
92
|
-
margin: 0;
|
|
93
|
-
padding: 0;
|
|
94
113
|
padding-inline-start: 0;
|
|
95
114
|
margin-block: 0;
|
|
96
115
|
}
|
|
97
116
|
ul[role=list] > li,
|
|
98
117
|
ol[role=list] > li {
|
|
99
|
-
margin: 0;
|
|
100
|
-
padding: 0;
|
|
101
118
|
margin-block: 0;
|
|
102
119
|
}
|
|
103
120
|
|
|
@@ -130,7 +147,7 @@ textarea:not([rows]) {
|
|
|
130
147
|
}
|
|
131
148
|
|
|
132
149
|
html {
|
|
133
|
-
font-size:
|
|
150
|
+
font-size: 1rem;
|
|
134
151
|
}
|
|
135
152
|
|
|
136
153
|
body {
|
|
@@ -571,73 +588,73 @@ code {
|
|
|
571
588
|
align-self: auto;
|
|
572
589
|
}
|
|
573
590
|
.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 {
|
|
574
|
-
flex: 0 0 calc(
|
|
591
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
575
592
|
}
|
|
576
593
|
.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 {
|
|
577
594
|
order: 1;
|
|
578
595
|
}
|
|
579
596
|
.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 {
|
|
580
|
-
flex: 0 0 calc(
|
|
597
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
581
598
|
}
|
|
582
599
|
.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 {
|
|
583
600
|
order: 2;
|
|
584
601
|
}
|
|
585
602
|
.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 {
|
|
586
|
-
flex: 0 0 calc(
|
|
603
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
587
604
|
}
|
|
588
605
|
.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 {
|
|
589
606
|
order: 3;
|
|
590
607
|
}
|
|
591
608
|
.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 {
|
|
592
|
-
flex: 0 0 calc(
|
|
609
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
593
610
|
}
|
|
594
611
|
.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 {
|
|
595
612
|
order: 4;
|
|
596
613
|
}
|
|
597
614
|
.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 {
|
|
598
|
-
flex: 0 0 calc(
|
|
615
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
599
616
|
}
|
|
600
617
|
.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 {
|
|
601
618
|
order: 5;
|
|
602
619
|
}
|
|
603
620
|
.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 {
|
|
604
|
-
flex: 0 0 calc(
|
|
621
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
605
622
|
}
|
|
606
623
|
.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 {
|
|
607
624
|
order: 6;
|
|
608
625
|
}
|
|
609
626
|
.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 {
|
|
610
|
-
flex: 0 0 calc(
|
|
627
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
611
628
|
}
|
|
612
629
|
.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 {
|
|
613
630
|
order: 7;
|
|
614
631
|
}
|
|
615
632
|
.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 {
|
|
616
|
-
flex: 0 0 calc(
|
|
633
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
617
634
|
}
|
|
618
635
|
.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 {
|
|
619
636
|
order: 8;
|
|
620
637
|
}
|
|
621
638
|
.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 {
|
|
622
|
-
flex: 0 0 calc(
|
|
639
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
623
640
|
}
|
|
624
641
|
.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 {
|
|
625
642
|
order: 9;
|
|
626
643
|
}
|
|
627
644
|
.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 {
|
|
628
|
-
flex: 0 0 calc(
|
|
645
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
629
646
|
}
|
|
630
647
|
.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 {
|
|
631
648
|
order: 10;
|
|
632
649
|
}
|
|
633
650
|
.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 {
|
|
634
|
-
flex: 0 0 calc(
|
|
651
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
635
652
|
}
|
|
636
653
|
.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 {
|
|
637
654
|
order: 11;
|
|
638
655
|
}
|
|
639
656
|
.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 {
|
|
640
|
-
flex: 0 0 calc(100% -
|
|
657
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
641
658
|
}
|
|
642
659
|
.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 {
|
|
643
660
|
order: 12;
|
|
@@ -771,73 +788,73 @@ code {
|
|
|
771
788
|
align-self: auto;
|
|
772
789
|
}
|
|
773
790
|
.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 {
|
|
774
|
-
flex: 0 0 calc(
|
|
791
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
775
792
|
}
|
|
776
793
|
.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 {
|
|
777
794
|
order: 1;
|
|
778
795
|
}
|
|
779
796
|
.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 {
|
|
780
|
-
flex: 0 0 calc(
|
|
797
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
781
798
|
}
|
|
782
799
|
.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 {
|
|
783
800
|
order: 2;
|
|
784
801
|
}
|
|
785
802
|
.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 {
|
|
786
|
-
flex: 0 0 calc(
|
|
803
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
787
804
|
}
|
|
788
805
|
.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 {
|
|
789
806
|
order: 3;
|
|
790
807
|
}
|
|
791
808
|
.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 {
|
|
792
|
-
flex: 0 0 calc(
|
|
809
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
793
810
|
}
|
|
794
811
|
.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 {
|
|
795
812
|
order: 4;
|
|
796
813
|
}
|
|
797
814
|
.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 {
|
|
798
|
-
flex: 0 0 calc(
|
|
815
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
799
816
|
}
|
|
800
817
|
.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 {
|
|
801
818
|
order: 5;
|
|
802
819
|
}
|
|
803
820
|
.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 {
|
|
804
|
-
flex: 0 0 calc(
|
|
821
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
805
822
|
}
|
|
806
823
|
.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 {
|
|
807
824
|
order: 6;
|
|
808
825
|
}
|
|
809
826
|
.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 {
|
|
810
|
-
flex: 0 0 calc(
|
|
827
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
811
828
|
}
|
|
812
829
|
.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 {
|
|
813
830
|
order: 7;
|
|
814
831
|
}
|
|
815
832
|
.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 {
|
|
816
|
-
flex: 0 0 calc(
|
|
833
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
817
834
|
}
|
|
818
835
|
.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 {
|
|
819
836
|
order: 8;
|
|
820
837
|
}
|
|
821
838
|
.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 {
|
|
822
|
-
flex: 0 0 calc(
|
|
839
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
823
840
|
}
|
|
824
841
|
.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 {
|
|
825
842
|
order: 9;
|
|
826
843
|
}
|
|
827
844
|
.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 {
|
|
828
|
-
flex: 0 0 calc(
|
|
845
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
829
846
|
}
|
|
830
847
|
.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 {
|
|
831
848
|
order: 10;
|
|
832
849
|
}
|
|
833
850
|
.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 {
|
|
834
|
-
flex: 0 0 calc(
|
|
851
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
835
852
|
}
|
|
836
853
|
.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 {
|
|
837
854
|
order: 11;
|
|
838
855
|
}
|
|
839
856
|
.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 {
|
|
840
|
-
flex: 0 0 calc(100% -
|
|
857
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
841
858
|
}
|
|
842
859
|
.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 {
|
|
843
860
|
order: 12;
|
|
@@ -971,73 +988,73 @@ code {
|
|
|
971
988
|
align-self: auto;
|
|
972
989
|
}
|
|
973
990
|
.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 {
|
|
974
|
-
flex: 0 0 calc(
|
|
991
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
975
992
|
}
|
|
976
993
|
.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 {
|
|
977
994
|
order: 1;
|
|
978
995
|
}
|
|
979
996
|
.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 {
|
|
980
|
-
flex: 0 0 calc(
|
|
997
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
981
998
|
}
|
|
982
999
|
.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 {
|
|
983
1000
|
order: 2;
|
|
984
1001
|
}
|
|
985
1002
|
.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 {
|
|
986
|
-
flex: 0 0 calc(
|
|
1003
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
987
1004
|
}
|
|
988
1005
|
.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 {
|
|
989
1006
|
order: 3;
|
|
990
1007
|
}
|
|
991
1008
|
.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 {
|
|
992
|
-
flex: 0 0 calc(
|
|
1009
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
993
1010
|
}
|
|
994
1011
|
.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 {
|
|
995
1012
|
order: 4;
|
|
996
1013
|
}
|
|
997
1014
|
.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 {
|
|
998
|
-
flex: 0 0 calc(
|
|
1015
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
999
1016
|
}
|
|
1000
1017
|
.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 {
|
|
1001
1018
|
order: 5;
|
|
1002
1019
|
}
|
|
1003
1020
|
.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 {
|
|
1004
|
-
flex: 0 0 calc(
|
|
1021
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
1005
1022
|
}
|
|
1006
1023
|
.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 {
|
|
1007
1024
|
order: 6;
|
|
1008
1025
|
}
|
|
1009
1026
|
.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 {
|
|
1010
|
-
flex: 0 0 calc(
|
|
1027
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
1011
1028
|
}
|
|
1012
1029
|
.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 {
|
|
1013
1030
|
order: 7;
|
|
1014
1031
|
}
|
|
1015
1032
|
.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 {
|
|
1016
|
-
flex: 0 0 calc(
|
|
1033
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
1017
1034
|
}
|
|
1018
1035
|
.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 {
|
|
1019
1036
|
order: 8;
|
|
1020
1037
|
}
|
|
1021
1038
|
.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 {
|
|
1022
|
-
flex: 0 0 calc(
|
|
1039
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
1023
1040
|
}
|
|
1024
1041
|
.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 {
|
|
1025
1042
|
order: 9;
|
|
1026
1043
|
}
|
|
1027
1044
|
.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 {
|
|
1028
|
-
flex: 0 0 calc(
|
|
1045
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
1029
1046
|
}
|
|
1030
1047
|
.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 {
|
|
1031
1048
|
order: 10;
|
|
1032
1049
|
}
|
|
1033
1050
|
.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 {
|
|
1034
|
-
flex: 0 0 calc(
|
|
1051
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
1035
1052
|
}
|
|
1036
1053
|
.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 {
|
|
1037
1054
|
order: 11;
|
|
1038
1055
|
}
|
|
1039
1056
|
.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 {
|
|
1040
|
-
flex: 0 0 calc(100% -
|
|
1057
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
1041
1058
|
}
|
|
1042
1059
|
.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 {
|
|
1043
1060
|
order: 12;
|
|
@@ -1171,73 +1188,73 @@ code {
|
|
|
1171
1188
|
align-self: auto;
|
|
1172
1189
|
}
|
|
1173
1190
|
.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 {
|
|
1174
|
-
flex: 0 0 calc(
|
|
1191
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
1175
1192
|
}
|
|
1176
1193
|
.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 {
|
|
1177
1194
|
order: 1;
|
|
1178
1195
|
}
|
|
1179
1196
|
.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 {
|
|
1180
|
-
flex: 0 0 calc(
|
|
1197
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
1181
1198
|
}
|
|
1182
1199
|
.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 {
|
|
1183
1200
|
order: 2;
|
|
1184
1201
|
}
|
|
1185
1202
|
.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 {
|
|
1186
|
-
flex: 0 0 calc(
|
|
1203
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
1187
1204
|
}
|
|
1188
1205
|
.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 {
|
|
1189
1206
|
order: 3;
|
|
1190
1207
|
}
|
|
1191
1208
|
.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 {
|
|
1192
|
-
flex: 0 0 calc(
|
|
1209
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
1193
1210
|
}
|
|
1194
1211
|
.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 {
|
|
1195
1212
|
order: 4;
|
|
1196
1213
|
}
|
|
1197
1214
|
.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 {
|
|
1198
|
-
flex: 0 0 calc(
|
|
1215
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
1199
1216
|
}
|
|
1200
1217
|
.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 {
|
|
1201
1218
|
order: 5;
|
|
1202
1219
|
}
|
|
1203
1220
|
.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 {
|
|
1204
|
-
flex: 0 0 calc(
|
|
1221
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
1205
1222
|
}
|
|
1206
1223
|
.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 {
|
|
1207
1224
|
order: 6;
|
|
1208
1225
|
}
|
|
1209
1226
|
.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 {
|
|
1210
|
-
flex: 0 0 calc(
|
|
1227
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
1211
1228
|
}
|
|
1212
1229
|
.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 {
|
|
1213
1230
|
order: 7;
|
|
1214
1231
|
}
|
|
1215
1232
|
.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 {
|
|
1216
|
-
flex: 0 0 calc(
|
|
1233
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
1217
1234
|
}
|
|
1218
1235
|
.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 {
|
|
1219
1236
|
order: 8;
|
|
1220
1237
|
}
|
|
1221
1238
|
.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 {
|
|
1222
|
-
flex: 0 0 calc(
|
|
1239
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
1223
1240
|
}
|
|
1224
1241
|
.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 {
|
|
1225
1242
|
order: 9;
|
|
1226
1243
|
}
|
|
1227
1244
|
.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 {
|
|
1228
|
-
flex: 0 0 calc(
|
|
1245
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
1229
1246
|
}
|
|
1230
1247
|
.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 {
|
|
1231
1248
|
order: 10;
|
|
1232
1249
|
}
|
|
1233
1250
|
.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 {
|
|
1234
|
-
flex: 0 0 calc(
|
|
1251
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
1235
1252
|
}
|
|
1236
1253
|
.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 {
|
|
1237
1254
|
order: 11;
|
|
1238
1255
|
}
|
|
1239
1256
|
.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 {
|
|
1240
|
-
flex: 0 0 calc(100% -
|
|
1257
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
1241
1258
|
}
|
|
1242
1259
|
.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 {
|
|
1243
1260
|
order: 12;
|
|
@@ -1371,73 +1388,73 @@ code {
|
|
|
1371
1388
|
align-self: auto;
|
|
1372
1389
|
}
|
|
1373
1390
|
.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 {
|
|
1374
|
-
flex: 0 0 calc(
|
|
1391
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
1375
1392
|
}
|
|
1376
1393
|
.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 {
|
|
1377
1394
|
order: 1;
|
|
1378
1395
|
}
|
|
1379
1396
|
.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 {
|
|
1380
|
-
flex: 0 0 calc(
|
|
1397
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
1381
1398
|
}
|
|
1382
1399
|
.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 {
|
|
1383
1400
|
order: 2;
|
|
1384
1401
|
}
|
|
1385
1402
|
.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 {
|
|
1386
|
-
flex: 0 0 calc(
|
|
1403
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
1387
1404
|
}
|
|
1388
1405
|
.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 {
|
|
1389
1406
|
order: 3;
|
|
1390
1407
|
}
|
|
1391
1408
|
.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 {
|
|
1392
|
-
flex: 0 0 calc(
|
|
1409
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
1393
1410
|
}
|
|
1394
1411
|
.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 {
|
|
1395
1412
|
order: 4;
|
|
1396
1413
|
}
|
|
1397
1414
|
.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 {
|
|
1398
|
-
flex: 0 0 calc(
|
|
1415
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
1399
1416
|
}
|
|
1400
1417
|
.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 {
|
|
1401
1418
|
order: 5;
|
|
1402
1419
|
}
|
|
1403
1420
|
.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 {
|
|
1404
|
-
flex: 0 0 calc(
|
|
1421
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
1405
1422
|
}
|
|
1406
1423
|
.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 {
|
|
1407
1424
|
order: 6;
|
|
1408
1425
|
}
|
|
1409
1426
|
.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 {
|
|
1410
|
-
flex: 0 0 calc(
|
|
1427
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
1411
1428
|
}
|
|
1412
1429
|
.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 {
|
|
1413
1430
|
order: 7;
|
|
1414
1431
|
}
|
|
1415
1432
|
.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 {
|
|
1416
|
-
flex: 0 0 calc(
|
|
1433
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
1417
1434
|
}
|
|
1418
1435
|
.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 {
|
|
1419
1436
|
order: 8;
|
|
1420
1437
|
}
|
|
1421
1438
|
.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 {
|
|
1422
|
-
flex: 0 0 calc(
|
|
1439
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
1423
1440
|
}
|
|
1424
1441
|
.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 {
|
|
1425
1442
|
order: 9;
|
|
1426
1443
|
}
|
|
1427
1444
|
.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 {
|
|
1428
|
-
flex: 0 0 calc(
|
|
1445
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
1429
1446
|
}
|
|
1430
1447
|
.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 {
|
|
1431
1448
|
order: 10;
|
|
1432
1449
|
}
|
|
1433
1450
|
.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 {
|
|
1434
|
-
flex: 0 0 calc(
|
|
1451
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
1435
1452
|
}
|
|
1436
1453
|
.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 {
|
|
1437
1454
|
order: 11;
|
|
1438
1455
|
}
|
|
1439
1456
|
.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 {
|
|
1440
|
-
flex: 0 0 calc(100% -
|
|
1457
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
1441
1458
|
}
|
|
1442
1459
|
.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 {
|
|
1443
1460
|
order: 12;
|
|
@@ -1571,73 +1588,73 @@ code {
|
|
|
1571
1588
|
align-self: auto;
|
|
1572
1589
|
}
|
|
1573
1590
|
.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 {
|
|
1574
|
-
flex: 0 0 calc(
|
|
1591
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
1575
1592
|
}
|
|
1576
1593
|
.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 {
|
|
1577
1594
|
order: 1;
|
|
1578
1595
|
}
|
|
1579
1596
|
.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 {
|
|
1580
|
-
flex: 0 0 calc(
|
|
1597
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
1581
1598
|
}
|
|
1582
1599
|
.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 {
|
|
1583
1600
|
order: 2;
|
|
1584
1601
|
}
|
|
1585
1602
|
.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 {
|
|
1586
|
-
flex: 0 0 calc(
|
|
1603
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
1587
1604
|
}
|
|
1588
1605
|
.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 {
|
|
1589
1606
|
order: 3;
|
|
1590
1607
|
}
|
|
1591
1608
|
.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 {
|
|
1592
|
-
flex: 0 0 calc(
|
|
1609
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
1593
1610
|
}
|
|
1594
1611
|
.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 {
|
|
1595
1612
|
order: 4;
|
|
1596
1613
|
}
|
|
1597
1614
|
.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 {
|
|
1598
|
-
flex: 0 0 calc(
|
|
1615
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
1599
1616
|
}
|
|
1600
1617
|
.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 {
|
|
1601
1618
|
order: 5;
|
|
1602
1619
|
}
|
|
1603
1620
|
.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 {
|
|
1604
|
-
flex: 0 0 calc(
|
|
1621
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
1605
1622
|
}
|
|
1606
1623
|
.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 {
|
|
1607
1624
|
order: 6;
|
|
1608
1625
|
}
|
|
1609
1626
|
.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 {
|
|
1610
|
-
flex: 0 0 calc(
|
|
1627
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
1611
1628
|
}
|
|
1612
1629
|
.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 {
|
|
1613
1630
|
order: 7;
|
|
1614
1631
|
}
|
|
1615
1632
|
.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 {
|
|
1616
|
-
flex: 0 0 calc(
|
|
1633
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
1617
1634
|
}
|
|
1618
1635
|
.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 {
|
|
1619
1636
|
order: 8;
|
|
1620
1637
|
}
|
|
1621
1638
|
.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 {
|
|
1622
|
-
flex: 0 0 calc(
|
|
1639
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
1623
1640
|
}
|
|
1624
1641
|
.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 {
|
|
1625
1642
|
order: 9;
|
|
1626
1643
|
}
|
|
1627
1644
|
.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 {
|
|
1628
|
-
flex: 0 0 calc(
|
|
1645
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
1629
1646
|
}
|
|
1630
1647
|
.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 {
|
|
1631
1648
|
order: 10;
|
|
1632
1649
|
}
|
|
1633
1650
|
.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 {
|
|
1634
|
-
flex: 0 0 calc(
|
|
1651
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
1635
1652
|
}
|
|
1636
1653
|
.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 {
|
|
1637
1654
|
order: 11;
|
|
1638
1655
|
}
|
|
1639
1656
|
.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 {
|
|
1640
|
-
flex: 0 0 calc(100% -
|
|
1657
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
1641
1658
|
}
|
|
1642
1659
|
.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 {
|
|
1643
1660
|
order: 12;
|
|
@@ -1771,73 +1788,73 @@ code {
|
|
|
1771
1788
|
align-self: auto;
|
|
1772
1789
|
}
|
|
1773
1790
|
.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 {
|
|
1774
|
-
flex: 0 0 calc(
|
|
1791
|
+
flex: 0 0 calc((100% - 11 * var(--flex-gap, 0px)) / 12);
|
|
1775
1792
|
}
|
|
1776
1793
|
.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 {
|
|
1777
1794
|
order: 1;
|
|
1778
1795
|
}
|
|
1779
1796
|
.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 {
|
|
1780
|
-
flex: 0 0 calc(
|
|
1797
|
+
flex: 0 0 calc((100% - 5 * var(--flex-gap, 0px)) / 6);
|
|
1781
1798
|
}
|
|
1782
1799
|
.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 {
|
|
1783
1800
|
order: 2;
|
|
1784
1801
|
}
|
|
1785
1802
|
.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 {
|
|
1786
|
-
flex: 0 0 calc(
|
|
1803
|
+
flex: 0 0 calc((100% - 3 * var(--flex-gap, 0px)) / 4);
|
|
1787
1804
|
}
|
|
1788
1805
|
.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 {
|
|
1789
1806
|
order: 3;
|
|
1790
1807
|
}
|
|
1791
1808
|
.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 {
|
|
1792
|
-
flex: 0 0 calc(
|
|
1809
|
+
flex: 0 0 calc((100% - 2 * var(--flex-gap, 0px)) / 3);
|
|
1793
1810
|
}
|
|
1794
1811
|
.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 {
|
|
1795
1812
|
order: 4;
|
|
1796
1813
|
}
|
|
1797
1814
|
.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 {
|
|
1798
|
-
flex: 0 0 calc(
|
|
1815
|
+
flex: 0 0 calc((100% - 1.4 * var(--flex-gap, 0px)) / 2.4);
|
|
1799
1816
|
}
|
|
1800
1817
|
.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 {
|
|
1801
1818
|
order: 5;
|
|
1802
1819
|
}
|
|
1803
1820
|
.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 {
|
|
1804
|
-
flex: 0 0 calc(
|
|
1821
|
+
flex: 0 0 calc((100% - 1 * var(--flex-gap, 0px)) / 2);
|
|
1805
1822
|
}
|
|
1806
1823
|
.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 {
|
|
1807
1824
|
order: 6;
|
|
1808
1825
|
}
|
|
1809
1826
|
.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 {
|
|
1810
|
-
flex: 0 0 calc(
|
|
1827
|
+
flex: 0 0 calc((100% - 0.7142857143 * var(--flex-gap, 0px)) / 1.7142857143);
|
|
1811
1828
|
}
|
|
1812
1829
|
.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 {
|
|
1813
1830
|
order: 7;
|
|
1814
1831
|
}
|
|
1815
1832
|
.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 {
|
|
1816
|
-
flex: 0 0 calc(
|
|
1833
|
+
flex: 0 0 calc((100% - 0.5 * var(--flex-gap, 0px)) / 1.5);
|
|
1817
1834
|
}
|
|
1818
1835
|
.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 {
|
|
1819
1836
|
order: 8;
|
|
1820
1837
|
}
|
|
1821
1838
|
.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 {
|
|
1822
|
-
flex: 0 0 calc(
|
|
1839
|
+
flex: 0 0 calc((100% - 0.3333333333 * var(--flex-gap, 0px)) / 1.3333333333);
|
|
1823
1840
|
}
|
|
1824
1841
|
.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 {
|
|
1825
1842
|
order: 9;
|
|
1826
1843
|
}
|
|
1827
1844
|
.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 {
|
|
1828
|
-
flex: 0 0 calc(
|
|
1845
|
+
flex: 0 0 calc((100% - 0.2 * var(--flex-gap, 0px)) / 1.2);
|
|
1829
1846
|
}
|
|
1830
1847
|
.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 {
|
|
1831
1848
|
order: 10;
|
|
1832
1849
|
}
|
|
1833
1850
|
.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 {
|
|
1834
|
-
flex: 0 0 calc(
|
|
1851
|
+
flex: 0 0 calc((100% - 0.0909090909 * var(--flex-gap, 0px)) / 1.0909090909);
|
|
1835
1852
|
}
|
|
1836
1853
|
.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 {
|
|
1837
1854
|
order: 11;
|
|
1838
1855
|
}
|
|
1839
1856
|
.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 {
|
|
1840
|
-
flex: 0 0 calc(100% -
|
|
1857
|
+
flex: 0 0 calc((100% - 0 * var(--flex-gap, 0px)) / 1);
|
|
1841
1858
|
}
|
|
1842
1859
|
.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 {
|
|
1843
1860
|
order: 12;
|
|
@@ -3155,6 +3172,229 @@ code {
|
|
|
3155
3172
|
place-items: stretch;
|
|
3156
3173
|
}
|
|
3157
3174
|
}
|
|
3175
|
+
.container-inline-size {
|
|
3176
|
+
container-type: inline-size;
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
.container-size {
|
|
3180
|
+
container-type: size;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
.container-main {
|
|
3184
|
+
container-name: "main";
|
|
3185
|
+
}
|
|
3186
|
+
|
|
3187
|
+
.container-sidebar {
|
|
3188
|
+
container-name: "sidebar";
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
.container-card {
|
|
3192
|
+
container-name: "card";
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
.container-section {
|
|
3196
|
+
container-name: "section";
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
:root {
|
|
3200
|
+
--tooltip-bg: rgba(17 17 17 / 90%);
|
|
3201
|
+
--tooltip-shadow-color: rgb(0 0 0 / 20%);
|
|
3202
|
+
--tooltip-text-color: #fff;
|
|
3203
|
+
--microtip-transition-duration: 0.18s;
|
|
3204
|
+
--microtip-transition-easing: ease-in-out;
|
|
3205
|
+
--microtip-transition-delay: 0s;
|
|
3206
|
+
--microtip-font-size: 13px;
|
|
3207
|
+
--microtip-font-weight: normal;
|
|
3208
|
+
--microtip-text-transform: none;
|
|
3209
|
+
--tooltip-small-width: 80px;
|
|
3210
|
+
--tooltip-medium-width: 150px;
|
|
3211
|
+
--tooltip-large-width: 260px;
|
|
3212
|
+
--tooltip-border-radius: 4px;
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3215
|
+
[data-tooltip][role~=tooltip] {
|
|
3216
|
+
position: relative;
|
|
3217
|
+
}
|
|
3218
|
+
[data-tooltip][role~=tooltip]::before, [data-tooltip][role~=tooltip]::after {
|
|
3219
|
+
transform: translate3d(0, 0, 0);
|
|
3220
|
+
backface-visibility: hidden;
|
|
3221
|
+
will-change: transform;
|
|
3222
|
+
opacity: 0;
|
|
3223
|
+
pointer-events: none;
|
|
3224
|
+
transition: opacity var(--microtip-transition-duration) var(--microtip-transition-easing) var(--microtip-transition-delay), transform var(--microtip-transition-duration) var(--microtip-transition-easing) var(--microtip-transition-delay);
|
|
3225
|
+
position: absolute;
|
|
3226
|
+
box-sizing: border-box;
|
|
3227
|
+
z-index: 10;
|
|
3228
|
+
transform-origin: top;
|
|
3229
|
+
}
|
|
3230
|
+
[data-tooltip][role~=tooltip]::before {
|
|
3231
|
+
background-size: 100% auto !important;
|
|
3232
|
+
content: "";
|
|
3233
|
+
}
|
|
3234
|
+
[data-tooltip][role~=tooltip]::after {
|
|
3235
|
+
background: var(--tooltip-bg);
|
|
3236
|
+
box-shadow: 0 3px 7px var(--tooltip-shadow-color);
|
|
3237
|
+
border-radius: var(--tooltip-border-radius);
|
|
3238
|
+
color: var(--tooltip-text-color);
|
|
3239
|
+
content: attr(data-tooltip);
|
|
3240
|
+
font-size: var(--microtip-font-size);
|
|
3241
|
+
font-weight: var(--microtip-font-weight);
|
|
3242
|
+
text-transform: var(--microtip-text-transform);
|
|
3243
|
+
padding: 0.5em 1em;
|
|
3244
|
+
white-space: nowrap;
|
|
3245
|
+
box-sizing: content-box;
|
|
3246
|
+
}
|
|
3247
|
+
[data-tooltip][role~=tooltip]:hover::before, [data-tooltip][role~=tooltip]:hover::after, [data-tooltip][role~=tooltip]:focus::before, [data-tooltip][role~=tooltip]:focus::after {
|
|
3248
|
+
opacity: 1;
|
|
3249
|
+
pointer-events: auto;
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
[role~=tooltip][data-microtip-position|=top]::before {
|
|
3253
|
+
border-left: 9px solid transparent;
|
|
3254
|
+
border-right: 9px solid transparent;
|
|
3255
|
+
border-top: 6px solid var(--tooltip-bg);
|
|
3256
|
+
height: 0;
|
|
3257
|
+
width: 0;
|
|
3258
|
+
margin-bottom: 6px;
|
|
3259
|
+
transform: translate3d(-50%, 0, 0);
|
|
3260
|
+
bottom: 100%;
|
|
3261
|
+
left: 50%;
|
|
3262
|
+
z-index: 999;
|
|
3263
|
+
}
|
|
3264
|
+
[role~=tooltip][data-microtip-position|=top]::after {
|
|
3265
|
+
margin-bottom: 11px;
|
|
3266
|
+
transform: translate3d(-50%, 0, 0);
|
|
3267
|
+
bottom: 100%;
|
|
3268
|
+
left: 50%;
|
|
3269
|
+
}
|
|
3270
|
+
[role~=tooltip][data-microtip-position|=top]:hover::before {
|
|
3271
|
+
transform: translate3d(-50%, -5px, 0);
|
|
3272
|
+
}
|
|
3273
|
+
[role~=tooltip][data-microtip-position|=top]:hover::after {
|
|
3274
|
+
transform: translate3d(-50%, -5px, 0);
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
[role~=tooltip][data-microtip-position=top-left]::after {
|
|
3278
|
+
transform: translate3d(calc(-100% + 16px), 0, 0);
|
|
3279
|
+
bottom: 100%;
|
|
3280
|
+
}
|
|
3281
|
+
[role~=tooltip][data-microtip-position=top-left]:hover::after {
|
|
3282
|
+
transform: translate3d(calc(-100% + 16px), -5px, 0);
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
[role~=tooltip][data-microtip-position=top-right]::after {
|
|
3286
|
+
transform: translate3d(calc(0% - 16px), 0, 0);
|
|
3287
|
+
bottom: 100%;
|
|
3288
|
+
}
|
|
3289
|
+
[role~=tooltip][data-microtip-position=top-right]:hover::after {
|
|
3290
|
+
transform: translate3d(calc(0% - 16px), -5px, 0);
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3293
|
+
[role~=tooltip][data-microtip-position|=bottom]::before {
|
|
3294
|
+
border-left: 9px solid transparent;
|
|
3295
|
+
border-right: 9px solid transparent;
|
|
3296
|
+
border-bottom: 6px solid var(--tooltip-bg);
|
|
3297
|
+
height: 0;
|
|
3298
|
+
width: 0;
|
|
3299
|
+
margin-top: 5px;
|
|
3300
|
+
margin-bottom: 0;
|
|
3301
|
+
transform: translate3d(-50%, -10px, 0);
|
|
3302
|
+
bottom: auto;
|
|
3303
|
+
left: 50%;
|
|
3304
|
+
top: 100%;
|
|
3305
|
+
z-index: 999;
|
|
3306
|
+
}
|
|
3307
|
+
[role~=tooltip][data-microtip-position|=bottom]::after {
|
|
3308
|
+
margin-top: 11px;
|
|
3309
|
+
transform: translate3d(-50%, -10px, 0);
|
|
3310
|
+
top: 100%;
|
|
3311
|
+
left: 50%;
|
|
3312
|
+
}
|
|
3313
|
+
[role~=tooltip][data-microtip-position|=bottom]:hover::before {
|
|
3314
|
+
transform: translate3d(-50%, 0, 0);
|
|
3315
|
+
}
|
|
3316
|
+
[role~=tooltip][data-microtip-position|=bottom]:hover::after {
|
|
3317
|
+
transform: translate3d(-50%, 0, 0);
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
[role~=tooltip][data-microtip-position=bottom-left]::after {
|
|
3321
|
+
transform: translate3d(calc(-100% + 16px), -10px, 0);
|
|
3322
|
+
top: 100%;
|
|
3323
|
+
}
|
|
3324
|
+
[role~=tooltip][data-microtip-position=bottom-left]:hover::after {
|
|
3325
|
+
transform: translate3d(calc(-100% + 16px), 0, 0);
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3328
|
+
[role~=tooltip][data-microtip-position=bottom-right]::after {
|
|
3329
|
+
transform: translate3d(calc(0% - 16px), -10px, 0);
|
|
3330
|
+
top: 100%;
|
|
3331
|
+
}
|
|
3332
|
+
[role~=tooltip][data-microtip-position=bottom-right]:hover::after {
|
|
3333
|
+
transform: translate3d(calc(0% - 16px), 0, 0);
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
[role~=tooltip][data-microtip-position=left]::before, [role~=tooltip][data-microtip-position=left]::after {
|
|
3337
|
+
inset: auto auto auto 100%;
|
|
3338
|
+
left: auto;
|
|
3339
|
+
right: 100%;
|
|
3340
|
+
top: 50%;
|
|
3341
|
+
transform: translate3d(10px, -50%, 0);
|
|
3342
|
+
}
|
|
3343
|
+
[role~=tooltip][data-microtip-position=left]::before {
|
|
3344
|
+
border-top: 9px solid transparent;
|
|
3345
|
+
border-bottom: 9px solid transparent;
|
|
3346
|
+
border-left: 6px solid var(--tooltip-bg);
|
|
3347
|
+
height: 0;
|
|
3348
|
+
width: 0;
|
|
3349
|
+
margin-right: 5px;
|
|
3350
|
+
margin-bottom: 0;
|
|
3351
|
+
z-index: 999;
|
|
3352
|
+
}
|
|
3353
|
+
[role~=tooltip][data-microtip-position=left]::after {
|
|
3354
|
+
margin-right: 11px;
|
|
3355
|
+
}
|
|
3356
|
+
[role~=tooltip][data-microtip-position=left]:hover::before, [role~=tooltip][data-microtip-position=left]:hover::after {
|
|
3357
|
+
transform: translate3d(0, -50%, 0);
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
[role~=tooltip][data-microtip-position=right]::before, [role~=tooltip][data-microtip-position=right]::after {
|
|
3361
|
+
bottom: auto;
|
|
3362
|
+
left: 100%;
|
|
3363
|
+
top: 50%;
|
|
3364
|
+
transform: translate3d(-10px, -50%, 0);
|
|
3365
|
+
}
|
|
3366
|
+
[role~=tooltip][data-microtip-position=right]::before {
|
|
3367
|
+
border-top: 9px solid transparent;
|
|
3368
|
+
border-bottom: 9px solid transparent;
|
|
3369
|
+
border-right: 6px solid var(--tooltip-bg);
|
|
3370
|
+
height: 0;
|
|
3371
|
+
width: 0;
|
|
3372
|
+
margin-bottom: 0;
|
|
3373
|
+
margin-left: 5px;
|
|
3374
|
+
z-index: 999;
|
|
3375
|
+
}
|
|
3376
|
+
[role~=tooltip][data-microtip-position=right]::after {
|
|
3377
|
+
margin-left: 11px;
|
|
3378
|
+
}
|
|
3379
|
+
[role~=tooltip][data-microtip-position=right]:hover::before, [role~=tooltip][data-microtip-position=right]:hover::after {
|
|
3380
|
+
transform: translate3d(0, -50%, 0);
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
[role~=tooltip][data-microtip-size=small]::after {
|
|
3384
|
+
white-space: initial;
|
|
3385
|
+
width: var(--tooltip-small-width);
|
|
3386
|
+
}
|
|
3387
|
+
|
|
3388
|
+
[role~=tooltip][data-microtip-size=medium]::after {
|
|
3389
|
+
white-space: initial;
|
|
3390
|
+
width: var(--tooltip-medium-width);
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3393
|
+
[role~=tooltip][data-microtip-size=large]::after {
|
|
3394
|
+
white-space: initial;
|
|
3395
|
+
width: var(--tooltip-large-width);
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3158
3398
|
.opacity-0,
|
|
3159
3399
|
.hover\:opacity-0:hover,
|
|
3160
3400
|
.focus\:opacity-0:focus,
|
|
@@ -5875,43 +6115,43 @@ code {
|
|
|
5875
6115
|
}
|
|
5876
6116
|
|
|
5877
6117
|
.rounded-full {
|
|
5878
|
-
border-radius:
|
|
6118
|
+
border-radius: 99in;
|
|
5879
6119
|
}
|
|
5880
6120
|
|
|
5881
6121
|
.rounded-t-full {
|
|
5882
|
-
border-top-left-radius:
|
|
5883
|
-
border-top-right-radius:
|
|
6122
|
+
border-top-left-radius: 99in;
|
|
6123
|
+
border-top-right-radius: 99in;
|
|
5884
6124
|
}
|
|
5885
6125
|
|
|
5886
6126
|
.rounded-r-full {
|
|
5887
|
-
border-top-right-radius:
|
|
5888
|
-
border-bottom-right-radius:
|
|
6127
|
+
border-top-right-radius: 99in;
|
|
6128
|
+
border-bottom-right-radius: 99in;
|
|
5889
6129
|
}
|
|
5890
6130
|
|
|
5891
6131
|
.rounded-b-full {
|
|
5892
|
-
border-bottom-left-radius:
|
|
5893
|
-
border-bottom-right-radius:
|
|
6132
|
+
border-bottom-left-radius: 99in;
|
|
6133
|
+
border-bottom-right-radius: 99in;
|
|
5894
6134
|
}
|
|
5895
6135
|
|
|
5896
6136
|
.rounded-l-full {
|
|
5897
|
-
border-top-left-radius:
|
|
5898
|
-
border-bottom-left-radius:
|
|
6137
|
+
border-top-left-radius: 99in;
|
|
6138
|
+
border-bottom-left-radius: 99in;
|
|
5899
6139
|
}
|
|
5900
6140
|
|
|
5901
6141
|
.rounded-tl-full {
|
|
5902
|
-
border-top-left-radius:
|
|
6142
|
+
border-top-left-radius: 99in;
|
|
5903
6143
|
}
|
|
5904
6144
|
|
|
5905
6145
|
.rounded-tr-full {
|
|
5906
|
-
border-top-right-radius:
|
|
6146
|
+
border-top-right-radius: 99in;
|
|
5907
6147
|
}
|
|
5908
6148
|
|
|
5909
6149
|
.rounded-br-full {
|
|
5910
|
-
border-bottom-right-radius:
|
|
6150
|
+
border-bottom-right-radius: 99in;
|
|
5911
6151
|
}
|
|
5912
6152
|
|
|
5913
6153
|
.rounded-bl-full {
|
|
5914
|
-
border-bottom-left-radius:
|
|
6154
|
+
border-bottom-left-radius: 99in;
|
|
5915
6155
|
}
|
|
5916
6156
|
|
|
5917
6157
|
.rounded-none {
|
|
@@ -5963,7 +6203,7 @@ code {
|
|
|
5963
6203
|
.active\:border-solid:active,
|
|
5964
6204
|
.focus\:border-solid:focus,
|
|
5965
6205
|
.group:hover .group-hover\:border-solid {
|
|
5966
|
-
border-style: solid;
|
|
6206
|
+
--border-style: solid;
|
|
5967
6207
|
}
|
|
5968
6208
|
|
|
5969
6209
|
.border-dashed,
|
|
@@ -5971,7 +6211,7 @@ code {
|
|
|
5971
6211
|
.active\:border-dashed:active,
|
|
5972
6212
|
.focus\:border-dashed:focus,
|
|
5973
6213
|
.group:hover .group-hover\:border-dashed {
|
|
5974
|
-
border-style: dashed;
|
|
6214
|
+
--border-style: dashed;
|
|
5975
6215
|
}
|
|
5976
6216
|
|
|
5977
6217
|
.border-dotted,
|
|
@@ -5979,7 +6219,7 @@ code {
|
|
|
5979
6219
|
.active\:border-dotted:active,
|
|
5980
6220
|
.focus\:border-dotted:focus,
|
|
5981
6221
|
.group:hover .group-hover\:border-dotted {
|
|
5982
|
-
border-style: dotted;
|
|
6222
|
+
--border-style: dotted;
|
|
5983
6223
|
}
|
|
5984
6224
|
|
|
5985
6225
|
.border-double,
|
|
@@ -5987,7 +6227,7 @@ code {
|
|
|
5987
6227
|
.active\:border-double:active,
|
|
5988
6228
|
.focus\:border-double:focus,
|
|
5989
6229
|
.group:hover .group-hover\:border-double {
|
|
5990
|
-
border-style: double;
|
|
6230
|
+
--border-style: double;
|
|
5991
6231
|
}
|
|
5992
6232
|
|
|
5993
6233
|
.border-none,
|
|
@@ -5995,7 +6235,7 @@ code {
|
|
|
5995
6235
|
.active\:border-none:active,
|
|
5996
6236
|
.focus\:border-none:focus,
|
|
5997
6237
|
.group:hover .group-hover\:border-none {
|
|
5998
|
-
border-style: none;
|
|
6238
|
+
--border-style: none;
|
|
5999
6239
|
}
|
|
6000
6240
|
|
|
6001
6241
|
.border-primary,
|
|
@@ -6004,6 +6244,7 @@ code {
|
|
|
6004
6244
|
.focus\:border-primary:focus,
|
|
6005
6245
|
.group:hover .group-hover\:border-primary {
|
|
6006
6246
|
border-color: var(--primary);
|
|
6247
|
+
--border-color: var(--primary);
|
|
6007
6248
|
}
|
|
6008
6249
|
|
|
6009
6250
|
.border-secondary,
|
|
@@ -6012,6 +6253,7 @@ code {
|
|
|
6012
6253
|
.focus\:border-secondary:focus,
|
|
6013
6254
|
.group:hover .group-hover\:border-secondary {
|
|
6014
6255
|
border-color: var(--secondary);
|
|
6256
|
+
--border-color: var(--secondary);
|
|
6015
6257
|
}
|
|
6016
6258
|
|
|
6017
6259
|
.border-success,
|
|
@@ -6020,6 +6262,7 @@ code {
|
|
|
6020
6262
|
.focus\:border-success:focus,
|
|
6021
6263
|
.group:hover .group-hover\:border-success {
|
|
6022
6264
|
border-color: var(--success);
|
|
6265
|
+
--border-color: var(--success);
|
|
6023
6266
|
}
|
|
6024
6267
|
|
|
6025
6268
|
.border-danger,
|
|
@@ -6028,6 +6271,7 @@ code {
|
|
|
6028
6271
|
.focus\:border-danger:focus,
|
|
6029
6272
|
.group:hover .group-hover\:border-danger {
|
|
6030
6273
|
border-color: var(--danger);
|
|
6274
|
+
--border-color: var(--danger);
|
|
6031
6275
|
}
|
|
6032
6276
|
|
|
6033
6277
|
.border-warning,
|
|
@@ -6036,6 +6280,7 @@ code {
|
|
|
6036
6280
|
.focus\:border-warning:focus,
|
|
6037
6281
|
.group:hover .group-hover\:border-warning {
|
|
6038
6282
|
border-color: var(--warning);
|
|
6283
|
+
--border-color: var(--warning);
|
|
6039
6284
|
}
|
|
6040
6285
|
|
|
6041
6286
|
.border-info,
|
|
@@ -6044,6 +6289,7 @@ code {
|
|
|
6044
6289
|
.focus\:border-info:focus,
|
|
6045
6290
|
.group:hover .group-hover\:border-info {
|
|
6046
6291
|
border-color: var(--info);
|
|
6292
|
+
--border-color: var(--info);
|
|
6047
6293
|
}
|
|
6048
6294
|
|
|
6049
6295
|
.border-gray,
|
|
@@ -6052,6 +6298,7 @@ code {
|
|
|
6052
6298
|
.focus\:border-gray:focus,
|
|
6053
6299
|
.group:hover .group-hover\:border-gray {
|
|
6054
6300
|
border-color: var(--gray);
|
|
6301
|
+
--border-color: var(--gray);
|
|
6055
6302
|
}
|
|
6056
6303
|
|
|
6057
6304
|
.border-red,
|
|
@@ -6060,6 +6307,7 @@ code {
|
|
|
6060
6307
|
.focus\:border-red:focus,
|
|
6061
6308
|
.group:hover .group-hover\:border-red {
|
|
6062
6309
|
border-color: var(--red);
|
|
6310
|
+
--border-color: var(--red);
|
|
6063
6311
|
}
|
|
6064
6312
|
|
|
6065
6313
|
.border-blue,
|
|
@@ -6068,6 +6316,7 @@ code {
|
|
|
6068
6316
|
.focus\:border-blue:focus,
|
|
6069
6317
|
.group:hover .group-hover\:border-blue {
|
|
6070
6318
|
border-color: var(--blue);
|
|
6319
|
+
--border-color: var(--blue);
|
|
6071
6320
|
}
|
|
6072
6321
|
|
|
6073
6322
|
.border-green,
|
|
@@ -6076,6 +6325,7 @@ code {
|
|
|
6076
6325
|
.focus\:border-green:focus,
|
|
6077
6326
|
.group:hover .group-hover\:border-green {
|
|
6078
6327
|
border-color: var(--green);
|
|
6328
|
+
--border-color: var(--green);
|
|
6079
6329
|
}
|
|
6080
6330
|
|
|
6081
6331
|
.border-yellow,
|
|
@@ -6084,6 +6334,7 @@ code {
|
|
|
6084
6334
|
.focus\:border-yellow:focus,
|
|
6085
6335
|
.group:hover .group-hover\:border-yellow {
|
|
6086
6336
|
border-color: var(--yellow);
|
|
6337
|
+
--border-color: var(--yellow);
|
|
6087
6338
|
}
|
|
6088
6339
|
|
|
6089
6340
|
.border-purple,
|
|
@@ -6092,6 +6343,7 @@ code {
|
|
|
6092
6343
|
.focus\:border-purple:focus,
|
|
6093
6344
|
.group:hover .group-hover\:border-purple {
|
|
6094
6345
|
border-color: var(--purple);
|
|
6346
|
+
--border-color: var(--purple);
|
|
6095
6347
|
}
|
|
6096
6348
|
|
|
6097
6349
|
.border-pink,
|
|
@@ -6100,6 +6352,7 @@ code {
|
|
|
6100
6352
|
.focus\:border-pink:focus,
|
|
6101
6353
|
.group:hover .group-hover\:border-pink {
|
|
6102
6354
|
border-color: var(--pink);
|
|
6355
|
+
--border-color: var(--pink);
|
|
6103
6356
|
}
|
|
6104
6357
|
|
|
6105
6358
|
.border-black,
|
|
@@ -6108,6 +6361,7 @@ code {
|
|
|
6108
6361
|
.focus\:border-black:focus,
|
|
6109
6362
|
.group:hover .group-hover\:border-black {
|
|
6110
6363
|
border-color: var(--black);
|
|
6364
|
+
--border-color: var(--black);
|
|
6111
6365
|
}
|
|
6112
6366
|
|
|
6113
6367
|
.border-white,
|
|
@@ -6116,6 +6370,7 @@ code {
|
|
|
6116
6370
|
.focus\:border-white:focus,
|
|
6117
6371
|
.group:hover .group-hover\:border-white {
|
|
6118
6372
|
border-color: var(--white);
|
|
6373
|
+
--border-color: var(--white);
|
|
6119
6374
|
}
|
|
6120
6375
|
|
|
6121
6376
|
.border-transparent,
|
|
@@ -6124,6 +6379,7 @@ code {
|
|
|
6124
6379
|
.focus\:border-transparent:focus,
|
|
6125
6380
|
.group:hover .group-hover\:border-transparent {
|
|
6126
6381
|
border-color: var(--transparent);
|
|
6382
|
+
--border-color: var(--transparent);
|
|
6127
6383
|
}
|
|
6128
6384
|
|
|
6129
6385
|
@media (min-width: 480px) {
|
|
@@ -6202,7 +6458,7 @@ code {
|
|
|
6202
6458
|
border-radius: 1.25rem;
|
|
6203
6459
|
}
|
|
6204
6460
|
.rounded-full\@xs {
|
|
6205
|
-
border-radius:
|
|
6461
|
+
border-radius: 99in;
|
|
6206
6462
|
}
|
|
6207
6463
|
.rounded-none\@xs {
|
|
6208
6464
|
border-radius: 0px;
|
|
@@ -6293,7 +6549,7 @@ code {
|
|
|
6293
6549
|
border-radius: 1.25rem;
|
|
6294
6550
|
}
|
|
6295
6551
|
.rounded-full\@sm {
|
|
6296
|
-
border-radius:
|
|
6552
|
+
border-radius: 99in;
|
|
6297
6553
|
}
|
|
6298
6554
|
.rounded-none\@sm {
|
|
6299
6555
|
border-radius: 0px;
|
|
@@ -6384,7 +6640,7 @@ code {
|
|
|
6384
6640
|
border-radius: 1.25rem;
|
|
6385
6641
|
}
|
|
6386
6642
|
.rounded-full\@md {
|
|
6387
|
-
border-radius:
|
|
6643
|
+
border-radius: 99in;
|
|
6388
6644
|
}
|
|
6389
6645
|
.rounded-none\@md {
|
|
6390
6646
|
border-radius: 0px;
|
|
@@ -6475,7 +6731,7 @@ code {
|
|
|
6475
6731
|
border-radius: 1.25rem;
|
|
6476
6732
|
}
|
|
6477
6733
|
.rounded-full\@lg {
|
|
6478
|
-
border-radius:
|
|
6734
|
+
border-radius: 99in;
|
|
6479
6735
|
}
|
|
6480
6736
|
.rounded-none\@lg {
|
|
6481
6737
|
border-radius: 0px;
|
|
@@ -6566,7 +6822,7 @@ code {
|
|
|
6566
6822
|
border-radius: 1.25rem;
|
|
6567
6823
|
}
|
|
6568
6824
|
.rounded-full\@xl {
|
|
6569
|
-
border-radius:
|
|
6825
|
+
border-radius: 99in;
|
|
6570
6826
|
}
|
|
6571
6827
|
.rounded-none\@xl {
|
|
6572
6828
|
border-radius: 0px;
|
|
@@ -6657,7 +6913,7 @@ code {
|
|
|
6657
6913
|
border-radius: 1.25rem;
|
|
6658
6914
|
}
|
|
6659
6915
|
.rounded-full\@2xl {
|
|
6660
|
-
border-radius:
|
|
6916
|
+
border-radius: 99in;
|
|
6661
6917
|
}
|
|
6662
6918
|
.rounded-none\@2xl {
|
|
6663
6919
|
border-radius: 0px;
|
|
@@ -6672,30 +6928,6 @@ code {
|
|
|
6672
6928
|
border-radius: 9999px;
|
|
6673
6929
|
}
|
|
6674
6930
|
}
|
|
6675
|
-
.container-inline-size {
|
|
6676
|
-
container-type: inline-size;
|
|
6677
|
-
}
|
|
6678
|
-
|
|
6679
|
-
.container-size {
|
|
6680
|
-
container-type: size;
|
|
6681
|
-
}
|
|
6682
|
-
|
|
6683
|
-
.container-main {
|
|
6684
|
-
container-name: "main";
|
|
6685
|
-
}
|
|
6686
|
-
|
|
6687
|
-
.container-sidebar {
|
|
6688
|
-
container-name: "sidebar";
|
|
6689
|
-
}
|
|
6690
|
-
|
|
6691
|
-
.container-card {
|
|
6692
|
-
container-name: "card";
|
|
6693
|
-
}
|
|
6694
|
-
|
|
6695
|
-
.container-section {
|
|
6696
|
-
container-name: "section";
|
|
6697
|
-
}
|
|
6698
|
-
|
|
6699
6931
|
.cursor-auto {
|
|
6700
6932
|
cursor: auto;
|
|
6701
6933
|
}
|
|
@@ -14933,193 +15165,6 @@ code {
|
|
|
14933
15165
|
max-height: 16rem;
|
|
14934
15166
|
}
|
|
14935
15167
|
}
|
|
14936
|
-
:root {
|
|
14937
|
-
--tooltip-bg: rgba(17 17 17 / 90%);
|
|
14938
|
-
--tooltip-shadow-color: rgb(0 0 0 / 20%);
|
|
14939
|
-
--tooltip-text-color: #fff;
|
|
14940
|
-
--microtip-transition-duration: 0.18s;
|
|
14941
|
-
--microtip-transition-easing: ease-in-out;
|
|
14942
|
-
--microtip-transition-delay: 0s;
|
|
14943
|
-
--microtip-font-size: 13px;
|
|
14944
|
-
--microtip-font-weight: normal;
|
|
14945
|
-
--microtip-text-transform: none;
|
|
14946
|
-
--tooltip-small-width: 80px;
|
|
14947
|
-
--tooltip-medium-width: 150px;
|
|
14948
|
-
--tooltip-large-width: 260px;
|
|
14949
|
-
--tooltip-border-radius: 4px;
|
|
14950
|
-
}
|
|
14951
|
-
|
|
14952
|
-
[data-tooltip][role~=tooltip] {
|
|
14953
|
-
position: relative;
|
|
14954
|
-
}
|
|
14955
|
-
[data-tooltip][role~=tooltip]::before, [data-tooltip][role~=tooltip]::after {
|
|
14956
|
-
transform: translate3d(0, 0, 0);
|
|
14957
|
-
backface-visibility: hidden;
|
|
14958
|
-
will-change: transform;
|
|
14959
|
-
opacity: 0;
|
|
14960
|
-
pointer-events: none;
|
|
14961
|
-
transition: all var(--microtip-transition-duration) var(--microtip-transition-easing) var(--microtip-transition-delay);
|
|
14962
|
-
position: absolute;
|
|
14963
|
-
box-sizing: border-box;
|
|
14964
|
-
z-index: 10;
|
|
14965
|
-
transform-origin: top;
|
|
14966
|
-
}
|
|
14967
|
-
[data-tooltip][role~=tooltip]::before {
|
|
14968
|
-
background-size: 100% auto !important;
|
|
14969
|
-
content: "";
|
|
14970
|
-
}
|
|
14971
|
-
[data-tooltip][role~=tooltip]::after {
|
|
14972
|
-
background: var(--tooltip-bg);
|
|
14973
|
-
box-shadow: 0 3px 7px var(--tooltip-shadow-color);
|
|
14974
|
-
border-radius: var(--tooltip-border-radius);
|
|
14975
|
-
color: var(--tooltip-text-color);
|
|
14976
|
-
content: attr(data-tooltip);
|
|
14977
|
-
font-size: var(--microtip-font-size);
|
|
14978
|
-
font-weight: var(--microtip-font-weight);
|
|
14979
|
-
text-transform: var(--microtip-text-transform);
|
|
14980
|
-
padding: 0.5em 1em;
|
|
14981
|
-
white-space: nowrap;
|
|
14982
|
-
box-sizing: content-box;
|
|
14983
|
-
}
|
|
14984
|
-
[data-tooltip][role~=tooltip]:hover::before, [data-tooltip][role~=tooltip]:hover::after, [data-tooltip][role~=tooltip]:focus::before, [data-tooltip][role~=tooltip]:focus::after {
|
|
14985
|
-
opacity: 1;
|
|
14986
|
-
pointer-events: auto;
|
|
14987
|
-
}
|
|
14988
|
-
|
|
14989
|
-
[role~=tooltip][data-microtip-position|=top]::before {
|
|
14990
|
-
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;
|
|
14991
|
-
height: 6px;
|
|
14992
|
-
width: 18px;
|
|
14993
|
-
margin-bottom: 6px;
|
|
14994
|
-
transform: translate3d(-50%, 0, 0);
|
|
14995
|
-
bottom: 100%;
|
|
14996
|
-
left: 50%;
|
|
14997
|
-
}
|
|
14998
|
-
[role~=tooltip][data-microtip-position|=top]::after {
|
|
14999
|
-
margin-bottom: 11px;
|
|
15000
|
-
transform: translate3d(-50%, 0, 0);
|
|
15001
|
-
bottom: 100%;
|
|
15002
|
-
left: 50%;
|
|
15003
|
-
}
|
|
15004
|
-
[role~=tooltip][data-microtip-position|=top]:hover::before {
|
|
15005
|
-
transform: translate3d(-50%, -5px, 0);
|
|
15006
|
-
}
|
|
15007
|
-
[role~=tooltip][data-microtip-position|=top]:hover::after {
|
|
15008
|
-
transform: translate3d(-50%, -5px, 0);
|
|
15009
|
-
}
|
|
15010
|
-
|
|
15011
|
-
[role~=tooltip][data-microtip-position=top-left]::after {
|
|
15012
|
-
transform: translate3d(calc(-100% + 16px), 0, 0);
|
|
15013
|
-
bottom: 100%;
|
|
15014
|
-
}
|
|
15015
|
-
[role~=tooltip][data-microtip-position=top-left]:hover::after {
|
|
15016
|
-
transform: translate3d(calc(-100% + 16px), -5px, 0);
|
|
15017
|
-
}
|
|
15018
|
-
|
|
15019
|
-
[role~=tooltip][data-microtip-position=top-right]::after {
|
|
15020
|
-
transform: translate3d(calc(0% - 16px), 0, 0);
|
|
15021
|
-
bottom: 100%;
|
|
15022
|
-
}
|
|
15023
|
-
[role~=tooltip][data-microtip-position=top-right]:hover::after {
|
|
15024
|
-
transform: translate3d(calc(0% - 16px), -5px, 0);
|
|
15025
|
-
}
|
|
15026
|
-
|
|
15027
|
-
[role~=tooltip][data-microtip-position|=bottom]::before {
|
|
15028
|
-
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;
|
|
15029
|
-
height: 6px;
|
|
15030
|
-
width: 18px;
|
|
15031
|
-
margin-top: 5px;
|
|
15032
|
-
margin-bottom: 0;
|
|
15033
|
-
transform: translate3d(-50%, -10px, 0);
|
|
15034
|
-
bottom: auto;
|
|
15035
|
-
left: 50%;
|
|
15036
|
-
top: 100%;
|
|
15037
|
-
}
|
|
15038
|
-
[role~=tooltip][data-microtip-position|=bottom]::after {
|
|
15039
|
-
margin-top: 11px;
|
|
15040
|
-
transform: translate3d(-50%, -10px, 0);
|
|
15041
|
-
top: 100%;
|
|
15042
|
-
left: 50%;
|
|
15043
|
-
}
|
|
15044
|
-
[role~=tooltip][data-microtip-position|=bottom]:hover::before {
|
|
15045
|
-
transform: translate3d(-50%, 0, 0);
|
|
15046
|
-
}
|
|
15047
|
-
[role~=tooltip][data-microtip-position|=bottom]:hover::after {
|
|
15048
|
-
transform: translate3d(-50%, 0, 0);
|
|
15049
|
-
}
|
|
15050
|
-
|
|
15051
|
-
[role~=tooltip][data-microtip-position=bottom-left]::after {
|
|
15052
|
-
transform: translate3d(calc(-100% + 16px), -10px, 0);
|
|
15053
|
-
top: 100%;
|
|
15054
|
-
}
|
|
15055
|
-
[role~=tooltip][data-microtip-position=bottom-left]:hover::after {
|
|
15056
|
-
transform: translate3d(calc(-100% + 16px), 0, 0);
|
|
15057
|
-
}
|
|
15058
|
-
|
|
15059
|
-
[role~=tooltip][data-microtip-position=bottom-right]::after {
|
|
15060
|
-
transform: translate3d(calc(0% - 16px), -10px, 0);
|
|
15061
|
-
top: 100%;
|
|
15062
|
-
}
|
|
15063
|
-
[role~=tooltip][data-microtip-position=bottom-right]:hover::after {
|
|
15064
|
-
transform: translate3d(calc(0% - 16px), 0, 0);
|
|
15065
|
-
}
|
|
15066
|
-
|
|
15067
|
-
[role~=tooltip][data-microtip-position=left]::before, [role~=tooltip][data-microtip-position=left]::after {
|
|
15068
|
-
inset: auto auto auto 100%;
|
|
15069
|
-
left: auto;
|
|
15070
|
-
right: 100%;
|
|
15071
|
-
top: 50%;
|
|
15072
|
-
transform: translate3d(10px, -50%, 0);
|
|
15073
|
-
}
|
|
15074
|
-
[role~=tooltip][data-microtip-position=left]::before {
|
|
15075
|
-
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;
|
|
15076
|
-
height: 18px;
|
|
15077
|
-
width: 6px;
|
|
15078
|
-
margin-right: 5px;
|
|
15079
|
-
margin-bottom: 0;
|
|
15080
|
-
}
|
|
15081
|
-
[role~=tooltip][data-microtip-position=left]::after {
|
|
15082
|
-
margin-right: 11px;
|
|
15083
|
-
}
|
|
15084
|
-
[role~=tooltip][data-microtip-position=left]:hover::before, [role~=tooltip][data-microtip-position=left]:hover::after {
|
|
15085
|
-
transform: translate3d(0, -50%, 0);
|
|
15086
|
-
}
|
|
15087
|
-
|
|
15088
|
-
[role~=tooltip][data-microtip-position=right]::before, [role~=tooltip][data-microtip-position=right]::after {
|
|
15089
|
-
bottom: auto;
|
|
15090
|
-
left: 100%;
|
|
15091
|
-
top: 50%;
|
|
15092
|
-
transform: translate3d(-10px, -50%, 0);
|
|
15093
|
-
}
|
|
15094
|
-
[role~=tooltip][data-microtip-position=right]::before {
|
|
15095
|
-
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;
|
|
15096
|
-
height: 18px;
|
|
15097
|
-
width: 6px;
|
|
15098
|
-
margin-bottom: 0;
|
|
15099
|
-
margin-left: 5px;
|
|
15100
|
-
}
|
|
15101
|
-
[role~=tooltip][data-microtip-position=right]::after {
|
|
15102
|
-
margin-left: 11px;
|
|
15103
|
-
}
|
|
15104
|
-
[role~=tooltip][data-microtip-position=right]:hover::before, [role~=tooltip][data-microtip-position=right]:hover::after {
|
|
15105
|
-
transform: translate3d(0, -50%, 0);
|
|
15106
|
-
}
|
|
15107
|
-
|
|
15108
|
-
[role~=tooltip][data-microtip-size=small]::after {
|
|
15109
|
-
white-space: initial;
|
|
15110
|
-
width: var(--tooltip-small-width);
|
|
15111
|
-
}
|
|
15112
|
-
|
|
15113
|
-
[role~=tooltip][data-microtip-size=medium]::after {
|
|
15114
|
-
white-space: initial;
|
|
15115
|
-
width: var(--tooltip-medium-width);
|
|
15116
|
-
}
|
|
15117
|
-
|
|
15118
|
-
[role~=tooltip][data-microtip-size=large]::after {
|
|
15119
|
-
white-space: initial;
|
|
15120
|
-
width: var(--tooltip-large-width);
|
|
15121
|
-
}
|
|
15122
|
-
|
|
15123
15168
|
.translate-x-0,
|
|
15124
15169
|
.hover\:translate-x-0:hover,
|
|
15125
15170
|
.group:hover .group-hover\:translate-x-0 {
|
|
@@ -23019,6 +23064,7 @@ code {
|
|
|
23019
23064
|
|
|
23020
23065
|
.gap-y-0 {
|
|
23021
23066
|
row-gap: 0px;
|
|
23067
|
+
--flex-gap: 0px;
|
|
23022
23068
|
}
|
|
23023
23069
|
|
|
23024
23070
|
.space-x-0 > * + * {
|
|
@@ -23111,6 +23157,7 @@ code {
|
|
|
23111
23157
|
|
|
23112
23158
|
.gap-y-1 {
|
|
23113
23159
|
row-gap: 0.25rem;
|
|
23160
|
+
--flex-gap: 0.25rem;
|
|
23114
23161
|
}
|
|
23115
23162
|
|
|
23116
23163
|
.space-x-1 > * + * {
|
|
@@ -23203,6 +23250,7 @@ code {
|
|
|
23203
23250
|
|
|
23204
23251
|
.gap-y-2 {
|
|
23205
23252
|
row-gap: 0.5rem;
|
|
23253
|
+
--flex-gap: 0.5rem;
|
|
23206
23254
|
}
|
|
23207
23255
|
|
|
23208
23256
|
.space-x-2 > * + * {
|
|
@@ -23295,6 +23343,7 @@ code {
|
|
|
23295
23343
|
|
|
23296
23344
|
.gap-y-3 {
|
|
23297
23345
|
row-gap: 0.75rem;
|
|
23346
|
+
--flex-gap: 0.75rem;
|
|
23298
23347
|
}
|
|
23299
23348
|
|
|
23300
23349
|
.space-x-3 > * + * {
|
|
@@ -23387,6 +23436,7 @@ code {
|
|
|
23387
23436
|
|
|
23388
23437
|
.gap-y-4 {
|
|
23389
23438
|
row-gap: 1rem;
|
|
23439
|
+
--flex-gap: 1rem;
|
|
23390
23440
|
}
|
|
23391
23441
|
|
|
23392
23442
|
.space-x-4 > * + * {
|
|
@@ -23479,6 +23529,7 @@ code {
|
|
|
23479
23529
|
|
|
23480
23530
|
.gap-y-5 {
|
|
23481
23531
|
row-gap: 1.25rem;
|
|
23532
|
+
--flex-gap: 1.25rem;
|
|
23482
23533
|
}
|
|
23483
23534
|
|
|
23484
23535
|
.space-x-5 > * + * {
|
|
@@ -23571,6 +23622,7 @@ code {
|
|
|
23571
23622
|
|
|
23572
23623
|
.gap-y-6 {
|
|
23573
23624
|
row-gap: 1.5rem;
|
|
23625
|
+
--flex-gap: 1.5rem;
|
|
23574
23626
|
}
|
|
23575
23627
|
|
|
23576
23628
|
.space-x-6 > * + * {
|
|
@@ -23663,6 +23715,7 @@ code {
|
|
|
23663
23715
|
|
|
23664
23716
|
.gap-y-8 {
|
|
23665
23717
|
row-gap: 2rem;
|
|
23718
|
+
--flex-gap: 2rem;
|
|
23666
23719
|
}
|
|
23667
23720
|
|
|
23668
23721
|
.space-x-8 > * + * {
|
|
@@ -23755,6 +23808,7 @@ code {
|
|
|
23755
23808
|
|
|
23756
23809
|
.gap-y-10 {
|
|
23757
23810
|
row-gap: 2.5rem;
|
|
23811
|
+
--flex-gap: 2.5rem;
|
|
23758
23812
|
}
|
|
23759
23813
|
|
|
23760
23814
|
.space-x-10 > * + * {
|
|
@@ -23847,6 +23901,7 @@ code {
|
|
|
23847
23901
|
|
|
23848
23902
|
.gap-y-12 {
|
|
23849
23903
|
row-gap: 3rem;
|
|
23904
|
+
--flex-gap: 3rem;
|
|
23850
23905
|
}
|
|
23851
23906
|
|
|
23852
23907
|
.space-x-12 > * + * {
|
|
@@ -23939,6 +23994,7 @@ code {
|
|
|
23939
23994
|
|
|
23940
23995
|
.gap-y-16 {
|
|
23941
23996
|
row-gap: 4rem;
|
|
23997
|
+
--flex-gap: 4rem;
|
|
23942
23998
|
}
|
|
23943
23999
|
|
|
23944
24000
|
.space-x-16 > * + * {
|
|
@@ -24031,6 +24087,7 @@ code {
|
|
|
24031
24087
|
|
|
24032
24088
|
.gap-y-20 {
|
|
24033
24089
|
row-gap: 5rem;
|
|
24090
|
+
--flex-gap: 5rem;
|
|
24034
24091
|
}
|
|
24035
24092
|
|
|
24036
24093
|
.space-x-20 > * + * {
|
|
@@ -24123,6 +24180,7 @@ code {
|
|
|
24123
24180
|
|
|
24124
24181
|
.gap-y-24 {
|
|
24125
24182
|
row-gap: 6rem;
|
|
24183
|
+
--flex-gap: 6rem;
|
|
24126
24184
|
}
|
|
24127
24185
|
|
|
24128
24186
|
.space-x-24 > * + * {
|
|
@@ -24215,6 +24273,7 @@ code {
|
|
|
24215
24273
|
|
|
24216
24274
|
.gap-y-32 {
|
|
24217
24275
|
row-gap: 8rem;
|
|
24276
|
+
--flex-gap: 8rem;
|
|
24218
24277
|
}
|
|
24219
24278
|
|
|
24220
24279
|
.space-x-32 > * + * {
|
|
@@ -24307,6 +24366,7 @@ code {
|
|
|
24307
24366
|
|
|
24308
24367
|
.gap-y-40 {
|
|
24309
24368
|
row-gap: 10rem;
|
|
24369
|
+
--flex-gap: 10rem;
|
|
24310
24370
|
}
|
|
24311
24371
|
|
|
24312
24372
|
.space-x-40 > * + * {
|
|
@@ -24399,6 +24459,7 @@ code {
|
|
|
24399
24459
|
|
|
24400
24460
|
.gap-y-48 {
|
|
24401
24461
|
row-gap: 12rem;
|
|
24462
|
+
--flex-gap: 12rem;
|
|
24402
24463
|
}
|
|
24403
24464
|
|
|
24404
24465
|
.space-x-48 > * + * {
|
|
@@ -24491,6 +24552,7 @@ code {
|
|
|
24491
24552
|
|
|
24492
24553
|
.gap-y-56 {
|
|
24493
24554
|
row-gap: 14rem;
|
|
24555
|
+
--flex-gap: 14rem;
|
|
24494
24556
|
}
|
|
24495
24557
|
|
|
24496
24558
|
.space-x-56 > * + * {
|
|
@@ -24583,6 +24645,7 @@ code {
|
|
|
24583
24645
|
|
|
24584
24646
|
.gap-y-64 {
|
|
24585
24647
|
row-gap: 16rem;
|
|
24648
|
+
--flex-gap: 16rem;
|
|
24586
24649
|
}
|
|
24587
24650
|
|
|
24588
24651
|
.space-x-64 > * + * {
|
|
@@ -32176,9 +32239,9 @@ code {
|
|
|
32176
32239
|
}
|
|
32177
32240
|
|
|
32178
32241
|
.animate-shake {
|
|
32179
|
-
animation: anim-shake-
|
|
32242
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32180
32243
|
}
|
|
32181
|
-
@keyframes anim-shake-
|
|
32244
|
+
@keyframes anim-shake-5 {
|
|
32182
32245
|
0%, 100% {
|
|
32183
32246
|
transform: translateX(0);
|
|
32184
32247
|
}
|
|
@@ -32213,7 +32276,7 @@ code {
|
|
|
32213
32276
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32214
32277
|
}
|
|
32215
32278
|
.animate-shake\@xs {
|
|
32216
|
-
animation: anim-shake-
|
|
32279
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32217
32280
|
}
|
|
32218
32281
|
}
|
|
32219
32282
|
@media (min-width: 640px) {
|
|
@@ -32239,7 +32302,7 @@ code {
|
|
|
32239
32302
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32240
32303
|
}
|
|
32241
32304
|
.animate-shake\@sm {
|
|
32242
|
-
animation: anim-shake-
|
|
32305
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32243
32306
|
}
|
|
32244
32307
|
}
|
|
32245
32308
|
@media (min-width: 768px) {
|
|
@@ -32265,7 +32328,7 @@ code {
|
|
|
32265
32328
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32266
32329
|
}
|
|
32267
32330
|
.animate-shake\@md {
|
|
32268
|
-
animation: anim-shake-
|
|
32331
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32269
32332
|
}
|
|
32270
32333
|
}
|
|
32271
32334
|
@media (min-width: 1024px) {
|
|
@@ -32291,7 +32354,7 @@ code {
|
|
|
32291
32354
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32292
32355
|
}
|
|
32293
32356
|
.animate-shake\@lg {
|
|
32294
|
-
animation: anim-shake-
|
|
32357
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32295
32358
|
}
|
|
32296
32359
|
}
|
|
32297
32360
|
@media (min-width: 1280px) {
|
|
@@ -32317,7 +32380,7 @@ code {
|
|
|
32317
32380
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32318
32381
|
}
|
|
32319
32382
|
.animate-shake\@xl {
|
|
32320
|
-
animation: anim-shake-
|
|
32383
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32321
32384
|
}
|
|
32322
32385
|
}
|
|
32323
32386
|
@media (min-width: 1536px) {
|
|
@@ -32343,7 +32406,7 @@ code {
|
|
|
32343
32406
|
animation: anim-fade-in-down 0.5s ease-in-out 1 forwards;
|
|
32344
32407
|
}
|
|
32345
32408
|
.animate-shake\@2xl {
|
|
32346
|
-
animation: anim-shake-
|
|
32409
|
+
animation: anim-shake-5 0.5s ease-in-out 1;
|
|
32347
32410
|
}
|
|
32348
32411
|
}
|
|
32349
32412
|
.hover-ready {
|
|
@@ -34821,6 +34884,7 @@ code {
|
|
|
34821
34884
|
--black: #000;
|
|
34822
34885
|
--white: #fff;
|
|
34823
34886
|
--transparent: transparent;
|
|
34887
|
+
--button-text-color: ;
|
|
34824
34888
|
--button-bg-color: var(--primary);
|
|
34825
34889
|
--button-bg-color-hover: var(--primary-600);
|
|
34826
34890
|
--link-color: var(--primary);
|
|
@@ -34849,16 +34913,34 @@ code {
|
|
|
34849
34913
|
--button-bg-color-hover: var(--primary-400);
|
|
34850
34914
|
--link-color: var(--primary);
|
|
34851
34915
|
--link-hover-color: var(--primary-400);
|
|
34852
|
-
scrollbar-color: #555 var(--background);
|
|
34853
|
-
}
|
|
34854
|
-
[data-theme=dark]::-webkit-scrollbar-track {
|
|
34855
|
-
background: var(--background);
|
|
34856
|
-
}
|
|
34857
|
-
[data-theme=dark]::-webkit-scrollbar-thumb {
|
|
34858
|
-
background-color: #555;
|
|
34859
|
-
border: 3px solid var(--background);
|
|
34860
34916
|
}
|
|
34861
34917
|
|
|
34918
|
+
@media (prefers-color-scheme: dark) {
|
|
34919
|
+
:root:not([data-theme]),
|
|
34920
|
+
:not([data-theme]) {
|
|
34921
|
+
--bg-base: #1a1a1a;
|
|
34922
|
+
--inverted-bg-base: #fbfafc;
|
|
34923
|
+
--bg-alternate: #f1f1f1;
|
|
34924
|
+
--inverted-bg-alternate: #1a1a1a;
|
|
34925
|
+
--bg-surface: #2e2e2e;
|
|
34926
|
+
--inverted-bg-surface: #fff;
|
|
34927
|
+
--border-base: #2e2e2e;
|
|
34928
|
+
--inverted-border-base: #d3d5d9;
|
|
34929
|
+
--text-color: #f1f1f1;
|
|
34930
|
+
--inverted-text-color: #1a1a1a;
|
|
34931
|
+
--text-muted: rgba(241, 241, 241, 0.5411764706);
|
|
34932
|
+
--inverted-text-muted: rgba(26, 26, 26, 0.5411764706);
|
|
34933
|
+
--text-subtle: rgba(241, 241, 241, 0.3137254902);
|
|
34934
|
+
--inverted-text-subtle: rgba(26, 26, 26, 0.3137254902);
|
|
34935
|
+
--text-inverted: #1a1a1a;
|
|
34936
|
+
--inverted-text-inverted: #f1f1f1;
|
|
34937
|
+
--button-text-color: ;
|
|
34938
|
+
--button-bg-color: var(--primary);
|
|
34939
|
+
--button-bg-color-hover: var(--primary-400);
|
|
34940
|
+
--link-color: var(--primary);
|
|
34941
|
+
--link-hover-color: var(--primary-400);
|
|
34942
|
+
}
|
|
34943
|
+
}
|
|
34862
34944
|
.text-on-primary-50 {
|
|
34863
34945
|
color: #1a1a1a;
|
|
34864
34946
|
}
|