ustatic-css 0.0.1-b.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/LICENSE +21 -0
- package/README.md +202 -0
- package/dist/_ustatic-vars-Cx6_uZJY.cjs +1 -0
- package/dist/_ustatic-vars-D2NgNZNI.js +4 -0
- package/dist/css/modules/align.css +1 -0
- package/dist/css/modules/animations.css +1 -0
- package/dist/css/modules/base.css +1 -0
- package/dist/css/modules/bg.css +1 -0
- package/dist/css/modules/border.css +1 -0
- package/dist/css/modules/cursor.css +1 -0
- package/dist/css/modules/display.css +1 -0
- package/dist/css/modules/effects.css +1 -0
- package/dist/css/modules/filters.css +1 -0
- package/dist/css/modules/flexbox.css +1 -0
- package/dist/css/modules/grid.css +1 -0
- package/dist/css/modules/hide.css +1 -0
- package/dist/css/modules/interactivity.css +1 -0
- package/dist/css/modules/outline.css +1 -0
- package/dist/css/modules/position.css +1 -0
- package/dist/css/modules/scroll.css +1 -0
- package/dist/css/modules/sizing.css +1 -0
- package/dist/css/modules/spacing.css +1 -0
- package/dist/css/modules/typography.css +1 -0
- package/dist/css/ustatic-vars.css +1 -0
- package/dist/css/ustatic.css +1 -0
- package/dist/js/index.cjs.js +9 -0
- package/dist/js/index.es.js +175 -0
- package/dist/types/package.json.d.ts +102 -0
- package/dist/types/src/index.d.ts +4 -0
- package/dist/types/src/index.d.ts.map +1 -0
- package/dist/types/src/plugins/vue.plugin.d.ts +15 -0
- package/dist/types/src/plugins/vue.plugin.d.ts.map +1 -0
- package/dist/types/src/utils/styleLoader.d.ts +35 -0
- package/dist/types/src/utils/styleLoader.d.ts.map +1 -0
- package/dist/types/src/utils/styleloader.classmap.d.ts +2 -0
- package/dist/types/src/utils/styleloader.classmap.d.ts.map +1 -0
- package/dist/types/src/utils/useCssProperties.d.ts +17 -0
- package/dist/types/src/utils/useCssProperties.d.ts.map +1 -0
- package/dist/types/src/utils/useTokens.d.ts +21 -0
- package/dist/types/src/utils/useTokens.d.ts.map +1 -0
- package/dist/ustatic-index-1SZfqZon.js +4 -0
- package/dist/ustatic-index-QcZrD98s.cjs +1 -0
- package/package.json +99 -0
- package/src/css/assets/tokens/_ustatic-list.scss +460 -0
- package/src/css/assets/tokens/_ustatic-prefix.scss +1 -0
- package/src/css/assets/tokens/_ustatic-vars.scss +757 -0
- package/src/css/modules/align/index.scss +17 -0
- package/src/css/modules/animations/index.scss +151 -0
- package/src/css/modules/base/index.scss +406 -0
- package/src/css/modules/base/scrollbar.scss +21 -0
- package/src/css/modules/bg/index.scss +60 -0
- package/src/css/modules/border/border.scss +88 -0
- package/src/css/modules/border/divider.scss +38 -0
- package/src/css/modules/border/index.scss +3 -0
- package/src/css/modules/border/rounded.scss +70 -0
- package/src/css/modules/cursor/index.scss +33 -0
- package/src/css/modules/display/index.scss +19 -0
- package/src/css/modules/effects/index.scss +35 -0
- package/src/css/modules/filters/index.scss +34 -0
- package/src/css/modules/flexbox/flex.scss +132 -0
- package/src/css/modules/flexbox/gap.scss +15 -0
- package/src/css/modules/flexbox/index.scss +2 -0
- package/src/css/modules/grid/index.scss +94 -0
- package/src/css/modules/hide/index.scss +27 -0
- package/src/css/modules/interactivity/index.scss +28 -0
- package/src/css/modules/outline/index.scss +63 -0
- package/src/css/modules/position/index.scss +94 -0
- package/src/css/modules/scroll/index.scss +68 -0
- package/src/css/modules/sizing/index.scss +91 -0
- package/src/css/modules/spacing/index.scss +56 -0
- package/src/css/modules/typography/index.scss +139 -0
- package/src/css/tokens/base/animations/underline.yaml +5 -0
- package/src/css/tokens/base/border/color.yaml +17 -0
- package/src/css/tokens/base/border/radius.yaml +33 -0
- package/src/css/tokens/base/border/width.yaml +19 -0
- package/src/css/tokens/base/color/accent.yaml +416 -0
- package/src/css/tokens/base/color/base.yaml +492 -0
- package/src/css/tokens/base/color/opacity.yaml +4 -0
- package/src/css/tokens/base/color/variant.yaml +18 -0
- package/src/css/tokens/base/cursor/base.yaml +18 -0
- package/src/css/tokens/base/font/weight.yaml +23 -0
- package/src/css/tokens/base/grid/base.yaml +9 -0
- package/src/css/tokens/base/position/base.yaml +253 -0
- package/src/css/tokens/base/rotation/base.yaml +20 -0
- package/src/css/tokens/base/screen/base.yaml +10 -0
- package/src/css/tokens/base/scroll/base.yaml +16 -0
- package/src/css/tokens/base/size/base.yaml +16 -0
- package/src/css/tokens/base/text/color.yaml +20 -0
- package/src/css/tokens/base/text/size.yaml +37 -0
- package/src/css/tokens/base/visibility/base.yaml +61 -0
- package/src/css/ustatic-index.scss +24 -0
- package/src/css/utils/_token.scss +56 -0
- package/src/css/variables.scss +359 -0
- package/src/index.ts +6 -0
- package/src/plugins/vue.plugin.ts +77 -0
- package/src/utils/styleLoader.ts +257 -0
- package/src/utils/styleloader.classmap.ts +109 -0
- package/src/utils/useCssProperties.ts +152 -0
- package/src/utils/useTokens.ts +287 -0
|
@@ -0,0 +1,757 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--u-base-underline-color: #5993d9;
|
|
3
|
+
--u-base-border-color-black: #000000;
|
|
4
|
+
--u-base-border-color-primary: #5993d9;
|
|
5
|
+
--u-base-border-color-secondary: #e53206;
|
|
6
|
+
--u-base-border-color-success: #14a44d;
|
|
7
|
+
--u-base-border-color-info: #54b4d3;
|
|
8
|
+
--u-base-border-color-warning: #e4a11b;
|
|
9
|
+
--u-base-border-color-danger: #dc4c64;
|
|
10
|
+
--u-base-border-radius-def: 0.25rem;
|
|
11
|
+
--u-base-border-radius-none: 0;
|
|
12
|
+
--u-base-border-radius-sm: 0.125rem; /* примерно 2px */
|
|
13
|
+
--u-base-border-radius-base: 0.25rem; /* примерно 4px */
|
|
14
|
+
--u-base-border-radius-md: 0.375rem; /* примерно 6px */
|
|
15
|
+
--u-base-border-radius-lg: 0.5rem; /* примерно 8px */
|
|
16
|
+
--u-base-border-radius-xl: 0.75rem; /* примерно 12px */
|
|
17
|
+
--u-base-border-radius-2xl: 1rem; /* примерно 16px */
|
|
18
|
+
--u-base-border-radius-3xl: 1.5rem; /* примерно 24px */
|
|
19
|
+
--u-base-border-radius-full: 9999px; /* делает элемент полностью круглым */
|
|
20
|
+
--u-base-border-rounded: 100%;
|
|
21
|
+
--u-base-border-width-0: 0;
|
|
22
|
+
--u-base-border-width-1: 1px;
|
|
23
|
+
--u-base-border-width-2: 2px;
|
|
24
|
+
--u-base-border-width-3: 3px;
|
|
25
|
+
--u-base-border-width-4: 4px;
|
|
26
|
+
--u-base-border-width-5: 5px;
|
|
27
|
+
--u-base-border-width-def: 1px;
|
|
28
|
+
--u-base-border-none: 0;
|
|
29
|
+
--u-base-color-primary-50: #edf5fc;
|
|
30
|
+
--u-base-color-primary-100: #ddebf8;
|
|
31
|
+
--u-base-color-primary-200: #c4dcf3;
|
|
32
|
+
--u-base-color-primary-300: #9dc7ec;
|
|
33
|
+
--u-base-color-primary-400: #74ade2;
|
|
34
|
+
--u-base-color-primary-500: #5993d9;
|
|
35
|
+
--u-base-color-primary-600: #4b7fd2;
|
|
36
|
+
--u-base-color-primary-700: #4471ca;
|
|
37
|
+
--u-base-color-primary-800: #375bae;
|
|
38
|
+
--u-base-color-primary-900: #33508e;
|
|
39
|
+
--u-base-color-primary-950: #26375f;
|
|
40
|
+
--u-base-color-primary-50-hex: #edf5fc;
|
|
41
|
+
--u-base-color-primary-50-rgb: 237, 245, 252;
|
|
42
|
+
--u-base-color-primary-100-hex: #ddebf8;
|
|
43
|
+
--u-base-color-primary-100-rgb: 221, 235, 248;
|
|
44
|
+
--u-base-color-primary-200-hex: #c4dcf3;
|
|
45
|
+
--u-base-color-primary-200-rgb: 196, 220, 243;
|
|
46
|
+
--u-base-color-primary-300-hex: #9dc7ec;
|
|
47
|
+
--u-base-color-primary-300-rgb: 157, 199, 236;
|
|
48
|
+
--u-base-color-primary-400-hex: #74ade2;
|
|
49
|
+
--u-base-color-primary-400-rgb: 116, 173, 226;
|
|
50
|
+
--u-base-color-primary-500-hex: #5993d9;
|
|
51
|
+
--u-base-color-primary-500-rgb: 89, 147, 217;
|
|
52
|
+
--u-base-color-primary-600-hex: #4b7fd2;
|
|
53
|
+
--u-base-color-primary-600-rgb: 75, 127, 210;
|
|
54
|
+
--u-base-color-primary-700-hex: #4471ca;
|
|
55
|
+
--u-base-color-primary-700-rgb: 68, 113, 202;
|
|
56
|
+
--u-base-color-primary-800-hex: #375bae;
|
|
57
|
+
--u-base-color-primary-800-rgb: 55, 91, 174;
|
|
58
|
+
--u-base-color-primary-900-hex: #33508e;
|
|
59
|
+
--u-base-color-primary-900-rgb: 51, 80, 142;
|
|
60
|
+
--u-base-color-primary-950-hex: #26375f;
|
|
61
|
+
--u-base-color-primary-950-rgb: 38, 55, 95;
|
|
62
|
+
--u-base-color-primary-def: #5993d9;
|
|
63
|
+
--u-base-color-primary-def-hex: #5993d9;
|
|
64
|
+
--u-base-color-primary-def-rgb: 89, 147, 217;
|
|
65
|
+
--u-base-color-secondary-50: #fdebe3;
|
|
66
|
+
--u-base-color-secondary-100: #fbe0d0;
|
|
67
|
+
--u-base-color-secondary-200: #f7c0a6;
|
|
68
|
+
--u-base-color-secondary-300: #f39972;
|
|
69
|
+
--u-base-color-secondary-400: #ee683f;
|
|
70
|
+
--u-base-color-secondary-500: #e53206;
|
|
71
|
+
--u-base-color-secondary-600: #be230e;
|
|
72
|
+
--u-base-color-secondary-700: #a52118;
|
|
73
|
+
--u-base-color-secondary-800: #871f1c;
|
|
74
|
+
--u-base-color-secondary-900: #73201c;
|
|
75
|
+
--u-base-color-secondary-950: #631313;
|
|
76
|
+
--u-base-color-secondary-50-hex: #fdebe3;
|
|
77
|
+
--u-base-color-secondary-50-rgb: 253, 235, 227;
|
|
78
|
+
--u-base-color-secondary-100-hex: #fbe0d0;
|
|
79
|
+
--u-base-color-secondary-100-rgb: 251, 224, 208;
|
|
80
|
+
--u-base-color-secondary-200-hex: #f7c0a6;
|
|
81
|
+
--u-base-color-secondary-200-rgb: 247, 192, 166;
|
|
82
|
+
--u-base-color-secondary-300-hex: #f39972;
|
|
83
|
+
--u-base-color-secondary-300-rgb: 243, 153, 114;
|
|
84
|
+
--u-base-color-secondary-400-hex: #ee683f;
|
|
85
|
+
--u-base-color-secondary-400-rgb: 238, 104, 63;
|
|
86
|
+
--u-base-color-secondary-500-hex: #e53206;
|
|
87
|
+
--u-base-color-secondary-500-rgb: 229, 50, 6;
|
|
88
|
+
--u-base-color-secondary-600-hex: #be230e;
|
|
89
|
+
--u-base-color-secondary-600-rgb: 190, 35, 14;
|
|
90
|
+
--u-base-color-secondary-700-hex: #a52118;
|
|
91
|
+
--u-base-color-secondary-700-rgb: 165, 33, 24;
|
|
92
|
+
--u-base-color-secondary-800-hex: #871f1c;
|
|
93
|
+
--u-base-color-secondary-800-rgb: 135, 31, 28;
|
|
94
|
+
--u-base-color-secondary-900-hex: #73201c;
|
|
95
|
+
--u-base-color-secondary-900-rgb: 115, 32, 28;
|
|
96
|
+
--u-base-color-secondary-950-hex: #631313;
|
|
97
|
+
--u-base-color-secondary-950-rgb: 99, 19, 19;
|
|
98
|
+
--u-base-color-secondary-def: #e53206;
|
|
99
|
+
--u-base-color-secondary-def-hex: #e53206;
|
|
100
|
+
--u-base-color-secondary-def-rgb: 229, 50, 6;
|
|
101
|
+
--u-base-color-success-50: #eafaf1;
|
|
102
|
+
--u-base-color-success-100: #d0eddb;
|
|
103
|
+
--u-base-color-success-200: #a1dbb8;
|
|
104
|
+
--u-base-color-success-300: #72c894;
|
|
105
|
+
--u-base-color-success-400: #43b671;
|
|
106
|
+
--u-base-color-success-500: #14a44d;
|
|
107
|
+
--u-base-color-success-600: #10833e;
|
|
108
|
+
--u-base-color-success-700: #0c622e;
|
|
109
|
+
--u-base-color-success-800: #08421f;
|
|
110
|
+
--u-base-color-success-900: #04210f;
|
|
111
|
+
--u-base-color-success-50-hex: #eafaf1;
|
|
112
|
+
--u-base-color-success-50-rgb: 234,250,241;
|
|
113
|
+
--u-base-color-success-100-hex: #d0eddb;
|
|
114
|
+
--u-base-color-success-100-rgb: 208, 237, 219;
|
|
115
|
+
--u-base-color-success-200-hex: #a1dbb8;
|
|
116
|
+
--u-base-color-success-200-rgb: 161, 219, 184;
|
|
117
|
+
--u-base-color-success-300-hex: #72c894;
|
|
118
|
+
--u-base-color-success-300-rgb: 114, 200, 148;
|
|
119
|
+
--u-base-color-success-400-hex: #43b671;
|
|
120
|
+
--u-base-color-success-400-rgb: 67, 182, 113;
|
|
121
|
+
--u-base-color-success-500-hex: #14a44d;
|
|
122
|
+
--u-base-color-success-500-rgb: 20, 164, 77;
|
|
123
|
+
--u-base-color-success-600-hex: #10833e;
|
|
124
|
+
--u-base-color-success-600-rgb: 16, 131, 62;
|
|
125
|
+
--u-base-color-success-700-hex: #0c622e;
|
|
126
|
+
--u-base-color-success-700-rgb: 12, 98, 46;
|
|
127
|
+
--u-base-color-success-800-hex: #08421f;
|
|
128
|
+
--u-base-color-success-800-rgb: 8, 66, 31;
|
|
129
|
+
--u-base-color-success-900-hex: #04210f;
|
|
130
|
+
--u-base-color-success-900-rgb: 4, 33, 15;
|
|
131
|
+
--u-base-color-success-def: #14a44d;
|
|
132
|
+
--u-base-color-success-def-hex: #14a44d;
|
|
133
|
+
--u-base-color-success-def-rgb: 20, 164, 77;
|
|
134
|
+
--u-base-color-danger-50: #fdeeee;
|
|
135
|
+
--u-base-color-danger-100: #f8dbe0;
|
|
136
|
+
--u-base-color-danger-200: #f1b7c1;
|
|
137
|
+
--u-base-color-danger-300: #ea94a2;
|
|
138
|
+
--u-base-color-danger-400: #e37083;
|
|
139
|
+
--u-base-color-danger-500: #dc4c64;
|
|
140
|
+
--u-base-color-danger-600: #b03d50;
|
|
141
|
+
--u-base-color-danger-700: #842e3c;
|
|
142
|
+
--u-base-color-danger-800: #581e28;
|
|
143
|
+
--u-base-color-danger-900: #2c0f14;
|
|
144
|
+
--u-base-color-danger-50-hex: #fdeeee;
|
|
145
|
+
--u-base-color-danger-50-rgb: 253,238,238;
|
|
146
|
+
--u-base-color-danger-100-hex: #f8dbe0;
|
|
147
|
+
--u-base-color-danger-100-rgb: 248, 219, 224;
|
|
148
|
+
--u-base-color-danger-200-hex: #f1b7c1;
|
|
149
|
+
--u-base-color-danger-200-rgb: 241, 183, 193;
|
|
150
|
+
--u-base-color-danger-300-hex: #ea94a2;
|
|
151
|
+
--u-base-color-danger-300-rgb: 234, 148, 162;
|
|
152
|
+
--u-base-color-danger-400-hex: #e37083;
|
|
153
|
+
--u-base-color-danger-400-rgb: 227, 112, 131;
|
|
154
|
+
--u-base-color-danger-500-hex: #dc4c64;
|
|
155
|
+
--u-base-color-danger-500-rgb: 220, 76, 100;
|
|
156
|
+
--u-base-color-danger-600-hex: #b03d50;
|
|
157
|
+
--u-base-color-danger-600-rgb: 176, 61, 80;
|
|
158
|
+
--u-base-color-danger-700-hex: #842e3c;
|
|
159
|
+
--u-base-color-danger-700-rgb: 132, 46, 60;
|
|
160
|
+
--u-base-color-danger-800-hex: #581e28;
|
|
161
|
+
--u-base-color-danger-800-rgb: 88, 30, 40;
|
|
162
|
+
--u-base-color-danger-900-hex: #2c0f14;
|
|
163
|
+
--u-base-color-danger-900-rgb: 44, 15, 20;
|
|
164
|
+
--u-base-color-danger-def: #dc4c64;
|
|
165
|
+
--u-base-color-danger-def-hex: #dc4c64;
|
|
166
|
+
--u-base-color-danger-def-rgb: 220, 76, 100;
|
|
167
|
+
--u-base-color-warning-50: #fff9eb;
|
|
168
|
+
--u-base-color-warning-100: #faecd1;
|
|
169
|
+
--u-base-color-warning-200: #f4d9a4;
|
|
170
|
+
--u-base-color-warning-300: #efc776;
|
|
171
|
+
--u-base-color-warning-400: #e9b449;
|
|
172
|
+
--u-base-color-warning-500: #e4a11b;
|
|
173
|
+
--u-base-color-warning-600: #b68116;
|
|
174
|
+
--u-base-color-warning-700: #896110;
|
|
175
|
+
--u-base-color-warning-800: #5b400b;
|
|
176
|
+
--u-base-color-warning-900: #2e2005;
|
|
177
|
+
--u-base-color-warning-50-hex: #fff9eb;
|
|
178
|
+
--u-base-color-warning-50-rgb: 255,249,235;
|
|
179
|
+
--u-base-color-warning-100-hex: #faecd1;
|
|
180
|
+
--u-base-color-warning-100-rgb: 250, 236, 209;
|
|
181
|
+
--u-base-color-warning-200-hex: #f4d9a4;
|
|
182
|
+
--u-base-color-warning-200-rgb: 244, 217, 164;
|
|
183
|
+
--u-base-color-warning-300-hex: #efc776;
|
|
184
|
+
--u-base-color-warning-300-rgb: 239, 199, 118;
|
|
185
|
+
--u-base-color-warning-400-hex: #e9b449;
|
|
186
|
+
--u-base-color-warning-400-rgb: 233, 180, 73;
|
|
187
|
+
--u-base-color-warning-500-hex: #e4a11b;
|
|
188
|
+
--u-base-color-warning-500-rgb: 228, 161, 27;
|
|
189
|
+
--u-base-color-warning-600-hex: #b68116;
|
|
190
|
+
--u-base-color-warning-600-rgb: 182, 129, 22;
|
|
191
|
+
--u-base-color-warning-700-hex: #896110;
|
|
192
|
+
--u-base-color-warning-700-rgb: 137, 97, 16;
|
|
193
|
+
--u-base-color-warning-800-hex: #5b400b;
|
|
194
|
+
--u-base-color-warning-800-rgb: 91, 64, 11;
|
|
195
|
+
--u-base-color-warning-900-hex: #2e2005;
|
|
196
|
+
--u-base-color-warning-900-rgb: 46, 32, 5;
|
|
197
|
+
--u-base-color-warning-def: #e4a11b;
|
|
198
|
+
--u-base-color-warning-def-hex: #e4a11b;
|
|
199
|
+
--u-base-color-warning-def-rgb: 228, 161, 27;
|
|
200
|
+
--u-base-color-info-50: #edf7fa;
|
|
201
|
+
--u-base-color-info-100: #ddf0f6;
|
|
202
|
+
--u-base-color-info-200: #bbe1ed;
|
|
203
|
+
--u-base-color-info-300: #98d2e5;
|
|
204
|
+
--u-base-color-info-400: #76c3dc;
|
|
205
|
+
--u-base-color-info-500: #54b4d3;
|
|
206
|
+
--u-base-color-info-600: #4390a9;
|
|
207
|
+
--u-base-color-info-700: #326c7f;
|
|
208
|
+
--u-base-color-info-800: #214855;
|
|
209
|
+
--u-base-color-info-900: #11242a;
|
|
210
|
+
--u-base-color-info-50-hex: #edf7fa;
|
|
211
|
+
--u-base-color-info-50-rgb: 237,247,250;
|
|
212
|
+
--u-base-color-info-100-hex: #ddf0f6;
|
|
213
|
+
--u-base-color-info-100-rgb: 221, 240, 246;
|
|
214
|
+
--u-base-color-info-200-hex: #bbe1ed;
|
|
215
|
+
--u-base-color-info-200-rgb: 187, 225, 237;
|
|
216
|
+
--u-base-color-info-300-hex: #98d2e5;
|
|
217
|
+
--u-base-color-info-300-rgb: 152, 210, 229;
|
|
218
|
+
--u-base-color-info-400-hex: #76c3dc;
|
|
219
|
+
--u-base-color-info-400-rgb: 118, 195, 220;
|
|
220
|
+
--u-base-color-info-500-hex: #54b4d3;
|
|
221
|
+
--u-base-color-info-500-rgb: 84, 180, 211;
|
|
222
|
+
--u-base-color-info-600-hex: #4390a9;
|
|
223
|
+
--u-base-color-info-600-rgb: 67, 144, 169;
|
|
224
|
+
--u-base-color-info-700-hex: #326c7f;
|
|
225
|
+
--u-base-color-info-700-rgb: 50, 108, 127;
|
|
226
|
+
--u-base-color-info-800-hex: #214855;
|
|
227
|
+
--u-base-color-info-800-rgb: 33, 72, 85;
|
|
228
|
+
--u-base-color-info-900-hex: #11242a;
|
|
229
|
+
--u-base-color-info-900-rgb: 17, 36, 42;
|
|
230
|
+
--u-base-color-info-def: #54b4d3;
|
|
231
|
+
--u-base-color-info-def-hex: #54b4d3;
|
|
232
|
+
--u-base-color-info-def-rgb: 84, 180, 211;
|
|
233
|
+
--u-base-color-transparent: transparent;
|
|
234
|
+
--u-base-color-transparent-hex: transparent;
|
|
235
|
+
--u-base-color-transparent-rgb: transparent;
|
|
236
|
+
--u-base-color-white: #ffffff;
|
|
237
|
+
--u-base-color-white-hex: #ffffff;
|
|
238
|
+
--u-base-color-white-rgb: 255, 255, 255;
|
|
239
|
+
--u-base-color-black: #000000;
|
|
240
|
+
--u-base-color-black-hex: #000000;
|
|
241
|
+
--u-base-color-black-rgb: 0, 0, 0;
|
|
242
|
+
--u-base-color-background: transparent;
|
|
243
|
+
--u-base-color-gray-50: #f9fafb;
|
|
244
|
+
--u-base-color-gray-100: #f3f4f6;
|
|
245
|
+
--u-base-color-gray-200: #e5e7eb;
|
|
246
|
+
--u-base-color-gray-300: #d1d5db;
|
|
247
|
+
--u-base-color-gray-400: #9ca3af;
|
|
248
|
+
--u-base-color-gray-500: #6b7280;
|
|
249
|
+
--u-base-color-gray-600: #4b5563;
|
|
250
|
+
--u-base-color-gray-700: #374151;
|
|
251
|
+
--u-base-color-gray-800: #1f2937;
|
|
252
|
+
--u-base-color-gray-900: #111827;
|
|
253
|
+
--u-base-color-gray-50-hex: #f9fafb;
|
|
254
|
+
--u-base-color-gray-50-rgb: 249, 250, 251;
|
|
255
|
+
--u-base-color-gray-100-hex: #f3f4f6;
|
|
256
|
+
--u-base-color-gray-100-rgb: 243, 244, 246;
|
|
257
|
+
--u-base-color-gray-200-hex: #e5e7eb;
|
|
258
|
+
--u-base-color-gray-200-rgb: 229, 231, 235;
|
|
259
|
+
--u-base-color-gray-300-hex: #d1d5db;
|
|
260
|
+
--u-base-color-gray-300-rgb: 209, 213, 219;
|
|
261
|
+
--u-base-color-gray-400-hex: #9ca3af;
|
|
262
|
+
--u-base-color-gray-400-rgb: 156, 163, 175;
|
|
263
|
+
--u-base-color-gray-500-hex: #6b7280;
|
|
264
|
+
--u-base-color-gray-500-rgb: 107, 114, 128;
|
|
265
|
+
--u-base-color-gray-600-hex: #4b5563;
|
|
266
|
+
--u-base-color-gray-600-rgb: 75, 85, 99;
|
|
267
|
+
--u-base-color-gray-700-hex: #374151;
|
|
268
|
+
--u-base-color-gray-700-rgb: 55, 65, 81;
|
|
269
|
+
--u-base-color-gray-800-hex: #1f2937;
|
|
270
|
+
--u-base-color-gray-800-rgb: 31, 41, 55;
|
|
271
|
+
--u-base-color-gray-900-hex: #111827;
|
|
272
|
+
--u-base-color-gray-900-rgb: 17, 24, 39;
|
|
273
|
+
--u-base-color-gray-def: #6b7280;
|
|
274
|
+
--u-base-color-gray-def-hex: #6b7280;
|
|
275
|
+
--u-base-color-gray-def-rgb: 107, 114, 128;
|
|
276
|
+
--u-base-color-red-50: #fef2f2;
|
|
277
|
+
--u-base-color-red-100: #fee2e2;
|
|
278
|
+
--u-base-color-red-200: #fecaca;
|
|
279
|
+
--u-base-color-red-300: #fca5a5;
|
|
280
|
+
--u-base-color-red-400: #f87171;
|
|
281
|
+
--u-base-color-red-500: #ef4444;
|
|
282
|
+
--u-base-color-red-600: #dc2626;
|
|
283
|
+
--u-base-color-red-700: #b91c1c;
|
|
284
|
+
--u-base-color-red-800: #991b1b;
|
|
285
|
+
--u-base-color-red-900: #7f1d1d;
|
|
286
|
+
--u-base-color-red-50-hex: #fef2f2;
|
|
287
|
+
--u-base-color-red-50-rgb: 254, 242, 242;
|
|
288
|
+
--u-base-color-red-100-hex: #fee2e2;
|
|
289
|
+
--u-base-color-red-100-rgb: 254, 226, 226;
|
|
290
|
+
--u-base-color-red-200-hex: #fecaca;
|
|
291
|
+
--u-base-color-red-200-rgb: 254, 202, 202;
|
|
292
|
+
--u-base-color-red-300-hex: #fca5a5;
|
|
293
|
+
--u-base-color-red-300-rgb: 252, 165, 165;
|
|
294
|
+
--u-base-color-red-400-hex: #f87171;
|
|
295
|
+
--u-base-color-red-400-rgb: 248, 113, 113;
|
|
296
|
+
--u-base-color-red-500-hex: #ef4444;
|
|
297
|
+
--u-base-color-red-500-rgb: 239, 68, 68;
|
|
298
|
+
--u-base-color-red-600-hex: #dc2626;
|
|
299
|
+
--u-base-color-red-600-rgb: 220, 38, 38;
|
|
300
|
+
--u-base-color-red-700-hex: #b91c1c;
|
|
301
|
+
--u-base-color-red-700-rgb: 185, 28, 28;
|
|
302
|
+
--u-base-color-red-800-hex: #991b1b;
|
|
303
|
+
--u-base-color-red-800-rgb: 153, 27, 27;
|
|
304
|
+
--u-base-color-red-900-hex: #7f1d1d;
|
|
305
|
+
--u-base-color-red-900-rgb: 127, 29, 29;
|
|
306
|
+
--u-base-color-red-def: #ef4444;
|
|
307
|
+
--u-base-color-red-def-hex: #ef4444;
|
|
308
|
+
--u-base-color-red-def-rgb: 239, 68, 68;
|
|
309
|
+
--u-base-color-orange-50: #fff7ed;
|
|
310
|
+
--u-base-color-orange-100: #ffedd5;
|
|
311
|
+
--u-base-color-orange-200: #fed7aa;
|
|
312
|
+
--u-base-color-orange-300: #fdba74;
|
|
313
|
+
--u-base-color-orange-400: #fb923c;
|
|
314
|
+
--u-base-color-orange-500: #f97316;
|
|
315
|
+
--u-base-color-orange-600: #ea580c;
|
|
316
|
+
--u-base-color-orange-700: #c2410c;
|
|
317
|
+
--u-base-color-orange-800: #9a3412;
|
|
318
|
+
--u-base-color-orange-900: #7c2d12;
|
|
319
|
+
--u-base-color-orange-50-hex: #fff7ed;
|
|
320
|
+
--u-base-color-orange-50-rgb: 255, 247, 237;
|
|
321
|
+
--u-base-color-orange-100-hex: #ffedd5;
|
|
322
|
+
--u-base-color-orange-100-rgb: 255, 237, 213;
|
|
323
|
+
--u-base-color-orange-200-hex: #fed7aa;
|
|
324
|
+
--u-base-color-orange-200-rgb: 254, 215, 170;
|
|
325
|
+
--u-base-color-orange-300-hex: #fdba74;
|
|
326
|
+
--u-base-color-orange-300-rgb: 253, 186, 116;
|
|
327
|
+
--u-base-color-orange-400-hex: #fb923c;
|
|
328
|
+
--u-base-color-orange-400-rgb: 251, 146, 60;
|
|
329
|
+
--u-base-color-orange-500-hex: #f97316;
|
|
330
|
+
--u-base-color-orange-500-rgb: 249, 115, 22;
|
|
331
|
+
--u-base-color-orange-600-hex: #ea580c;
|
|
332
|
+
--u-base-color-orange-600-rgb: 234, 88, 12;
|
|
333
|
+
--u-base-color-orange-700-hex: #c2410c;
|
|
334
|
+
--u-base-color-orange-700-rgb: 194, 65, 12;
|
|
335
|
+
--u-base-color-orange-800-hex: #9a3412;
|
|
336
|
+
--u-base-color-orange-800-rgb: 154, 52, 18;
|
|
337
|
+
--u-base-color-orange-900-hex: #7c2d12;
|
|
338
|
+
--u-base-color-orange-900-rgb: 124, 45, 18;
|
|
339
|
+
--u-base-color-orange-def: #f97316;
|
|
340
|
+
--u-base-color-orange-def-hex: #f97316;
|
|
341
|
+
--u-base-color-orange-def-rgb: 249, 115, 22;
|
|
342
|
+
--u-base-color-yellow-50: #fefce8;
|
|
343
|
+
--u-base-color-yellow-100: #fef9c3;
|
|
344
|
+
--u-base-color-yellow-200: #fef08a;
|
|
345
|
+
--u-base-color-yellow-300: #fde047;
|
|
346
|
+
--u-base-color-yellow-400: #facc15;
|
|
347
|
+
--u-base-color-yellow-500: #eab308;
|
|
348
|
+
--u-base-color-yellow-600: #ca8a04;
|
|
349
|
+
--u-base-color-yellow-700: #a16207;
|
|
350
|
+
--u-base-color-yellow-800: #854d0e;
|
|
351
|
+
--u-base-color-yellow-900: #713f12;
|
|
352
|
+
--u-base-color-yellow-50-hex: #fefce8;
|
|
353
|
+
--u-base-color-yellow-50-rgb: 254, 252, 232;
|
|
354
|
+
--u-base-color-yellow-100-hex: #fef9c3;
|
|
355
|
+
--u-base-color-yellow-100-rgb: 254, 249, 195;
|
|
356
|
+
--u-base-color-yellow-200-hex: #fef08a;
|
|
357
|
+
--u-base-color-yellow-200-rgb: 254, 240, 138;
|
|
358
|
+
--u-base-color-yellow-300-hex: #fde047;
|
|
359
|
+
--u-base-color-yellow-300-rgb: 253, 224, 71;
|
|
360
|
+
--u-base-color-yellow-400-hex: #facc15;
|
|
361
|
+
--u-base-color-yellow-400-rgb: 250, 204, 21;
|
|
362
|
+
--u-base-color-yellow-500-hex: #eab308;
|
|
363
|
+
--u-base-color-yellow-500-rgb: 234, 179, 8;
|
|
364
|
+
--u-base-color-yellow-600-hex: #ca8a04;
|
|
365
|
+
--u-base-color-yellow-600-rgb: 202, 138, 4;
|
|
366
|
+
--u-base-color-yellow-700-hex: #a16207;
|
|
367
|
+
--u-base-color-yellow-700-rgb: 161, 98, 7;
|
|
368
|
+
--u-base-color-yellow-800-hex: #854d0e;
|
|
369
|
+
--u-base-color-yellow-800-rgb: 133, 77, 14;
|
|
370
|
+
--u-base-color-yellow-900-hex: #713f12;
|
|
371
|
+
--u-base-color-yellow-900-rgb: 113, 63, 18;
|
|
372
|
+
--u-base-color-yellow-def: #eab308;
|
|
373
|
+
--u-base-color-yellow-def-hex: #eab308;
|
|
374
|
+
--u-base-color-yellow-def-rgb: 234, 179, 8;
|
|
375
|
+
--u-base-color-green-50: #f0fdf4;
|
|
376
|
+
--u-base-color-green-100: #dcfce7;
|
|
377
|
+
--u-base-color-green-200: #bbf7d0;
|
|
378
|
+
--u-base-color-green-300: #86efac;
|
|
379
|
+
--u-base-color-green-400: #4ade80;
|
|
380
|
+
--u-base-color-green-500: #22c55e;
|
|
381
|
+
--u-base-color-green-600: #16a34a;
|
|
382
|
+
--u-base-color-green-700: #15803d;
|
|
383
|
+
--u-base-color-green-800: #166534;
|
|
384
|
+
--u-base-color-green-900: #14532d;
|
|
385
|
+
--u-base-color-green-50-hex: #f0fdf4;
|
|
386
|
+
--u-base-color-green-50-rgb: 240, 253, 244;
|
|
387
|
+
--u-base-color-green-100-hex: #dcfce7;
|
|
388
|
+
--u-base-color-green-100-rgb: 220, 252, 231;
|
|
389
|
+
--u-base-color-green-200-hex: #bbf7d0;
|
|
390
|
+
--u-base-color-green-200-rgb: 187, 247, 208;
|
|
391
|
+
--u-base-color-green-300-hex: #86efac;
|
|
392
|
+
--u-base-color-green-300-rgb: 134, 239, 172;
|
|
393
|
+
--u-base-color-green-400-hex: #4ade80;
|
|
394
|
+
--u-base-color-green-400-rgb: 74, 222, 128;
|
|
395
|
+
--u-base-color-green-500-hex: #22c55e;
|
|
396
|
+
--u-base-color-green-500-rgb: 34, 197, 94;
|
|
397
|
+
--u-base-color-green-600-hex: #16a34a;
|
|
398
|
+
--u-base-color-green-600-rgb: 22, 163, 74;
|
|
399
|
+
--u-base-color-green-700-hex: #15803d;
|
|
400
|
+
--u-base-color-green-700-rgb: 21, 128, 61;
|
|
401
|
+
--u-base-color-green-800-hex: #166534;
|
|
402
|
+
--u-base-color-green-800-rgb: 22, 101, 52;
|
|
403
|
+
--u-base-color-green-900-hex: #14532d;
|
|
404
|
+
--u-base-color-green-900-rgb: 20, 83, 45;
|
|
405
|
+
--u-base-color-green-def: #22c55e;
|
|
406
|
+
--u-base-color-green-def-hex: #22c55e;
|
|
407
|
+
--u-base-color-green-def-rgb: 34, 197, 94;
|
|
408
|
+
--u-base-color-sky-50: #f0f9ff;
|
|
409
|
+
--u-base-color-sky-100: #e0f2fe;
|
|
410
|
+
--u-base-color-sky-200: #bae6fd;
|
|
411
|
+
--u-base-color-sky-300: #7dd3fc;
|
|
412
|
+
--u-base-color-sky-400: #38bdf8;
|
|
413
|
+
--u-base-color-sky-500: #0ea5e9;
|
|
414
|
+
--u-base-color-sky-600: #0284c7;
|
|
415
|
+
--u-base-color-sky-700: #0369a1;
|
|
416
|
+
--u-base-color-sky-800: #075985;
|
|
417
|
+
--u-base-color-sky-900: #0c4a6e;
|
|
418
|
+
--u-base-color-sky-50-hex: #f0f9ff;
|
|
419
|
+
--u-base-color-sky-50-rgb: 240, 249, 255;
|
|
420
|
+
--u-base-color-sky-100-hex: #e0f2fe;
|
|
421
|
+
--u-base-color-sky-100-rgb: 224, 242, 254;
|
|
422
|
+
--u-base-color-sky-200-hex: #bae6fd;
|
|
423
|
+
--u-base-color-sky-200-rgb: 186, 230, 253;
|
|
424
|
+
--u-base-color-sky-300-hex: #7dd3fc;
|
|
425
|
+
--u-base-color-sky-300-rgb: 125, 211, 252;
|
|
426
|
+
--u-base-color-sky-400-hex: #38bdf8;
|
|
427
|
+
--u-base-color-sky-400-rgb: 56, 189, 248;
|
|
428
|
+
--u-base-color-sky-500-hex: #0ea5e9;
|
|
429
|
+
--u-base-color-sky-500-rgb: 14, 165, 233;
|
|
430
|
+
--u-base-color-sky-600-hex: #0284c7;
|
|
431
|
+
--u-base-color-sky-600-rgb: 2, 132, 199;
|
|
432
|
+
--u-base-color-sky-700-hex: #0369a1;
|
|
433
|
+
--u-base-color-sky-700-rgb: 3, 105, 161;
|
|
434
|
+
--u-base-color-sky-800-hex: #075985;
|
|
435
|
+
--u-base-color-sky-800-rgb: 7, 89, 133;
|
|
436
|
+
--u-base-color-sky-900-hex: #0c4a6e;
|
|
437
|
+
--u-base-color-sky-900-rgb: 12, 74, 110;
|
|
438
|
+
--u-base-color-sky-def: #0ea5e9;
|
|
439
|
+
--u-base-color-sky-def-hex: #0ea5e9;
|
|
440
|
+
--u-base-color-sky-def-rgb: 14, 165, 233;
|
|
441
|
+
--u-base-color-blue-50: #eff6ff;
|
|
442
|
+
--u-base-color-blue-100: #dbeafe;
|
|
443
|
+
--u-base-color-blue-200: #bfdbfe;
|
|
444
|
+
--u-base-color-blue-300: #93c5fd;
|
|
445
|
+
--u-base-color-blue-400: #60a5fa;
|
|
446
|
+
--u-base-color-blue-500: #3b82f6;
|
|
447
|
+
--u-base-color-blue-600: #2563eb;
|
|
448
|
+
--u-base-color-blue-700: #1d4ed8;
|
|
449
|
+
--u-base-color-blue-800: #1e40af;
|
|
450
|
+
--u-base-color-blue-900: #1e3a8a;
|
|
451
|
+
--u-base-color-blue-50-hex: #eff6ff;
|
|
452
|
+
--u-base-color-blue-50-rgb: 239, 246, 255;
|
|
453
|
+
--u-base-color-blue-100-hex: #dbeafe;
|
|
454
|
+
--u-base-color-blue-100-rgb: 219, 234, 254;
|
|
455
|
+
--u-base-color-blue-200-hex: #bfdbfe;
|
|
456
|
+
--u-base-color-blue-200-rgb: 191, 219, 254;
|
|
457
|
+
--u-base-color-blue-300-hex: #93c5fd;
|
|
458
|
+
--u-base-color-blue-300-rgb: 147, 197, 253;
|
|
459
|
+
--u-base-color-blue-400-hex: #60a5fa;
|
|
460
|
+
--u-base-color-blue-400-rgb: 96, 165, 250;
|
|
461
|
+
--u-base-color-blue-500-hex: #3b82f6;
|
|
462
|
+
--u-base-color-blue-500-rgb: 59, 130, 246;
|
|
463
|
+
--u-base-color-blue-600-hex: #2563eb;
|
|
464
|
+
--u-base-color-blue-600-rgb: 37, 99, 235;
|
|
465
|
+
--u-base-color-blue-700-hex: #1d4ed8;
|
|
466
|
+
--u-base-color-blue-700-rgb: 29, 78, 216;
|
|
467
|
+
--u-base-color-blue-800-hex: #1e40af;
|
|
468
|
+
--u-base-color-blue-800-rgb: 30, 64, 175;
|
|
469
|
+
--u-base-color-blue-900-hex: #1e3a8a;
|
|
470
|
+
--u-base-color-blue-900-rgb: 30, 58, 138;
|
|
471
|
+
--u-base-color-blue-def: #3b82f6;
|
|
472
|
+
--u-base-color-blue-def-hex: #3b82f6;
|
|
473
|
+
--u-base-color-blue-def-rgb: 59, 130, 246;
|
|
474
|
+
--u-base-color-opacity: 1.0;
|
|
475
|
+
--u-base-color-variant-primary: #5993d9;
|
|
476
|
+
--u-base-color-variant-secondary: #e53206;
|
|
477
|
+
--u-base-color-variant-success: #14a44d;
|
|
478
|
+
--u-base-color-variant-info: #54b4d3;
|
|
479
|
+
--u-base-color-variant-warning: #e4a11b;
|
|
480
|
+
--u-base-color-variant-danger: #dc4c64;
|
|
481
|
+
--u-base-cursor-pointer: pointer;
|
|
482
|
+
--u-base-cursor-move: move;
|
|
483
|
+
--u-base-cursor-default: auto;
|
|
484
|
+
--u-base-cursor-disabled: not-allowed;
|
|
485
|
+
--u-base-cursor-resize-ew: ew-resize;
|
|
486
|
+
--u-base-cursor-resize-ns: ns-resize;
|
|
487
|
+
--u-base-cursor-wait: wait;
|
|
488
|
+
--u-base-cursor-help: help;
|
|
489
|
+
--u-base-font-weight-def: 400;
|
|
490
|
+
--u-base-font-weight-thin: 100;
|
|
491
|
+
--u-base-font-weight-extralight: 200;
|
|
492
|
+
--u-base-font-weight-light: 300;
|
|
493
|
+
--u-base-font-weight-regular: 400;
|
|
494
|
+
--u-base-font-weight-medium: 500;
|
|
495
|
+
--u-base-font-weight-semibold: 600;
|
|
496
|
+
--u-base-font-weight-bold: 700;
|
|
497
|
+
--u-base-font-weight-extrabold: 800;
|
|
498
|
+
--u-base-font-weight-black: 900;
|
|
499
|
+
--u-base-grid-template-columns: 1fr;
|
|
500
|
+
--u-base-grid-template-rows: 1fr;
|
|
501
|
+
--u-base-grid-template-colspan: 1;
|
|
502
|
+
--u-base-step-0: 0px;
|
|
503
|
+
--u-base-step-1: 0.25rem; /* 4px */
|
|
504
|
+
--u-base-step-2: 0.5rem; /* 8px */
|
|
505
|
+
--u-base-step-3: 0.75rem; /* 12px */
|
|
506
|
+
--u-base-step-4: 1rem; /* 16px */
|
|
507
|
+
--u-base-step-5: 1.25rem; /* 20px */
|
|
508
|
+
--u-base-step-6: 1.5rem; /* 24px */
|
|
509
|
+
--u-base-step-7: 1.75rem; /* 28px */
|
|
510
|
+
--u-base-step-8: 2rem; /* 32px */
|
|
511
|
+
--u-base-step-9: 2.25rem; /* 36px */
|
|
512
|
+
--u-base-step-10: 2.5rem; /* 40px */
|
|
513
|
+
--u-base-step-12: 3rem; /* 48px */
|
|
514
|
+
--u-base-step-18: 4.5rem; /* 72px */
|
|
515
|
+
--u-base-step-64: 16rem; /* 256px */
|
|
516
|
+
--u-base-step-px: 1px;
|
|
517
|
+
--u-base-step-0d5: 0.125rem; /* 2px */
|
|
518
|
+
--u-base-step-1d5: 0.375rem; /* 6px */
|
|
519
|
+
--u-base-step-auto: auto;
|
|
520
|
+
--u-base-position-0: 0px;
|
|
521
|
+
--u-base-position-1: 0.25rem; /* 4px */
|
|
522
|
+
--u-base-position-2: 0.5rem; /* 8px */
|
|
523
|
+
--u-base-position-3: 0.75rem; /* 12px */
|
|
524
|
+
--u-base-position-4: 1rem; /* 16px */
|
|
525
|
+
--u-base-position-5: 1.25rem; /* 20px */
|
|
526
|
+
--u-base-position-6: 1.5rem; /* 24px */
|
|
527
|
+
--u-base-position-7: 1.75rem; /* 28px */
|
|
528
|
+
--u-base-position-8: 2rem; /* 32px */
|
|
529
|
+
--u-base-position-9: 2.25rem; /* 36px */
|
|
530
|
+
--u-base-position-10: 2.5rem; /* 40px */
|
|
531
|
+
--u-base-position-12: 3rem; /* 48px */
|
|
532
|
+
--u-base-position-18: 4.5rem; /* 72px */
|
|
533
|
+
--u-base-position-64: 16rem; /* 256px */
|
|
534
|
+
--u-base-position-px: 1px;
|
|
535
|
+
--u-base-position-0d5: 0.125rem; /* 2px */
|
|
536
|
+
--u-base-position-1d5: 0.375rem; /* 6px */
|
|
537
|
+
--u-base-position-auto: auto;
|
|
538
|
+
--u-base-position-1-4: 25%;
|
|
539
|
+
--u-base-position-1-2: 50%;
|
|
540
|
+
--u-base-position-1-3: 33.3333%;
|
|
541
|
+
--u-base-position-2-3: 66.6666%;
|
|
542
|
+
--u-base-position-3-4: 75%;
|
|
543
|
+
--u-base-position-4-5: 80%;
|
|
544
|
+
--u-base-position-full: 100%;
|
|
545
|
+
--u-base-position-5vh: 5vh;
|
|
546
|
+
--u-base-position-10vh: 10vh;
|
|
547
|
+
--u-base-position-15vh: 15vh;
|
|
548
|
+
--u-base-position-20vh: 20vh;
|
|
549
|
+
--u-base-position-25vh: 25vh;
|
|
550
|
+
--u-base-position-30vh: 30vh;
|
|
551
|
+
--u-base-position-35vh: 35vh;
|
|
552
|
+
--u-base-position-40vh: 40vh;
|
|
553
|
+
--u-base-position-45vh: 45vh;
|
|
554
|
+
--u-base-position-50vh: 50vh;
|
|
555
|
+
--u-base-position-55vh: 55vh;
|
|
556
|
+
--u-base-position-60vh: 60vh;
|
|
557
|
+
--u-base-position-65vh: 65vh;
|
|
558
|
+
--u-base-position-70vh: 70vh;
|
|
559
|
+
--u-base-position-75vh: 75vh;
|
|
560
|
+
--u-base-position-80vh: 80vh;
|
|
561
|
+
--u-base-position-85vh: 85vh;
|
|
562
|
+
--u-base-position-90vh: 90vh;
|
|
563
|
+
--u-base-position-95vh: 95vh;
|
|
564
|
+
--u-base-position-100vh: 100vh;
|
|
565
|
+
--u-base-position-5vw: 5vw;
|
|
566
|
+
--u-base-position-10vw: 10vw;
|
|
567
|
+
--u-base-position-15vw: 15vw;
|
|
568
|
+
--u-base-position-20vw: 20vw;
|
|
569
|
+
--u-base-position-25vw: 25vw;
|
|
570
|
+
--u-base-position-30vw: 30vw;
|
|
571
|
+
--u-base-position-35vw: 35vw;
|
|
572
|
+
--u-base-position-40vw: 40vw;
|
|
573
|
+
--u-base-position-45vw: 45vw;
|
|
574
|
+
--u-base-position-50vw: 50vw;
|
|
575
|
+
--u-base-position-55vw: 55vw;
|
|
576
|
+
--u-base-position-60vw: 60vw;
|
|
577
|
+
--u-base-position-65vw: 65vw;
|
|
578
|
+
--u-base-position-70vw: 70vw;
|
|
579
|
+
--u-base-position-75vw: 75vw;
|
|
580
|
+
--u-base-position-80vw: 80vw;
|
|
581
|
+
--u-base-position-85vw: 85vw;
|
|
582
|
+
--u-base-position-90vw: 90vw;
|
|
583
|
+
--u-base-position-95vw: 95vw;
|
|
584
|
+
--u-base-position-100vw: 100vw;
|
|
585
|
+
--u-base-size-0: 0px;
|
|
586
|
+
--u-base-size-1: 0.25rem; /* 4px */
|
|
587
|
+
--u-base-size-2: 0.5rem; /* 8px */
|
|
588
|
+
--u-base-size-3: 0.75rem; /* 12px */
|
|
589
|
+
--u-base-size-4: 1rem; /* 16px */
|
|
590
|
+
--u-base-size-5: 1.25rem; /* 20px */
|
|
591
|
+
--u-base-size-6: 1.5rem; /* 24px */
|
|
592
|
+
--u-base-size-7: 1.75rem; /* 28px */
|
|
593
|
+
--u-base-size-8: 2rem; /* 32px */
|
|
594
|
+
--u-base-size-9: 2.25rem; /* 36px */
|
|
595
|
+
--u-base-size-10: 2.5rem; /* 40px */
|
|
596
|
+
--u-base-size-11: 2.75rem; /* 44px */
|
|
597
|
+
--u-base-size-12: 3rem; /* 48px */
|
|
598
|
+
--u-base-size-14: 3.5rem; /* 56px */
|
|
599
|
+
--u-base-size-16: 4rem; /* 64px */
|
|
600
|
+
--u-base-size-18: 4.5rem; /* 72px */
|
|
601
|
+
--u-base-size-20: 5rem; /* 80px */
|
|
602
|
+
--u-base-size-24: 6rem; /* 96px */
|
|
603
|
+
--u-base-size-28: 7rem; /* 112px */
|
|
604
|
+
--u-base-size-32: 8rem; /* 128px */
|
|
605
|
+
--u-base-size-36: 9rem; /* 144px */
|
|
606
|
+
--u-base-size-40: 10rem; /* 160px */
|
|
607
|
+
--u-base-size-44: 11rem; /* 176px */
|
|
608
|
+
--u-base-size-48: 12rem; /* 192px */
|
|
609
|
+
--u-base-size-52: 13rem; /* 208px */
|
|
610
|
+
--u-base-size-56: 14rem; /* 224px */
|
|
611
|
+
--u-base-size-60: 15rem; /* 240px */
|
|
612
|
+
--u-base-size-64: 16rem; /* 256px */
|
|
613
|
+
--u-base-size-72: 18rem; /* 288px */
|
|
614
|
+
--u-base-size-80: 20rem; /* 320px */
|
|
615
|
+
--u-base-size-96: 24rem; /* 384px */
|
|
616
|
+
--u-base-size-112: 28rem; /* 448px */
|
|
617
|
+
--u-base-size-128: 32rem; /* 512px */
|
|
618
|
+
--u-base-size-144: 36rem; /* 576px */
|
|
619
|
+
--u-base-size-160: 40rem; /* 640px */
|
|
620
|
+
--u-base-size-192: 48rem; /* 768px */
|
|
621
|
+
--u-base-size-224: 56rem; /* 896px */
|
|
622
|
+
--u-base-size-256: 64rem; /* 1024px */
|
|
623
|
+
--u-base-size-px: 1px;
|
|
624
|
+
--u-base-size-0d5: 0.125rem; /* 2px */
|
|
625
|
+
--u-base-size-1d5: 0.375rem; /* 6px */
|
|
626
|
+
--u-base-size-auto: auto;
|
|
627
|
+
--u-base-size-1-4: 25%;
|
|
628
|
+
--u-base-size-1-2: 50%;
|
|
629
|
+
--u-base-size-1-3: 33.3333%;
|
|
630
|
+
--u-base-size-2-3: 66.6666%;
|
|
631
|
+
--u-base-size-3-4: 75%;
|
|
632
|
+
--u-base-size-4-5: 80%;
|
|
633
|
+
--u-base-size-full: 100%;
|
|
634
|
+
--u-base-size-5vh: 5vh;
|
|
635
|
+
--u-base-size-10vh: 10vh;
|
|
636
|
+
--u-base-size-15vh: 15vh;
|
|
637
|
+
--u-base-size-20vh: 20vh;
|
|
638
|
+
--u-base-size-25vh: 25vh;
|
|
639
|
+
--u-base-size-30vh: 30vh;
|
|
640
|
+
--u-base-size-35vh: 35vh;
|
|
641
|
+
--u-base-size-40vh: 40vh;
|
|
642
|
+
--u-base-size-45vh: 45vh;
|
|
643
|
+
--u-base-size-50vh: 50vh;
|
|
644
|
+
--u-base-size-55vh: 55vh;
|
|
645
|
+
--u-base-size-60vh: 60vh;
|
|
646
|
+
--u-base-size-65vh: 65vh;
|
|
647
|
+
--u-base-size-70vh: 70vh;
|
|
648
|
+
--u-base-size-75vh: 75vh;
|
|
649
|
+
--u-base-size-80vh: 80vh;
|
|
650
|
+
--u-base-size-85vh: 85vh;
|
|
651
|
+
--u-base-size-90vh: 90vh;
|
|
652
|
+
--u-base-size-95vh: 95vh;
|
|
653
|
+
--u-base-size-100vh: 100vh;
|
|
654
|
+
--u-base-size-5vw: 5vw;
|
|
655
|
+
--u-base-size-10vw: 10vw;
|
|
656
|
+
--u-base-size-15vw: 15vw;
|
|
657
|
+
--u-base-size-20vw: 20vw;
|
|
658
|
+
--u-base-size-25vw: 25vw;
|
|
659
|
+
--u-base-size-30vw: 30vw;
|
|
660
|
+
--u-base-size-35vw: 35vw;
|
|
661
|
+
--u-base-size-40vw: 40vw;
|
|
662
|
+
--u-base-size-45vw: 45vw;
|
|
663
|
+
--u-base-size-50vw: 50vw;
|
|
664
|
+
--u-base-size-55vw: 55vw;
|
|
665
|
+
--u-base-size-60vw: 60vw;
|
|
666
|
+
--u-base-size-65vw: 65vw;
|
|
667
|
+
--u-base-size-70vw: 70vw;
|
|
668
|
+
--u-base-size-75vw: 75vw;
|
|
669
|
+
--u-base-size-80vw: 80vw;
|
|
670
|
+
--u-base-size-85vw: 85vw;
|
|
671
|
+
--u-base-size-90vw: 90vw;
|
|
672
|
+
--u-base-size-95vw: 95vw;
|
|
673
|
+
--u-base-size-100vw: 100vw;
|
|
674
|
+
--u-base-size-def: 2.5rem;
|
|
675
|
+
--u-base-size-2px: 0.125rem; /* 2px */
|
|
676
|
+
--u-base-size-none: none; /* No top positioning */
|
|
677
|
+
--u-base-size-fit: fit-content; /* Size to fit the content */
|
|
678
|
+
--u-base-size-2xs: 0.5em;
|
|
679
|
+
--u-base-size-xs: 0.75em;
|
|
680
|
+
--u-base-size-sm: 0.875em;
|
|
681
|
+
--u-base-size-base: 1em;
|
|
682
|
+
--u-base-size-lg: 1.125em;
|
|
683
|
+
--u-base-size-xl: 1.25em;
|
|
684
|
+
--u-base-size-2xl: 1.5em;
|
|
685
|
+
--u-base-rotation-0: 0;
|
|
686
|
+
--u-base-rotation-45: 45;
|
|
687
|
+
--u-base-rotation-90: 90;
|
|
688
|
+
--u-base-rotation-135: 135;
|
|
689
|
+
--u-base-rotation-180: 180;
|
|
690
|
+
--u-base-rotation-225: 225;
|
|
691
|
+
--u-base-rotation-270: 270;
|
|
692
|
+
--u-base-rotation-315: 315;
|
|
693
|
+
--u-base-rotation-def: 0;
|
|
694
|
+
--u-base-screen-small: 0;
|
|
695
|
+
--u-base-screen-medium: 1280;
|
|
696
|
+
--u-base-screen-default: 1920;
|
|
697
|
+
--u-base-screen-large: 2560;
|
|
698
|
+
--u-base-scroll-bar-width: 0.25rem;
|
|
699
|
+
--u-base-scroll-width: 0.25rem;
|
|
700
|
+
--u-base-scroll-height: 0.25rem;
|
|
701
|
+
--u-base-scroll-thumb-min-width: 2rem;
|
|
702
|
+
--u-base-scroll-thumb-height: auto;
|
|
703
|
+
--u-base-scroll-thumb-round: 0.5rem;
|
|
704
|
+
--u-base-text-color-black: #000000;
|
|
705
|
+
--u-base-text-color-gray-700: #374151;
|
|
706
|
+
--u-base-text-color-primary: #5993d9;
|
|
707
|
+
--u-base-text-color-secondary: #e53206;
|
|
708
|
+
--u-base-text-color-success: #14a44d;
|
|
709
|
+
--u-base-text-color-info: #54b4d3;
|
|
710
|
+
--u-base-text-color-warning: #e4a11b;
|
|
711
|
+
--u-base-text-color-danger: #dc4c64;
|
|
712
|
+
--u-base-text-size-2xs: 0.5rem;
|
|
713
|
+
--u-base-text-size-xs: 0.75rem;
|
|
714
|
+
--u-base-text-size-sm: 0.875rem;
|
|
715
|
+
--u-base-text-size-base: 1rem;
|
|
716
|
+
--u-base-text-size-lg: 1.125rem;
|
|
717
|
+
--u-base-text-size-xl: 1.25rem;
|
|
718
|
+
--u-base-text-size-2xl: 1.5rem;
|
|
719
|
+
--u-base-text-line-height-def: 1.5rem;
|
|
720
|
+
--u-base-text-line-height-fit: 1;
|
|
721
|
+
--u-base-text-line-height-2xs: 0.75rem;
|
|
722
|
+
--u-base-text-line-height-xs: 1rem;
|
|
723
|
+
--u-base-text-line-height-sm: 1.25rem;
|
|
724
|
+
--u-base-text-line-height-base: 1.5rem;
|
|
725
|
+
--u-base-text-line-height-lg: 1.75rem;
|
|
726
|
+
--u-base-text-line-height-xl: 1.75rem;
|
|
727
|
+
--u-base-text-line-height-2xl: 2rem;
|
|
728
|
+
--u-base-opacity-0: 0.0;
|
|
729
|
+
--u-base-opacity-25: 0.25;
|
|
730
|
+
--u-base-opacity-50: 0.5;
|
|
731
|
+
--u-base-opacity-75: 0.75;
|
|
732
|
+
--u-base-opacity-100: 1.0;
|
|
733
|
+
--u-base-opacity-disabled: 0.25;
|
|
734
|
+
--u-base-zindex-0: 0;
|
|
735
|
+
--u-base-zindex-1: 1;
|
|
736
|
+
--u-base-zindex-2: 2;
|
|
737
|
+
--u-base-zindex-10: 10;
|
|
738
|
+
--u-base-zindex-20: 20;
|
|
739
|
+
--u-base-zindex-30: 30;
|
|
740
|
+
--u-base-zindex-40: 40;
|
|
741
|
+
--u-base-zindex-50: 50;
|
|
742
|
+
--u-base-zindex-60: 60;
|
|
743
|
+
--u-base-zindex-70: 70;
|
|
744
|
+
--u-base-zindex-80: 80;
|
|
745
|
+
--u-base-zindex-90: 90;
|
|
746
|
+
--u-base-zindex-100: 100;
|
|
747
|
+
--u-base-zindex-hidden: -1;
|
|
748
|
+
--u-base-zindex-icon: 1;
|
|
749
|
+
--u-base-zindex-menu: 20;
|
|
750
|
+
--u-base-zindex-teleport: 20;
|
|
751
|
+
--u-base-zindex-load: 30;
|
|
752
|
+
--u-base-zindex-modal: 40;
|
|
753
|
+
--u-base-zindex-tip: 50;
|
|
754
|
+
--u-base-zindex-mobile-menu: 50;
|
|
755
|
+
--u-base-zindex-notice: 100;
|
|
756
|
+
--u-base-zindex-fullpage-load: 100;
|
|
757
|
+
}
|