@aggc/ui 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/UiSkeleton.vue_vue_type_script_setup_true_lang-Lghyrtms.js +1201 -0
- package/dist/chunks/pageHeader-CcJrPX_8.js +522 -0
- package/dist/components/PageSurface.styles.d.ts +1 -0
- package/dist/components/PageSurface.vue.d.ts +13 -0
- package/dist/components/ResultPanel.styles.d.ts +64 -0
- package/dist/components/ResultPanel.vue.d.ts +16 -0
- package/dist/components/SectionCard.styles.d.ts +13 -0
- package/dist/components/SectionCard.vue.d.ts +27 -0
- package/dist/components/StatusBadge.styles.d.ts +24 -0
- package/dist/components/StatusBadge.vue.d.ts +18 -0
- package/dist/components/UiButton.styles.d.ts +54 -0
- package/dist/components/UiButton.vue.d.ts +28 -0
- package/dist/components/UiCheckbox.styles.d.ts +42 -0
- package/dist/components/UiCheckbox.vue.d.ts +37 -0
- package/dist/components/UiField.styles.d.ts +7 -0
- package/dist/components/UiField.vue.d.ts +22 -0
- package/dist/components/UiLoadingState.styles.d.ts +4 -0
- package/dist/components/UiLoadingState.vue.d.ts +10 -0
- package/dist/components/UiSegmentedControl.styles.d.ts +23 -0
- package/dist/components/UiSegmentedControl.vue.d.ts +14 -0
- package/dist/components/UiSelect.styles.d.ts +104 -0
- package/dist/components/UiSelect.vue.d.ts +35 -0
- package/dist/components/UiSkeleton.styles.d.ts +67 -0
- package/dist/components/UiSkeleton.vue.d.ts +12 -0
- package/dist/components/index.d.ts +11 -0
- package/dist/components.d.ts +1 -0
- package/dist/components.js +14 -0
- package/dist/css.d.ts +2 -0
- package/dist/css.js +1 -0
- package/dist/fonts.css +6 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +65 -0
- package/dist/styles/index.d.ts +20 -0
- package/dist/styles/layouts/cluster.d.ts +27 -0
- package/dist/styles/layouts/page.d.ts +2 -0
- package/dist/styles/layouts/split.d.ts +22 -0
- package/dist/styles/layouts/stack.d.ts +19 -0
- package/dist/styles/patterns/actionToolbar.d.ts +1 -0
- package/dist/styles/patterns/emptyState.d.ts +2 -0
- package/dist/styles/patterns/infoPanel.d.ts +2 -0
- package/dist/styles/patterns/metricGrid.d.ts +22 -0
- package/dist/styles/patterns/pageHeader.d.ts +3 -0
- package/dist/styles/patterns/resultRegion.d.ts +1 -0
- package/dist/styles/patterns/selectableListDetail.d.ts +3 -0
- package/dist/styles/primitives/feedback.d.ts +4 -0
- package/dist/styles/primitives/fields.d.ts +3 -0
- package/dist/styles/primitives/surfaces.d.ts +3 -0
- package/dist/styles/primitives/typography.d.ts +6 -0
- package/dist/styles/recipes/badge.recipe.d.ts +32 -0
- package/dist/styles/recipes/button.recipe.d.ts +51 -0
- package/dist/styles/recipes/card.recipe.d.ts +59 -0
- package/dist/styles/recipes/dropdown.recipe.d.ts +25 -0
- package/dist/styles/recipes/input.recipe.d.ts +32 -0
- package/dist/styles.d.ts +1 -0
- package/dist/styles.js +429 -0
- package/dist/tokens/colors.d.ts +360 -0
- package/dist/tokens/core-colors.d.ts +238 -0
- package/dist/tokens/desktop-colors.d.ts +132 -0
- package/dist/tokens/index.d.ts +7 -0
- package/dist/tokens/motion.d.ts +10 -0
- package/dist/tokens/radius.d.ts +5 -0
- package/dist/tokens/spacing.d.ts +8 -0
- package/dist/tokens/typography.d.ts +10 -0
- package/dist/tokens-core.d.ts +5 -0
- package/dist/tokens-core.js +69 -0
- package/dist/tokens-desktop.d.ts +1 -0
- package/dist/tokens-desktop.js +30 -0
- package/dist/tokens.d.ts +1 -0
- package/dist/tokens.js +16 -0
- package/dist/ui.css +2026 -0
- package/package.json +1 -1
package/dist/ui.css
ADDED
|
@@ -0,0 +1,2026 @@
|
|
|
1
|
+
html {
|
|
2
|
+
color-scheme: light;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
[data-theme="dark"] {
|
|
6
|
+
color-scheme: dark;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
body {
|
|
10
|
+
margin: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.aggc-spin {
|
|
14
|
+
animation: aggc-spin 800ms linear infinite;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
[data-ui-loading-pulse] {
|
|
18
|
+
animation: loadingPulse 1.2s ease-out infinite;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
[data-ui-skeleton]::before {
|
|
22
|
+
will-change: transform;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@keyframes aggc-spin {
|
|
26
|
+
from { transform: rotate(0deg); }
|
|
27
|
+
to { transform: rotate(360deg); }
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@keyframes loadingPulse {
|
|
31
|
+
0% {
|
|
32
|
+
transform: scale(0.96);
|
|
33
|
+
box-shadow: 0 0 0 0 rgba(49, 94, 255, 0.35);
|
|
34
|
+
}
|
|
35
|
+
70% {
|
|
36
|
+
transform: scale(1);
|
|
37
|
+
box-shadow: 0 0 0 10px rgba(49, 94, 255, 0);
|
|
38
|
+
}
|
|
39
|
+
100% {
|
|
40
|
+
transform: scale(0.96);
|
|
41
|
+
box-shadow: 0 0 0 0 rgba(49, 94, 255, 0);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@keyframes aggc-shimmer {
|
|
46
|
+
100% {
|
|
47
|
+
transform: translateX(100%);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@media (prefers-reduced-motion: reduce) {
|
|
52
|
+
.aggc-spin,
|
|
53
|
+
[data-ui-loading-pulse] {
|
|
54
|
+
animation: none !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
[data-ui-skeleton]::before {
|
|
58
|
+
animation: none !important;
|
|
59
|
+
transform: translateX(0);
|
|
60
|
+
opacity: 0.45;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@layer reset, base, tokens, recipes, utilities;
|
|
65
|
+
|
|
66
|
+
@layer reset{
|
|
67
|
+
html,:host {
|
|
68
|
+
--font-fallback: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
69
|
+
line-height: 1.5;
|
|
70
|
+
-webkit-text-size-adjust: 100%;
|
|
71
|
+
-webkit-font-smoothing: antialiased;
|
|
72
|
+
-moz-osx-font-smoothing: grayscale;
|
|
73
|
+
-moz-tab-size: 4;
|
|
74
|
+
tab-size: 4;
|
|
75
|
+
font-family: var(--global-font-body, var(--font-fallback));
|
|
76
|
+
-webkit-tap-highlight-color: transparent;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
*,::before,::after,::backdrop,::file-selector-button {
|
|
80
|
+
margin: 0px;
|
|
81
|
+
padding: 0px;
|
|
82
|
+
border-width: 0px;
|
|
83
|
+
border-style: solid;
|
|
84
|
+
border-color: var(--global-color-border, currentcolor);
|
|
85
|
+
box-sizing: border-box;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
hr {
|
|
89
|
+
color: inherit;
|
|
90
|
+
height: 0px;
|
|
91
|
+
border-top-width: 1px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
body {
|
|
95
|
+
line-height: inherit;
|
|
96
|
+
height: 100%;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
img {
|
|
100
|
+
border-style: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
img,svg,video,canvas,audio,iframe,embed,object {
|
|
104
|
+
display: block;
|
|
105
|
+
vertical-align: middle;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
img,video {
|
|
109
|
+
max-width: 100%;
|
|
110
|
+
height: auto;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
h1,h2,h3,h4,h5,h6 {
|
|
114
|
+
text-wrap: balance;
|
|
115
|
+
font-size: inherit;
|
|
116
|
+
font-weight: inherit;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
p,h1,h2,h3,h4,h5,h6 {
|
|
120
|
+
overflow-wrap: break-word;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
ol,ul,menu {
|
|
124
|
+
list-style: none;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
button,input:where([type='button'], [type='reset'], [type='submit']),::file-selector-button {
|
|
128
|
+
appearance: button;
|
|
129
|
+
-webkit-appearance: button;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
button,input,optgroup,select,textarea,::file-selector-button {
|
|
133
|
+
font: inherit;
|
|
134
|
+
background: var(--colors-transparent);
|
|
135
|
+
font-feature-settings: inherit;
|
|
136
|
+
font-variation-settings: inherit;
|
|
137
|
+
letter-spacing: inherit;
|
|
138
|
+
color: inherit;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
::placeholder {
|
|
142
|
+
--placeholder-fallback: rgba(0, 0, 0, 0.5);
|
|
143
|
+
opacity: 1;
|
|
144
|
+
color: var(--global-color-placeholder, var(--placeholder-fallback));
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
148
|
+
::placeholder {
|
|
149
|
+
--placeholder-fallback: color-mix(in oklab, currentcolor 50%, transparent);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
::selection {
|
|
154
|
+
background-color: var(--global-color-selection, rgba(0, 115, 255, 0.3));
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
textarea {
|
|
158
|
+
resize: vertical;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
table {
|
|
162
|
+
border-color: inherit;
|
|
163
|
+
text-indent: 0px;
|
|
164
|
+
border-collapse: collapse;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
summary {
|
|
168
|
+
display: list-item;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
small {
|
|
172
|
+
font-size: 80%;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
sub,sup {
|
|
176
|
+
font-size: 75%;
|
|
177
|
+
line-height: 0;
|
|
178
|
+
position: relative;
|
|
179
|
+
vertical-align: baseline;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
sub {
|
|
183
|
+
bottom: -0.25em;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
sup {
|
|
187
|
+
top: -0.5em;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
dialog {
|
|
191
|
+
padding: 0px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
a {
|
|
195
|
+
text-decoration: inherit;
|
|
196
|
+
color: inherit;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
abbr:where([title]) {
|
|
200
|
+
text-decoration: underline dotted;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
b,strong {
|
|
204
|
+
font-weight: bolder;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
code,kbd,samp,pre {
|
|
208
|
+
--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New';
|
|
209
|
+
font-family: var(--global-font-mono, var(--font-mono-fallback));
|
|
210
|
+
font-size: 1em;
|
|
211
|
+
font-feature-settings: normal;
|
|
212
|
+
font-variation-settings: normal;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
progress {
|
|
216
|
+
vertical-align: baseline;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
::-webkit-search-decoration,::-webkit-search-cancel-button {
|
|
220
|
+
-webkit-appearance: none;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
::-webkit-inner-spin-button,::-webkit-outer-spin-button {
|
|
224
|
+
height: auto;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
:-moz-ui-invalid {
|
|
228
|
+
box-shadow: none;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
:-moz-focusring {
|
|
232
|
+
outline: auto;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
[hidden]:where(:not([hidden='until-found'])) {
|
|
236
|
+
display: none !important;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
@layer base{
|
|
241
|
+
:root {
|
|
242
|
+
--made-with-panda: '🐼';
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
html,body,#app {
|
|
246
|
+
height: 100%;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
html {
|
|
250
|
+
color-scheme: light;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
[data-theme='dark'] {
|
|
254
|
+
color-scheme: dark;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
body {
|
|
258
|
+
margin: var(--spacing-0);
|
|
259
|
+
font-family: var(--fonts-body);
|
|
260
|
+
color: var(--colors-text-primary);
|
|
261
|
+
background-color: #f6f8fc;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
[data-theme="dark"] body {
|
|
265
|
+
background-color: #0a1018;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
input:focus-visible,textarea:focus-visible,button:focus-visible,[role='checkbox']:focus-visible,[role='option']:focus-visible {
|
|
269
|
+
outline: 2px solid var(--colors-text-accent);
|
|
270
|
+
outline-offset: 2px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
input,textarea,button {
|
|
274
|
+
outline: var(--borders-none);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
::selection {
|
|
278
|
+
background: rgba(49, 94, 255, 0.24);
|
|
279
|
+
color: inherit;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
*,::before,::after,::backdrop {
|
|
283
|
+
--blur: /*-*/ /*-*/;
|
|
284
|
+
--brightness: /*-*/ /*-*/;
|
|
285
|
+
--contrast: /*-*/ /*-*/;
|
|
286
|
+
--grayscale: /*-*/ /*-*/;
|
|
287
|
+
--hue-rotate: /*-*/ /*-*/;
|
|
288
|
+
--invert: /*-*/ /*-*/;
|
|
289
|
+
--saturate: /*-*/ /*-*/;
|
|
290
|
+
--sepia: /*-*/ /*-*/;
|
|
291
|
+
--drop-shadow: /*-*/ /*-*/;
|
|
292
|
+
--backdrop-blur: /*-*/ /*-*/;
|
|
293
|
+
--backdrop-brightness: /*-*/ /*-*/;
|
|
294
|
+
--backdrop-contrast: /*-*/ /*-*/;
|
|
295
|
+
--backdrop-grayscale: /*-*/ /*-*/;
|
|
296
|
+
--backdrop-hue-rotate: /*-*/ /*-*/;
|
|
297
|
+
--backdrop-invert: /*-*/ /*-*/;
|
|
298
|
+
--backdrop-opacity: /*-*/ /*-*/;
|
|
299
|
+
--backdrop-saturate: /*-*/ /*-*/;
|
|
300
|
+
--backdrop-sepia: /*-*/ /*-*/;
|
|
301
|
+
--gradient-from-position: /*-*/ /*-*/;
|
|
302
|
+
--gradient-to-position: /*-*/ /*-*/;
|
|
303
|
+
--gradient-via-position: /*-*/ /*-*/;
|
|
304
|
+
--scroll-snap-strictness: proximity;
|
|
305
|
+
--border-spacing-x: 0;
|
|
306
|
+
--border-spacing-y: 0;
|
|
307
|
+
--translate-x: 0;
|
|
308
|
+
--translate-y: 0;
|
|
309
|
+
--rotate: 0;
|
|
310
|
+
--rotate-x: 0;
|
|
311
|
+
--rotate-y: 0;
|
|
312
|
+
--skew-x: 0;
|
|
313
|
+
--skew-y: 0;
|
|
314
|
+
--scale-x: 1;
|
|
315
|
+
--scale-y: 1;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
@layer tokens{
|
|
320
|
+
:where(:root, :host) {
|
|
321
|
+
--aspect-ratios-square: 1 / 1;
|
|
322
|
+
--aspect-ratios-landscape: 4 / 3;
|
|
323
|
+
--aspect-ratios-portrait: 3 / 4;
|
|
324
|
+
--aspect-ratios-wide: 16 / 9;
|
|
325
|
+
--aspect-ratios-ultrawide: 18 / 5;
|
|
326
|
+
--aspect-ratios-golden: 1.618 / 1;
|
|
327
|
+
--borders-none: none;
|
|
328
|
+
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
329
|
+
--easings-linear: linear;
|
|
330
|
+
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
331
|
+
--easings-out: cubic-bezier(0, 0, 0.2, 1);
|
|
332
|
+
--easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
333
|
+
--font-weights-thin: 100;
|
|
334
|
+
--font-weights-extralight: 200;
|
|
335
|
+
--font-weights-light: 300;
|
|
336
|
+
--font-weights-normal: 400;
|
|
337
|
+
--font-weights-medium: 500;
|
|
338
|
+
--font-weights-semibold: 600;
|
|
339
|
+
--font-weights-bold: 700;
|
|
340
|
+
--font-weights-extrabold: 800;
|
|
341
|
+
--font-weights-black: 900;
|
|
342
|
+
--line-heights-none: 1;
|
|
343
|
+
--line-heights-tight: 1.25;
|
|
344
|
+
--line-heights-snug: 1.375;
|
|
345
|
+
--line-heights-normal: 1.5;
|
|
346
|
+
--line-heights-relaxed: 1.625;
|
|
347
|
+
--line-heights-loose: 2;
|
|
348
|
+
--letter-spacings-tighter: -0.05em;
|
|
349
|
+
--letter-spacings-tight: -0.025em;
|
|
350
|
+
--letter-spacings-normal: 0em;
|
|
351
|
+
--letter-spacings-wide: 0.025em;
|
|
352
|
+
--letter-spacings-wider: 0.05em;
|
|
353
|
+
--letter-spacings-widest: 0.1em;
|
|
354
|
+
--font-sizes-2xs: 0.5rem;
|
|
355
|
+
--font-sizes-xs: 0.75rem;
|
|
356
|
+
--font-sizes-sm: 0.875rem;
|
|
357
|
+
--font-sizes-md: 1rem;
|
|
358
|
+
--font-sizes-lg: 1.125rem;
|
|
359
|
+
--font-sizes-xl: 1.25rem;
|
|
360
|
+
--font-sizes-2xl: 1.5rem;
|
|
361
|
+
--font-sizes-3xl: 1.875rem;
|
|
362
|
+
--font-sizes-4xl: 2.25rem;
|
|
363
|
+
--font-sizes-5xl: 3rem;
|
|
364
|
+
--font-sizes-6xl: 3.75rem;
|
|
365
|
+
--font-sizes-7xl: 4.5rem;
|
|
366
|
+
--font-sizes-8xl: 6rem;
|
|
367
|
+
--font-sizes-9xl: 8rem;
|
|
368
|
+
--shadows-2xs: 0 1px rgb(0 0 0 / 0.05);
|
|
369
|
+
--shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
370
|
+
--shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
371
|
+
--shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
372
|
+
--shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
373
|
+
--shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
374
|
+
--shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
375
|
+
--shadows-inset-2xs: inset 0 1px rgb(0 0 0 / 0.05);
|
|
376
|
+
--shadows-inset-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
|
|
377
|
+
--shadows-inset-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
|
|
378
|
+
--colors-current: currentColor;
|
|
379
|
+
--colors-black: #000;
|
|
380
|
+
--colors-white: #fff;
|
|
381
|
+
--colors-transparent: rgb(0 0 0 / 0);
|
|
382
|
+
--colors-rose-50: #fff1f2;
|
|
383
|
+
--colors-rose-100: #ffe4e6;
|
|
384
|
+
--colors-rose-200: #fecdd3;
|
|
385
|
+
--colors-rose-300: #fda4af;
|
|
386
|
+
--colors-rose-400: #fb7185;
|
|
387
|
+
--colors-rose-500: #f43f5e;
|
|
388
|
+
--colors-rose-600: #e11d48;
|
|
389
|
+
--colors-rose-700: #be123c;
|
|
390
|
+
--colors-rose-800: #9f1239;
|
|
391
|
+
--colors-rose-900: #881337;
|
|
392
|
+
--colors-rose-950: #4c0519;
|
|
393
|
+
--colors-pink-50: #fdf2f8;
|
|
394
|
+
--colors-pink-100: #fce7f3;
|
|
395
|
+
--colors-pink-200: #fbcfe8;
|
|
396
|
+
--colors-pink-300: #f9a8d4;
|
|
397
|
+
--colors-pink-400: #f472b6;
|
|
398
|
+
--colors-pink-500: #ec4899;
|
|
399
|
+
--colors-pink-600: #db2777;
|
|
400
|
+
--colors-pink-700: #be185d;
|
|
401
|
+
--colors-pink-800: #9d174d;
|
|
402
|
+
--colors-pink-900: #831843;
|
|
403
|
+
--colors-pink-950: #500724;
|
|
404
|
+
--colors-fuchsia-50: #fdf4ff;
|
|
405
|
+
--colors-fuchsia-100: #fae8ff;
|
|
406
|
+
--colors-fuchsia-200: #f5d0fe;
|
|
407
|
+
--colors-fuchsia-300: #f0abfc;
|
|
408
|
+
--colors-fuchsia-400: #e879f9;
|
|
409
|
+
--colors-fuchsia-500: #d946ef;
|
|
410
|
+
--colors-fuchsia-600: #c026d3;
|
|
411
|
+
--colors-fuchsia-700: #a21caf;
|
|
412
|
+
--colors-fuchsia-800: #86198f;
|
|
413
|
+
--colors-fuchsia-900: #701a75;
|
|
414
|
+
--colors-fuchsia-950: #4a044e;
|
|
415
|
+
--colors-purple-50: #faf5ff;
|
|
416
|
+
--colors-purple-100: #f3e8ff;
|
|
417
|
+
--colors-purple-200: #e9d5ff;
|
|
418
|
+
--colors-purple-300: #d8b4fe;
|
|
419
|
+
--colors-purple-400: #c084fc;
|
|
420
|
+
--colors-purple-500: #a855f7;
|
|
421
|
+
--colors-purple-600: #9333ea;
|
|
422
|
+
--colors-purple-700: #7e22ce;
|
|
423
|
+
--colors-purple-800: #6b21a8;
|
|
424
|
+
--colors-purple-900: #581c87;
|
|
425
|
+
--colors-purple-950: #3b0764;
|
|
426
|
+
--colors-violet-50: #f5f3ff;
|
|
427
|
+
--colors-violet-100: #ede9fe;
|
|
428
|
+
--colors-violet-200: #ddd6fe;
|
|
429
|
+
--colors-violet-300: #c4b5fd;
|
|
430
|
+
--colors-violet-400: #a78bfa;
|
|
431
|
+
--colors-violet-500: #8b5cf6;
|
|
432
|
+
--colors-violet-600: #7c3aed;
|
|
433
|
+
--colors-violet-700: #6d28d9;
|
|
434
|
+
--colors-violet-800: #5b21b6;
|
|
435
|
+
--colors-violet-900: #4c1d95;
|
|
436
|
+
--colors-violet-950: #2e1065;
|
|
437
|
+
--colors-indigo-50: #eef2ff;
|
|
438
|
+
--colors-indigo-100: #e0e7ff;
|
|
439
|
+
--colors-indigo-200: #c7d2fe;
|
|
440
|
+
--colors-indigo-300: #a5b4fc;
|
|
441
|
+
--colors-indigo-400: #818cf8;
|
|
442
|
+
--colors-indigo-500: #6366f1;
|
|
443
|
+
--colors-indigo-600: #4f46e5;
|
|
444
|
+
--colors-indigo-700: #4338ca;
|
|
445
|
+
--colors-indigo-800: #3730a3;
|
|
446
|
+
--colors-indigo-900: #312e81;
|
|
447
|
+
--colors-indigo-950: #1e1b4b;
|
|
448
|
+
--colors-blue-50: #eff6ff;
|
|
449
|
+
--colors-blue-100: #dbeafe;
|
|
450
|
+
--colors-blue-200: #bfdbfe;
|
|
451
|
+
--colors-blue-300: #93c5fd;
|
|
452
|
+
--colors-blue-400: #60a5fa;
|
|
453
|
+
--colors-blue-500: #3b82f6;
|
|
454
|
+
--colors-blue-600: #2563eb;
|
|
455
|
+
--colors-blue-700: #1d4ed8;
|
|
456
|
+
--colors-blue-800: #1e40af;
|
|
457
|
+
--colors-blue-900: #1e3a8a;
|
|
458
|
+
--colors-blue-950: #172554;
|
|
459
|
+
--colors-sky-50: #f0f9ff;
|
|
460
|
+
--colors-sky-100: #e0f2fe;
|
|
461
|
+
--colors-sky-200: #bae6fd;
|
|
462
|
+
--colors-sky-300: #7dd3fc;
|
|
463
|
+
--colors-sky-400: #38bdf8;
|
|
464
|
+
--colors-sky-500: #0ea5e9;
|
|
465
|
+
--colors-sky-600: #0284c7;
|
|
466
|
+
--colors-sky-700: #0369a1;
|
|
467
|
+
--colors-sky-800: #075985;
|
|
468
|
+
--colors-sky-900: #0c4a6e;
|
|
469
|
+
--colors-sky-950: #082f49;
|
|
470
|
+
--colors-cyan-50: #ecfeff;
|
|
471
|
+
--colors-cyan-100: #cffafe;
|
|
472
|
+
--colors-cyan-200: #a5f3fc;
|
|
473
|
+
--colors-cyan-300: #67e8f9;
|
|
474
|
+
--colors-cyan-400: #22d3ee;
|
|
475
|
+
--colors-cyan-500: #06b6d4;
|
|
476
|
+
--colors-cyan-600: #0891b2;
|
|
477
|
+
--colors-cyan-700: #0e7490;
|
|
478
|
+
--colors-cyan-800: #155e75;
|
|
479
|
+
--colors-cyan-900: #164e63;
|
|
480
|
+
--colors-cyan-950: #083344;
|
|
481
|
+
--colors-teal-50: #f0fdfa;
|
|
482
|
+
--colors-teal-100: #ccfbf1;
|
|
483
|
+
--colors-teal-200: #99f6e4;
|
|
484
|
+
--colors-teal-300: #5eead4;
|
|
485
|
+
--colors-teal-400: #2dd4bf;
|
|
486
|
+
--colors-teal-500: #14b8a6;
|
|
487
|
+
--colors-teal-600: #0d9488;
|
|
488
|
+
--colors-teal-700: #0f766e;
|
|
489
|
+
--colors-teal-800: #115e59;
|
|
490
|
+
--colors-teal-900: #134e4a;
|
|
491
|
+
--colors-teal-950: #042f2e;
|
|
492
|
+
--colors-emerald-50: #ecfdf5;
|
|
493
|
+
--colors-emerald-100: #d1fae5;
|
|
494
|
+
--colors-emerald-200: #a7f3d0;
|
|
495
|
+
--colors-emerald-300: #6ee7b7;
|
|
496
|
+
--colors-emerald-400: #34d399;
|
|
497
|
+
--colors-emerald-500: #10b981;
|
|
498
|
+
--colors-emerald-600: #059669;
|
|
499
|
+
--colors-emerald-700: #047857;
|
|
500
|
+
--colors-emerald-800: #065f46;
|
|
501
|
+
--colors-emerald-900: #064e3b;
|
|
502
|
+
--colors-emerald-950: #022c22;
|
|
503
|
+
--colors-green-50: #f0fdf4;
|
|
504
|
+
--colors-green-100: #dcfce7;
|
|
505
|
+
--colors-green-200: #bbf7d0;
|
|
506
|
+
--colors-green-300: #86efac;
|
|
507
|
+
--colors-green-400: #4ade80;
|
|
508
|
+
--colors-green-500: #22c55e;
|
|
509
|
+
--colors-green-600: #16a34a;
|
|
510
|
+
--colors-green-700: #15803d;
|
|
511
|
+
--colors-green-800: #166534;
|
|
512
|
+
--colors-green-900: #14532d;
|
|
513
|
+
--colors-green-950: #052e16;
|
|
514
|
+
--colors-lime-50: #f7fee7;
|
|
515
|
+
--colors-lime-100: #ecfccb;
|
|
516
|
+
--colors-lime-200: #d9f99d;
|
|
517
|
+
--colors-lime-300: #bef264;
|
|
518
|
+
--colors-lime-400: #a3e635;
|
|
519
|
+
--colors-lime-500: #84cc16;
|
|
520
|
+
--colors-lime-600: #65a30d;
|
|
521
|
+
--colors-lime-700: #4d7c0f;
|
|
522
|
+
--colors-lime-800: #3f6212;
|
|
523
|
+
--colors-lime-900: #365314;
|
|
524
|
+
--colors-lime-950: #1a2e05;
|
|
525
|
+
--colors-yellow-50: #fefce8;
|
|
526
|
+
--colors-yellow-100: #fef9c3;
|
|
527
|
+
--colors-yellow-200: #fef08a;
|
|
528
|
+
--colors-yellow-300: #fde047;
|
|
529
|
+
--colors-yellow-400: #facc15;
|
|
530
|
+
--colors-yellow-500: #eab308;
|
|
531
|
+
--colors-yellow-600: #ca8a04;
|
|
532
|
+
--colors-yellow-700: #a16207;
|
|
533
|
+
--colors-yellow-800: #854d0e;
|
|
534
|
+
--colors-yellow-900: #713f12;
|
|
535
|
+
--colors-yellow-950: #422006;
|
|
536
|
+
--colors-amber-50: #fffbeb;
|
|
537
|
+
--colors-amber-100: #fef3c7;
|
|
538
|
+
--colors-amber-200: #fde68a;
|
|
539
|
+
--colors-amber-300: #fcd34d;
|
|
540
|
+
--colors-amber-400: #fbbf24;
|
|
541
|
+
--colors-amber-500: #f59e0b;
|
|
542
|
+
--colors-amber-600: #d97706;
|
|
543
|
+
--colors-amber-700: #b45309;
|
|
544
|
+
--colors-amber-800: #92400e;
|
|
545
|
+
--colors-amber-900: #78350f;
|
|
546
|
+
--colors-amber-950: #451a03;
|
|
547
|
+
--colors-orange-50: #fff7ed;
|
|
548
|
+
--colors-orange-100: #ffedd5;
|
|
549
|
+
--colors-orange-200: #fed7aa;
|
|
550
|
+
--colors-orange-300: #fdba74;
|
|
551
|
+
--colors-orange-400: #fb923c;
|
|
552
|
+
--colors-orange-500: #f97316;
|
|
553
|
+
--colors-orange-600: #ea580c;
|
|
554
|
+
--colors-orange-700: #c2410c;
|
|
555
|
+
--colors-orange-800: #9a3412;
|
|
556
|
+
--colors-orange-900: #7c2d12;
|
|
557
|
+
--colors-orange-950: #431407;
|
|
558
|
+
--colors-red-50: #fef2f2;
|
|
559
|
+
--colors-red-100: #fee2e2;
|
|
560
|
+
--colors-red-200: #fecaca;
|
|
561
|
+
--colors-red-300: #fca5a5;
|
|
562
|
+
--colors-red-400: #f87171;
|
|
563
|
+
--colors-red-500: #ef4444;
|
|
564
|
+
--colors-red-600: #dc2626;
|
|
565
|
+
--colors-red-700: #b91c1c;
|
|
566
|
+
--colors-red-800: #991b1b;
|
|
567
|
+
--colors-red-900: #7f1d1d;
|
|
568
|
+
--colors-red-950: #450a0a;
|
|
569
|
+
--colors-neutral-50: #fafafa;
|
|
570
|
+
--colors-neutral-100: #f5f5f5;
|
|
571
|
+
--colors-neutral-200: #e5e5e5;
|
|
572
|
+
--colors-neutral-300: #d4d4d4;
|
|
573
|
+
--colors-neutral-400: #a3a3a3;
|
|
574
|
+
--colors-neutral-500: #737373;
|
|
575
|
+
--colors-neutral-600: #525252;
|
|
576
|
+
--colors-neutral-700: #404040;
|
|
577
|
+
--colors-neutral-800: #262626;
|
|
578
|
+
--colors-neutral-900: #171717;
|
|
579
|
+
--colors-neutral-950: #0a0a0a;
|
|
580
|
+
--colors-stone-50: #fafaf9;
|
|
581
|
+
--colors-stone-100: #f5f5f4;
|
|
582
|
+
--colors-stone-200: #e7e5e4;
|
|
583
|
+
--colors-stone-300: #d6d3d1;
|
|
584
|
+
--colors-stone-400: #a8a29e;
|
|
585
|
+
--colors-stone-500: #78716c;
|
|
586
|
+
--colors-stone-600: #57534e;
|
|
587
|
+
--colors-stone-700: #44403c;
|
|
588
|
+
--colors-stone-800: #292524;
|
|
589
|
+
--colors-stone-900: #1c1917;
|
|
590
|
+
--colors-stone-950: #0c0a09;
|
|
591
|
+
--colors-zinc-50: #fafafa;
|
|
592
|
+
--colors-zinc-100: #f4f4f5;
|
|
593
|
+
--colors-zinc-200: #e4e4e7;
|
|
594
|
+
--colors-zinc-300: #d4d4d8;
|
|
595
|
+
--colors-zinc-400: #a1a1aa;
|
|
596
|
+
--colors-zinc-500: #71717a;
|
|
597
|
+
--colors-zinc-600: #52525b;
|
|
598
|
+
--colors-zinc-700: #3f3f46;
|
|
599
|
+
--colors-zinc-800: #27272a;
|
|
600
|
+
--colors-zinc-900: #18181b;
|
|
601
|
+
--colors-zinc-950: #09090b;
|
|
602
|
+
--colors-gray-50: #f9fafb;
|
|
603
|
+
--colors-gray-100: #f3f4f6;
|
|
604
|
+
--colors-gray-200: #e5e7eb;
|
|
605
|
+
--colors-gray-300: #d1d5db;
|
|
606
|
+
--colors-gray-400: #9ca3af;
|
|
607
|
+
--colors-gray-500: #6b7280;
|
|
608
|
+
--colors-gray-600: #4b5563;
|
|
609
|
+
--colors-gray-700: #374151;
|
|
610
|
+
--colors-gray-800: #1f2937;
|
|
611
|
+
--colors-gray-900: #111827;
|
|
612
|
+
--colors-gray-950: #030712;
|
|
613
|
+
--colors-slate-50: #f8fafc;
|
|
614
|
+
--colors-slate-100: #f1f5f9;
|
|
615
|
+
--colors-slate-200: #e2e8f0;
|
|
616
|
+
--colors-slate-300: #cbd5e1;
|
|
617
|
+
--colors-slate-400: #94a3b8;
|
|
618
|
+
--colors-slate-500: #64748b;
|
|
619
|
+
--colors-slate-600: #475569;
|
|
620
|
+
--colors-slate-700: #334155;
|
|
621
|
+
--colors-slate-800: #1e293b;
|
|
622
|
+
--colors-slate-900: #0f172a;
|
|
623
|
+
--colors-slate-950: #020617;
|
|
624
|
+
--blurs-xs: 4px;
|
|
625
|
+
--blurs-sm: 8px;
|
|
626
|
+
--blurs-md: 12px;
|
|
627
|
+
--blurs-lg: 16px;
|
|
628
|
+
--blurs-xl: 24px;
|
|
629
|
+
--blurs-2xl: 40px;
|
|
630
|
+
--blurs-3xl: 64px;
|
|
631
|
+
--sizes-0: 0rem;
|
|
632
|
+
--sizes-1: 0.25rem;
|
|
633
|
+
--sizes-2: 0.5rem;
|
|
634
|
+
--sizes-3: 0.75rem;
|
|
635
|
+
--sizes-4: 1rem;
|
|
636
|
+
--sizes-5: 1.25rem;
|
|
637
|
+
--sizes-6: 1.5rem;
|
|
638
|
+
--sizes-7: 1.75rem;
|
|
639
|
+
--sizes-8: 2rem;
|
|
640
|
+
--sizes-9: 2.25rem;
|
|
641
|
+
--sizes-10: 2.5rem;
|
|
642
|
+
--sizes-11: 2.75rem;
|
|
643
|
+
--sizes-12: 3rem;
|
|
644
|
+
--sizes-14: 3.5rem;
|
|
645
|
+
--sizes-16: 4rem;
|
|
646
|
+
--sizes-20: 5rem;
|
|
647
|
+
--sizes-24: 6rem;
|
|
648
|
+
--sizes-28: 7rem;
|
|
649
|
+
--sizes-32: 8rem;
|
|
650
|
+
--sizes-36: 9rem;
|
|
651
|
+
--sizes-40: 10rem;
|
|
652
|
+
--sizes-44: 11rem;
|
|
653
|
+
--sizes-48: 12rem;
|
|
654
|
+
--sizes-52: 13rem;
|
|
655
|
+
--sizes-56: 14rem;
|
|
656
|
+
--sizes-60: 15rem;
|
|
657
|
+
--sizes-64: 16rem;
|
|
658
|
+
--sizes-72: 18rem;
|
|
659
|
+
--sizes-80: 20rem;
|
|
660
|
+
--sizes-96: 24rem;
|
|
661
|
+
--sizes-0\.5: 0.125rem;
|
|
662
|
+
--sizes-1\.5: 0.375rem;
|
|
663
|
+
--sizes-2\.5: 0.625rem;
|
|
664
|
+
--sizes-3\.5: 0.875rem;
|
|
665
|
+
--sizes-4\.5: 1.125rem;
|
|
666
|
+
--sizes-5\.5: 1.375rem;
|
|
667
|
+
--sizes-xs: 20rem;
|
|
668
|
+
--sizes-sm: 24rem;
|
|
669
|
+
--sizes-md: 28rem;
|
|
670
|
+
--sizes-lg: 32rem;
|
|
671
|
+
--sizes-xl: 36rem;
|
|
672
|
+
--sizes-2xl: 42rem;
|
|
673
|
+
--sizes-3xl: 48rem;
|
|
674
|
+
--sizes-4xl: 56rem;
|
|
675
|
+
--sizes-5xl: 64rem;
|
|
676
|
+
--sizes-6xl: 72rem;
|
|
677
|
+
--sizes-7xl: 80rem;
|
|
678
|
+
--sizes-8xl: 90rem;
|
|
679
|
+
--sizes-prose: 65ch;
|
|
680
|
+
--sizes-full: 100%;
|
|
681
|
+
--sizes-min: min-content;
|
|
682
|
+
--sizes-max: max-content;
|
|
683
|
+
--sizes-fit: fit-content;
|
|
684
|
+
--sizes-breakpoint-sm: 640px;
|
|
685
|
+
--sizes-breakpoint-md: 768px;
|
|
686
|
+
--sizes-breakpoint-lg: 1024px;
|
|
687
|
+
--sizes-breakpoint-xl: 1280px;
|
|
688
|
+
--sizes-breakpoint-2xl: 1536px;
|
|
689
|
+
--animations-spin: spin 1s linear infinite;
|
|
690
|
+
--animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
691
|
+
--animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
692
|
+
--animations-bounce: bounce 1s infinite;
|
|
693
|
+
--fonts-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
694
|
+
--fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
695
|
+
--fonts-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
696
|
+
--fonts-body: "IBM Plex Sans", "Segoe UI", sans-serif;
|
|
697
|
+
--fonts-heading: "Space Grotesk", "IBM Plex Sans", sans-serif;
|
|
698
|
+
--spacing-0: 0rem;
|
|
699
|
+
--spacing-1: 0.25rem;
|
|
700
|
+
--spacing-2: 0.5rem;
|
|
701
|
+
--spacing-3: 0.75rem;
|
|
702
|
+
--spacing-4: 1rem;
|
|
703
|
+
--spacing-5: 1.25rem;
|
|
704
|
+
--spacing-6: 1.5rem;
|
|
705
|
+
--spacing-7: 1.75rem;
|
|
706
|
+
--spacing-8: 2rem;
|
|
707
|
+
--spacing-9: 2.25rem;
|
|
708
|
+
--spacing-10: 2.5rem;
|
|
709
|
+
--spacing-11: 2.75rem;
|
|
710
|
+
--spacing-12: 3rem;
|
|
711
|
+
--spacing-14: 3.5rem;
|
|
712
|
+
--spacing-16: 4rem;
|
|
713
|
+
--spacing-18: 4.5rem;
|
|
714
|
+
--spacing-20: 5rem;
|
|
715
|
+
--spacing-22: 5.5rem;
|
|
716
|
+
--spacing-24: 6rem;
|
|
717
|
+
--spacing-28: 7rem;
|
|
718
|
+
--spacing-32: 8rem;
|
|
719
|
+
--spacing-36: 9rem;
|
|
720
|
+
--spacing-40: 10rem;
|
|
721
|
+
--spacing-44: 11rem;
|
|
722
|
+
--spacing-48: 12rem;
|
|
723
|
+
--spacing-52: 13rem;
|
|
724
|
+
--spacing-56: 14rem;
|
|
725
|
+
--spacing-60: 15rem;
|
|
726
|
+
--spacing-64: 16rem;
|
|
727
|
+
--spacing-72: 18rem;
|
|
728
|
+
--spacing-80: 20rem;
|
|
729
|
+
--spacing-96: 24rem;
|
|
730
|
+
--spacing-0\.5: 0.125rem;
|
|
731
|
+
--spacing-1\.5: 0.375rem;
|
|
732
|
+
--spacing-2\.5: 0.625rem;
|
|
733
|
+
--spacing-3\.5: 0.875rem;
|
|
734
|
+
--spacing-4\.5: 1.125rem;
|
|
735
|
+
--spacing-5\.5: 1.375rem;
|
|
736
|
+
--radii-xs: 0.125rem;
|
|
737
|
+
--radii-sm: 0.25rem;
|
|
738
|
+
--radii-md: 0.375rem;
|
|
739
|
+
--radii-lg: 0.5rem;
|
|
740
|
+
--radii-xl: 0.75rem;
|
|
741
|
+
--radii-2xl: 1rem;
|
|
742
|
+
--radii-3xl: 1.5rem;
|
|
743
|
+
--radii-full: 9999px;
|
|
744
|
+
--radii-4xl: 2rem;
|
|
745
|
+
--durations-fastest: 50ms;
|
|
746
|
+
--durations-faster: 100ms;
|
|
747
|
+
--durations-fast: 150ms;
|
|
748
|
+
--durations-normal: 200ms;
|
|
749
|
+
--durations-slow: 300ms;
|
|
750
|
+
--durations-slower: 400ms;
|
|
751
|
+
--durations-slowest: 500ms;
|
|
752
|
+
--durations-moderate: 160ms;
|
|
753
|
+
--durations-emphasized: 240ms;
|
|
754
|
+
--breakpoints-sm: 640px;
|
|
755
|
+
--breakpoints-md: 768px;
|
|
756
|
+
--breakpoints-lg: 1024px;
|
|
757
|
+
--breakpoints-xl: 1280px;
|
|
758
|
+
--breakpoints-2xl: 1536px;
|
|
759
|
+
--colors-text-primary: #0f1728;
|
|
760
|
+
--colors-text-secondary: #405069;
|
|
761
|
+
--colors-text-muted: #61708a;
|
|
762
|
+
--colors-text-accent: #315eff;
|
|
763
|
+
--colors-text-inverse: #ffffff;
|
|
764
|
+
--colors-text-error: #d92d20;
|
|
765
|
+
--colors-bg-canvas: rgba(244, 248, 255, 0.8);
|
|
766
|
+
--colors-bg-card: rgba(255, 255, 255, 0.62);
|
|
767
|
+
--colors-bg-card-strong: rgba(255, 255, 255, 0.78);
|
|
768
|
+
--colors-bg-card-alt: rgba(248, 251, 255, 0.56);
|
|
769
|
+
--colors-bg-sidebar: rgba(251, 253, 255, 0.68);
|
|
770
|
+
--colors-bg-overlay: rgba(255, 255, 255, 0.42);
|
|
771
|
+
--colors-bg-input: rgba(255, 255, 255, 0.72);
|
|
772
|
+
--colors-bg-selected: rgba(60, 111, 255, 0.12);
|
|
773
|
+
--colors-bg-hover: rgba(49, 71, 115, 0.08);
|
|
774
|
+
--colors-bg-button-outline: rgba(255, 255, 255, 0.48);
|
|
775
|
+
--colors-bg-header: rgba(250, 252, 255, 0.58);
|
|
776
|
+
--colors-bg-menu: rgba(255, 255, 255, 0.9);
|
|
777
|
+
--colors-bg-accent-soft: rgba(49, 94, 255, 0.1);
|
|
778
|
+
--colors-bg-accent-strong: rgba(49, 94, 255, 0.86);
|
|
779
|
+
--colors-border-soft: rgba(148, 163, 184, 0.14);
|
|
780
|
+
--colors-border-subtle: rgba(125, 146, 182, 0.2);
|
|
781
|
+
--colors-border-default: rgba(109, 130, 164, 0.28);
|
|
782
|
+
--colors-border-strong: rgba(80, 98, 127, 0.42);
|
|
783
|
+
--colors-border-accent: rgba(82, 121, 255, 0.5);
|
|
784
|
+
--colors-badge-success-bg: rgba(19, 163, 74, 0.12);
|
|
785
|
+
--colors-badge-success-text: #136c45;
|
|
786
|
+
--colors-badge-success-border: rgba(21, 128, 61, 0.22);
|
|
787
|
+
--colors-badge-warning-bg: rgba(245, 158, 11, 0.12);
|
|
788
|
+
--colors-badge-warning-text: #9a5b05;
|
|
789
|
+
--colors-badge-warning-border: rgba(217, 119, 6, 0.22);
|
|
790
|
+
--colors-badge-info-bg: rgba(59, 130, 246, 0.11);
|
|
791
|
+
--colors-badge-info-text: #2459d8;
|
|
792
|
+
--colors-badge-info-border: rgba(37, 99, 235, 0.2);
|
|
793
|
+
--colors-badge-neutral-bg: rgba(99, 115, 148, 0.08);
|
|
794
|
+
--colors-badge-neutral-text: #4b5d7a;
|
|
795
|
+
--colors-badge-neutral-border: rgba(109, 130, 164, 0.18);
|
|
796
|
+
--colors-result-ok-bg: rgba(48, 113, 255, 0.1);
|
|
797
|
+
--colors-result-ok-border: rgba(49, 94, 255, 0.18);
|
|
798
|
+
--colors-result-fail-bg: rgba(217, 45, 32, 0.08);
|
|
799
|
+
--colors-result-fail-border: rgba(217, 45, 32, 0.16);
|
|
800
|
+
--colors-result-detail-text: #11203b;
|
|
801
|
+
--colors-result-body-text: #42526b;
|
|
802
|
+
--colors-result-warning-label: #9a5b05;
|
|
803
|
+
--colors-result-warning-body: #865210;
|
|
804
|
+
--colors-result-error-label: #b42318;
|
|
805
|
+
--colors-result-error-body: #8f2118;
|
|
806
|
+
--colors-nav-inactive-text: #42526b;
|
|
807
|
+
--colors-sync-generated-bg: rgba(48, 113, 255, 0.08);
|
|
808
|
+
--colors-sync-generated-border: rgba(49, 94, 255, 0.16);
|
|
809
|
+
--colors-sync-generated-label: #2459d8;
|
|
810
|
+
--colors-sync-generated-body: #264170;
|
|
811
|
+
--colors-sync-skipped-bg: rgba(82, 102, 133, 0.06);
|
|
812
|
+
--colors-sync-skipped-border: rgba(109, 130, 164, 0.16);
|
|
813
|
+
--colors-sync-skipped-label: #42526b;
|
|
814
|
+
--colors-sync-skipped-body: #566883;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
[data-theme="dark"] {
|
|
818
|
+
--colors-text-primary: #f7f9fd;
|
|
819
|
+
--colors-text-secondary: #c8d1e0;
|
|
820
|
+
--colors-text-muted: #96a3b8;
|
|
821
|
+
--colors-text-accent: #8ab4ff;
|
|
822
|
+
--colors-text-inverse: #08111f;
|
|
823
|
+
--colors-text-error: #ff8e7f;
|
|
824
|
+
--colors-bg-canvas: rgba(0, 0, 0, 0.94);
|
|
825
|
+
--colors-bg-card: rgba(0, 0, 0, 0.82);
|
|
826
|
+
--colors-bg-card-strong: rgba(7, 10, 15, 0.98);
|
|
827
|
+
--colors-bg-card-alt: rgba(10, 13, 19, 0.94);
|
|
828
|
+
--colors-bg-sidebar: rgba(0, 0, 0, 0.9);
|
|
829
|
+
--colors-bg-overlay: rgba(255, 255, 255, 0.02);
|
|
830
|
+
--colors-bg-input: rgba(12, 16, 23, 0.98);
|
|
831
|
+
--colors-bg-selected: rgba(138, 180, 255, 0.16);
|
|
832
|
+
--colors-bg-hover: rgba(255, 255, 255, 0.06);
|
|
833
|
+
--colors-bg-button-outline: rgba(14, 18, 26, 0.98);
|
|
834
|
+
--colors-bg-header: rgba(0, 0, 0, 0.84);
|
|
835
|
+
--colors-bg-menu: rgba(9, 12, 18, 0.99);
|
|
836
|
+
--colors-bg-accent-soft: rgba(138, 180, 255, 0.18);
|
|
837
|
+
--colors-bg-accent-strong: rgba(122, 170, 255, 0.82);
|
|
838
|
+
--colors-border-soft: rgba(255, 255, 255, 0.035);
|
|
839
|
+
--colors-border-subtle: rgba(255, 255, 255, 0.09);
|
|
840
|
+
--colors-border-default: rgba(255, 255, 255, 0.14);
|
|
841
|
+
--colors-border-strong: rgba(255, 255, 255, 0.22);
|
|
842
|
+
--colors-border-accent: rgba(125, 171, 255, 0.44);
|
|
843
|
+
--colors-badge-success-bg: rgba(19, 80, 58, 0.7);
|
|
844
|
+
--colors-badge-success-text: #7ff2c7;
|
|
845
|
+
--colors-badge-success-border: rgba(127, 242, 199, 0.32);
|
|
846
|
+
--colors-badge-warning-bg: rgba(89, 58, 8, 0.76);
|
|
847
|
+
--colors-badge-warning-text: #ffd36b;
|
|
848
|
+
--colors-badge-warning-border: rgba(255, 211, 107, 0.32);
|
|
849
|
+
--colors-badge-info-bg: rgba(24, 48, 92, 0.82);
|
|
850
|
+
--colors-badge-info-text: #9ac1ff;
|
|
851
|
+
--colors-badge-info-border: rgba(154, 193, 255, 0.3);
|
|
852
|
+
--colors-badge-neutral-bg: rgba(21, 26, 35, 0.92);
|
|
853
|
+
--colors-badge-neutral-text: #d0d7e4;
|
|
854
|
+
--colors-badge-neutral-border: rgba(183, 195, 215, 0.22);
|
|
855
|
+
--colors-result-ok-bg: rgba(17, 43, 86, 0.88);
|
|
856
|
+
--colors-result-ok-border: rgba(138, 180, 255, 0.24);
|
|
857
|
+
--colors-result-fail-bg: rgba(77, 17, 11, 0.86);
|
|
858
|
+
--colors-result-fail-border: rgba(255, 142, 127, 0.24);
|
|
859
|
+
--colors-result-detail-text: #edf3ff;
|
|
860
|
+
--colors-result-body-text: #cad2e0;
|
|
861
|
+
--colors-result-warning-label: #ffd36b;
|
|
862
|
+
--colors-result-warning-body: #f8dd95;
|
|
863
|
+
--colors-result-error-label: #ff9d91;
|
|
864
|
+
--colors-result-error-body: #ffc2ba;
|
|
865
|
+
--colors-nav-inactive-text: #b7c3d7;
|
|
866
|
+
--colors-sync-generated-bg: rgba(15, 40, 84, 0.88);
|
|
867
|
+
--colors-sync-generated-border: rgba(138, 180, 255, 0.24);
|
|
868
|
+
--colors-sync-generated-label: #9ac1ff;
|
|
869
|
+
--colors-sync-generated-body: #d7e5ff;
|
|
870
|
+
--colors-sync-skipped-bg: rgba(14, 18, 24, 0.94);
|
|
871
|
+
--colors-sync-skipped-border: rgba(183, 195, 215, 0.18);
|
|
872
|
+
--colors-sync-skipped-label: #b7c3d7;
|
|
873
|
+
--colors-sync-skipped-body: #c3cedf
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
@keyframes spin {
|
|
877
|
+
to {
|
|
878
|
+
transform: rotate(360deg);
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
@keyframes ping {
|
|
883
|
+
75%,100% {
|
|
884
|
+
transform: scale(2);
|
|
885
|
+
opacity: 0;
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
@keyframes pulse {
|
|
890
|
+
50% {
|
|
891
|
+
opacity: 0.5;
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
@keyframes bounce {
|
|
896
|
+
0%,100% {
|
|
897
|
+
transform: translateY(-25%);
|
|
898
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
50% {
|
|
902
|
+
transform: none;
|
|
903
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
@layer utilities{
|
|
909
|
+
|
|
910
|
+
.p_5 {
|
|
911
|
+
padding: var(--spacing-5);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.bg_result\.okBg {
|
|
915
|
+
background: var(--colors-result-ok-bg);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.bg_result\.failBg {
|
|
919
|
+
background: var(--colors-result-fail-bg);
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.bg_bg\.accentSoft {
|
|
923
|
+
background: var(--colors-bg-accent-soft);
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.bg_badge\.warningBg {
|
|
927
|
+
background: var(--colors-badge-warning-bg);
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.p_6 {
|
|
931
|
+
padding: var(--spacing-6);
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.bg_badge\.successBg {
|
|
935
|
+
background: var(--colors-badge-success-bg);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.bg_badge\.infoBg {
|
|
939
|
+
background: var(--colors-badge-info-bg);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.bg_badge\.neutralBg {
|
|
943
|
+
background: var(--colors-badge-neutral-bg);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
.inset_0 {
|
|
947
|
+
inset: var(--spacing-0);
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.bg_bg\.selected {
|
|
951
|
+
background: var(--colors-bg-selected);
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.bg_bg\.input {
|
|
955
|
+
background: var(--colors-bg-input);
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.bg_bg\.accentStrong {
|
|
959
|
+
background: var(--colors-bg-accent-strong);
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.bg_bg\.buttonOutline {
|
|
963
|
+
background: var(--colors-bg-button-outline);
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.bg_text\.accent {
|
|
967
|
+
background: var(--colors-text-accent);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.anim_loadingPulse_1\.2s_ease-out_infinite {
|
|
971
|
+
animation: loadingPulse 1.2s ease-out infinite;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.p_1 {
|
|
975
|
+
padding: var(--spacing-1);
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.bg_transparent {
|
|
979
|
+
background: var(--colors-transparent);
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
.bg_bg\.cardStrong {
|
|
983
|
+
background: var(--colors-bg-card-strong);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.bg_rgba\(127\,_146\,_184\,_0\.14\) {
|
|
987
|
+
background: rgba(127, 146, 184, 0.14);
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.bg_rgba\(117\,_138\,_178\,_0\.16\) {
|
|
991
|
+
background: rgba(117, 138, 178, 0.16);
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.p_4 {
|
|
995
|
+
padding: var(--spacing-4);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.bg_bg\.card {
|
|
999
|
+
background: var(--colors-bg-card);
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.bg_bg\.canvas {
|
|
1003
|
+
background: var(--colors-bg-canvas);
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.bg_bg\.soft {
|
|
1007
|
+
background: bg.soft;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.bd_0 {
|
|
1011
|
+
border: 0;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.bg_bg\.cardAlt {
|
|
1015
|
+
background: var(--colors-bg-card-alt);
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.bg_linear-gradient\(135deg\,_rgba\(31\,67\,182\,0\.96\)_0\%\,_rgba\(49\,94\,255\,0\.92\)_100\%\) {
|
|
1019
|
+
background: linear-gradient(135deg, rgba(31,67,182,0.96) 0%, rgba(49,94,255,0.92) 100%);
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
.p_3 {
|
|
1023
|
+
padding: var(--spacing-3);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.bg_bg\.menu {
|
|
1027
|
+
background: var(--colors-bg-menu);
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
.p_2 {
|
|
1031
|
+
padding: var(--spacing-2);
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.p_1\.5 {
|
|
1035
|
+
padding: var(--spacing-1\.5);
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.bd-w_1px {
|
|
1039
|
+
border-width: 1px;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.bd-c_result\.okBorder {
|
|
1043
|
+
border-color: var(--colors-result-ok-border);
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.bd-c_result\.failBorder {
|
|
1047
|
+
border-color: var(--colors-result-fail-border);
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.bdr_full {
|
|
1051
|
+
border-radius: var(--radii-full);
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.gap_1\.5 {
|
|
1055
|
+
gap: var(--spacing-1\.5);
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.gap_4 {
|
|
1059
|
+
gap: var(--spacing-4);
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.gap_3 {
|
|
1063
|
+
gap: var(--spacing-3);
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.ovs-b_contain {
|
|
1067
|
+
overscroll-behavior: contain;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.px_3 {
|
|
1071
|
+
padding-inline: var(--spacing-3);
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.py_1\.5 {
|
|
1075
|
+
padding-block: var(--spacing-1\.5);
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.bd-c_badge\.successBorder {
|
|
1079
|
+
border-color: var(--colors-badge-success-border);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.bd-c_badge\.warningBorder {
|
|
1083
|
+
border-color: var(--colors-badge-warning-border);
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
.bd-c_badge\.infoBorder {
|
|
1087
|
+
border-color: var(--colors-badge-info-border);
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.bd-c_badge\.neutralBorder {
|
|
1091
|
+
border-color: var(--colors-badge-neutral-border);
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.gap_2 {
|
|
1095
|
+
gap: var(--spacing-2);
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
.px_4 {
|
|
1099
|
+
padding-inline: var(--spacing-4);
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.py_3 {
|
|
1103
|
+
padding-block: var(--spacing-3);
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
.bdr_2xl {
|
|
1107
|
+
border-radius: var(--radii-2xl);
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.py_3\.5 {
|
|
1111
|
+
padding-block: var(--spacing-3\.5);
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.trs_all_160ms_ease {
|
|
1115
|
+
transition: all 160ms ease;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.bd-c_border\.accent {
|
|
1119
|
+
border-color: var(--colors-border-accent);
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
.bd-c_border\.default {
|
|
1123
|
+
border-color: var(--colors-border-default);
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.bdr_md {
|
|
1127
|
+
border-radius: var(--radii-md);
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
.gap_1 {
|
|
1131
|
+
gap: var(--spacing-1);
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.gap_0\.5 {
|
|
1135
|
+
gap: var(--spacing-0\.5);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.px_3\.5 {
|
|
1139
|
+
padding-inline: var(--spacing-3\.5);
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.py_2 {
|
|
1143
|
+
padding-block: var(--spacing-2);
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.bd-c_transparent {
|
|
1147
|
+
border-color: var(--colors-transparent);
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.ov_hidden {
|
|
1151
|
+
overflow: hidden;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
.bdr_lg {
|
|
1155
|
+
border-radius: var(--radii-lg);
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.py_2\.5 {
|
|
1159
|
+
padding-block: var(--spacing-2\.5);
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.bdr_xl {
|
|
1163
|
+
border-radius: var(--radii-xl);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
.trs_transform_160ms_ease {
|
|
1167
|
+
transition: transform 160ms ease;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.trs_all_140ms_ease {
|
|
1171
|
+
transition: all 140ms ease;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
.trs_opacity_140ms_ease {
|
|
1175
|
+
transition: opacity 140ms ease;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
.flex_1 {
|
|
1179
|
+
flex: 1 1 0%;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.bdr_999px {
|
|
1183
|
+
border-radius: 999px;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.gap_5 {
|
|
1187
|
+
gap: var(--spacing-5);
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
.bd-c_border\.subtle {
|
|
1191
|
+
border-color: var(--colors-border-subtle);
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
.bdr_3xl {
|
|
1195
|
+
border-radius: var(--radii-3xl);
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
.ring_2px_solid_var\(--colors-text-accent\) {
|
|
1199
|
+
outline: 2px solid var(--colors-text-accent);
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
.trs_border-color_160ms_ease\,_background_160ms_ease\,_transform_160ms_ease {
|
|
1203
|
+
transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.trs_border-color_160ms_ease\,_background_160ms_ease {
|
|
1207
|
+
transition: border-color 160ms ease, background 160ms ease;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.py_4 {
|
|
1211
|
+
padding-block: var(--spacing-4);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.bd-c_border\.soft {
|
|
1215
|
+
border-color: var(--colors-border-soft);
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.px_2\.5 {
|
|
1219
|
+
padding-inline: var(--spacing-2\.5);
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.bd-c_rgba\(255\,255\,255\,0\.18\) {
|
|
1223
|
+
border-color: rgba(255,255,255,0.18);
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.d_flex {
|
|
1227
|
+
display: flex;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.ai_center {
|
|
1231
|
+
align-items: center;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.jc_center {
|
|
1235
|
+
justify-content: center;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.c_text\.accent {
|
|
1239
|
+
color: var(--colors-text-accent);
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.c_badge\.warningText {
|
|
1243
|
+
color: var(--colors-badge-warning-text);
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.fs_sm {
|
|
1247
|
+
font-size: var(--font-sizes-sm);
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.fw_700 {
|
|
1251
|
+
font-weight: 700;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.c_result\.detailText {
|
|
1255
|
+
color: var(--colors-result-detail-text);
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.c_result\.warningLabel {
|
|
1259
|
+
color: var(--colors-result-warning-label);
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.c_result\.errorLabel {
|
|
1263
|
+
color: var(--colors-result-error-label);
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.d_grid {
|
|
1267
|
+
display: grid;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.c_result\.bodyText {
|
|
1271
|
+
color: var(--colors-result-body-text);
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.c_result\.warningBody {
|
|
1275
|
+
color: var(--colors-result-warning-body);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.c_result\.errorBody {
|
|
1279
|
+
color: var(--colors-result-error-body);
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.jc_space-between {
|
|
1283
|
+
justify-content: space-between;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.ai_flex-start {
|
|
1287
|
+
align-items: flex-start;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.flex-d_column {
|
|
1291
|
+
flex-direction: column;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.fs_lg {
|
|
1295
|
+
font-size: var(--font-sizes-lg);
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
.c_text\.primary {
|
|
1299
|
+
color: var(--colors-text-primary);
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
.grid-tr_auto_minmax\(0\,_1fr\) {
|
|
1303
|
+
grid-template-rows: auto minmax(0, 1fr);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.pos_relative {
|
|
1307
|
+
position: relative;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.z_1 {
|
|
1311
|
+
z-index: 1;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.c_text\.secondary {
|
|
1315
|
+
color: var(--colors-text-secondary);
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.lh_1\.65 {
|
|
1319
|
+
line-height: 1.65;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.d_inline-flex {
|
|
1323
|
+
display: inline-flex;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.fs_xs {
|
|
1327
|
+
font-size: var(--font-sizes-xs);
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.tt_uppercase {
|
|
1331
|
+
text-transform: uppercase;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.ls_0\.1em {
|
|
1335
|
+
letter-spacing: 0.1em;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.bkdp_blur\(16px\)_saturate\(140\%\) {
|
|
1339
|
+
backdrop-filter: blur(16px) saturate(140%);
|
|
1340
|
+
-webkit-backdrop-filter: blur(16px) saturate(140%);
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.16\) {
|
|
1344
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.c_badge\.successText {
|
|
1348
|
+
color: var(--colors-badge-success-text);
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
.c_badge\.infoText {
|
|
1352
|
+
color: var(--colors-badge-info-text);
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
.c_badge\.neutralText {
|
|
1356
|
+
color: var(--colors-badge-neutral-text);
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.vis_hidden {
|
|
1360
|
+
visibility: hidden;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
.pos_absolute {
|
|
1364
|
+
position: absolute;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
.pointer-events_none {
|
|
1368
|
+
pointer-events: none;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
.ta_left {
|
|
1372
|
+
text-align: left;
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
.bx-sh_0_18px_40px_-30px_rgba\(49\,94\,255\,0\.56\) {
|
|
1376
|
+
box-shadow: 0 18px 40px -30px rgba(49,94,255,0.56);
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.bx-sh_0_14px_32px_-30px_rgba\(15\,23\,42\,0\.42\) {
|
|
1380
|
+
box-shadow: 0 14px 32px -30px rgba(15,23,42,0.42);
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.cursor_not-allowed {
|
|
1384
|
+
cursor: not-allowed;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.op_0\.5 {
|
|
1388
|
+
opacity: 0.5;
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
.cursor_pointer {
|
|
1392
|
+
cursor: pointer;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.flex-sh_0 {
|
|
1396
|
+
flex-shrink: 0;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
.c_text\.inverse {
|
|
1400
|
+
color: var(--colors-text-inverse);
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.bx-sh_0_12px_24px_-16px_rgba\(49\,94\,255\,0\.7\) {
|
|
1404
|
+
box-shadow: 0 12px 24px -16px rgba(49,94,255,0.7);
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
.c_transparent {
|
|
1408
|
+
color: var(--colors-transparent);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.32\) {
|
|
1412
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
.lh_1\.45 {
|
|
1416
|
+
line-height: 1.45;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
.lh_1\.55 {
|
|
1420
|
+
line-height: 1.55;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.lh_1\.5 {
|
|
1424
|
+
line-height: 1.5;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.bx-sh_0_0_0_0_rgba\(49\,94\,255\,0\.35\) {
|
|
1428
|
+
box-shadow: 0 0 0 0 rgba(49,94,255,0.35);
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.bkdp_blur\(18px\)_saturate\(140\%\) {
|
|
1432
|
+
backdrop-filter: blur(18px) saturate(140%);
|
|
1433
|
+
-webkit-backdrop-filter: blur(18px) saturate(140%);
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.18\) {
|
|
1437
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.fw_600 {
|
|
1441
|
+
font-weight: 600;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.bx-sh_0_14px_26px_-16px_rgba\(49\,94\,255\,0\.68\) {
|
|
1445
|
+
box-shadow: 0 14px 26px -16px rgba(49,94,255,0.68);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.bx-sh_none {
|
|
1449
|
+
box-shadow: none;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
.z_30 {
|
|
1453
|
+
z-index: 30;
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.bkdp_blur\(24px\)_saturate\(145\%\) {
|
|
1457
|
+
backdrop-filter: blur(24px) saturate(145%);
|
|
1458
|
+
-webkit-backdrop-filter: blur(24px) saturate(145%);
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.bx-sh_0_18px_42px_-28px_rgba\(49\,94\,255\,0\.42\) {
|
|
1462
|
+
box-shadow: 0 18px 42px -28px rgba(49,94,255,0.42);
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.22\) {
|
|
1466
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.c_text\.muted {
|
|
1470
|
+
color: var(--colors-text-muted);
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.op_0\.55 {
|
|
1474
|
+
opacity: 0.55;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.trf_rotate\(180deg\) {
|
|
1478
|
+
transform: rotate(180deg);
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.trf_rotate\(0deg\) {
|
|
1482
|
+
transform: rotate(0deg);
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.op_1 {
|
|
1486
|
+
opacity: 1;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.op_0 {
|
|
1490
|
+
opacity: 0;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.d_block {
|
|
1494
|
+
display: block;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.tov_ellipsis {
|
|
1498
|
+
text-overflow: ellipsis;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.white-space_nowrap {
|
|
1502
|
+
white-space: nowrap;
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.ov-wrap_anywhere {
|
|
1506
|
+
overflow-wrap: anywhere;
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.ac_start {
|
|
1510
|
+
align-content: start;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.grid-tc_1fr {
|
|
1514
|
+
grid-template-columns: 1fr;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.flex-wrap_wrap {
|
|
1518
|
+
flex-wrap: wrap;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.bx-sh_0_30px_90px_-72px_rgba\(15\,23\,42\,0\.7\) {
|
|
1522
|
+
box-shadow: 0 30px 90px -72px rgba(15,23,42,0.7);
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.ls_0\.05em {
|
|
1526
|
+
letter-spacing: 0.05em;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.fw_800 {
|
|
1530
|
+
font-weight: 800;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.ls_0\.08em {
|
|
1534
|
+
letter-spacing: 0.08em;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.lh_1\.7 {
|
|
1538
|
+
line-height: 1.7;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.ap_none {
|
|
1542
|
+
appearance: none;
|
|
1543
|
+
-webkit-appearance: none;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.trs-prop_background-color\,_color\,_box-shadow {
|
|
1547
|
+
--transition-prop: background-color, color, box-shadow;
|
|
1548
|
+
transition-property: background-color, color, box-shadow;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
.trs-dur_fast {
|
|
1552
|
+
--transition-duration: var(--durations-fast);
|
|
1553
|
+
transition-duration: var(--durations-fast);
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.bx-sh_0_10px_30px_-20px_rgba\(15\,23\,42\,0\.72\) {
|
|
1557
|
+
box-shadow: 0 10px 30px -20px rgba(15,23,42,0.72);
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
.jc_flex-start {
|
|
1561
|
+
justify-content: flex-start;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.jc_flex-end {
|
|
1565
|
+
justify-content: flex-end;
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.ai_start {
|
|
1569
|
+
align-items: start;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.ac_center {
|
|
1573
|
+
align-content: center;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.c_text\.error {
|
|
1577
|
+
color: var(--colors-text-error);
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
.lh_1\.6 {
|
|
1581
|
+
line-height: 1.6;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.ring-o_2px {
|
|
1585
|
+
outline-offset: 2px;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.bkdp_blur\(22px\)_saturate\(145\%\) {
|
|
1589
|
+
backdrop-filter: blur(22px) saturate(145%);
|
|
1590
|
+
-webkit-backdrop-filter: blur(22px) saturate(145%);
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.24\)\,_0_14px_28px_-28px_rgba\(15\,23\,42\,0\.42\) {
|
|
1594
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 14px 28px -28px rgba(15,23,42,0.42);
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.bkdp_blur\(20px\)_saturate\(145\%\) {
|
|
1598
|
+
backdrop-filter: blur(20px) saturate(145%);
|
|
1599
|
+
-webkit-backdrop-filter: blur(20px) saturate(145%);
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.2\) {
|
|
1603
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.ff_mono {
|
|
1607
|
+
font-family: var(--fonts-mono);
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
.bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.24\)\,_0_18px_36px_-32px_rgba\(15\,23\,42\,0\.42\) {
|
|
1611
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 18px 36px -32px rgba(15,23,42,0.42);
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
.bkdp_blur\(28px\)_saturate\(155\%\) {
|
|
1615
|
+
backdrop-filter: blur(28px) saturate(155%);
|
|
1616
|
+
-webkit-backdrop-filter: blur(28px) saturate(155%);
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
.bx-sh_0_25px_30px_-35px_rgba\(15\,23\,42\,0\.42\) {
|
|
1620
|
+
box-shadow: 0 25px 30px -35px rgba(15,23,42,0.42);
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
.bx-sh_0_16px_32px_-28px_rgba\(15\,23\,42\,0\.42\) {
|
|
1624
|
+
box-shadow: 0 16px 32px -28px rgba(15,23,42,0.42);
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.ls_0\.12em {
|
|
1628
|
+
letter-spacing: 0.12em;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
.ff_heading {
|
|
1632
|
+
font-family: var(--fonts-heading);
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
.fs_2xl {
|
|
1636
|
+
font-size: var(--font-sizes-2xl);
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.lh_1 {
|
|
1640
|
+
line-height: 1;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
.lh_1\.1 {
|
|
1644
|
+
line-height: 1.1;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.white-space_pre-wrap {
|
|
1648
|
+
white-space: pre-wrap;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.ls_0\.01em {
|
|
1652
|
+
letter-spacing: 0.01em;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
.bkdp_blur\(22px\)_saturate\(140\%\) {
|
|
1656
|
+
backdrop-filter: blur(22px) saturate(140%);
|
|
1657
|
+
-webkit-backdrop-filter: blur(22px) saturate(140%);
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
.us_none {
|
|
1661
|
+
-webkit-user-select: none;
|
|
1662
|
+
user-select: none;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.bx-sh_0_22px_36px_-24px_rgba\(49\,94\,255\,0\.78\)\,_inset_0_1px_0_rgba\(255\,255\,255\,0\.24\) {
|
|
1666
|
+
box-shadow: 0 22px 36px -24px rgba(49,94,255,0.78), inset 0 1px 0 rgba(255,255,255,0.24);
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.bkdp_blur\(34px\)_saturate\(165\%\) {
|
|
1670
|
+
backdrop-filter: blur(34px) saturate(165%);
|
|
1671
|
+
-webkit-backdrop-filter: blur(34px) saturate(165%);
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
.bx-sh_0_32px_70px_-40px_rgba\(15\,23\,42\,0\.5\) {
|
|
1675
|
+
box-shadow: 0 32px 70px -40px rgba(15,23,42,0.5);
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
.pos_fixed {
|
|
1679
|
+
position: fixed;
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
.w_10 {
|
|
1683
|
+
width: var(--sizes-10);
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
.h_10 {
|
|
1687
|
+
height: var(--sizes-10);
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
.mb_3 {
|
|
1691
|
+
margin-bottom: var(--spacing-3);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.mb_0 {
|
|
1695
|
+
margin-bottom: var(--spacing-0);
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.mb_2 {
|
|
1699
|
+
margin-bottom: var(--spacing-2);
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.pl_4 {
|
|
1703
|
+
padding-left: var(--spacing-4);
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
.h_100\% {
|
|
1707
|
+
height: 100%;
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.min-h_0 {
|
|
1711
|
+
min-height: var(--sizes-0);
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.mb_5 {
|
|
1715
|
+
margin-bottom: var(--spacing-5);
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.max-w_2xl {
|
|
1719
|
+
max-width: var(--sizes-2xl);
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
.ov-y_auto {
|
|
1723
|
+
overflow-y: auto;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.pr_1 {
|
|
1727
|
+
padding-right: var(--spacing-1);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.min-w_0 {
|
|
1731
|
+
min-width: var(--sizes-0);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.w_100\% {
|
|
1735
|
+
width: 100%;
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.mt_0\.5 {
|
|
1739
|
+
margin-top: var(--spacing-0\.5);
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.w_22px {
|
|
1743
|
+
width: 22px;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.h_22px {
|
|
1747
|
+
height: 22px;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.w_2\.5 {
|
|
1751
|
+
width: var(--sizes-2\.5);
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
.h_2\.5 {
|
|
1755
|
+
height: var(--sizes-2\.5);
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.w_fit-content {
|
|
1759
|
+
width: fit-content;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.min-h_40px {
|
|
1763
|
+
min-height: 40px;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
.min-h_48px {
|
|
1767
|
+
min-height: 48px;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.max-h_320px {
|
|
1771
|
+
max-height: 320px;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
.h_0\.875rem {
|
|
1775
|
+
height: 0.875rem;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
.h_1\.75rem {
|
|
1779
|
+
height: 1.75rem;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.h_5rem {
|
|
1783
|
+
height: 5rem;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.w_5rem {
|
|
1787
|
+
width: 5rem;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.w_2\.75rem {
|
|
1791
|
+
width: 2.75rem;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
.h_2\.75rem {
|
|
1795
|
+
height: 2.75rem;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.h_4\.75rem {
|
|
1799
|
+
height: 4.75rem;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.max-w_100\% {
|
|
1803
|
+
max-width: 100%;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.min-h_100\% {
|
|
1807
|
+
min-height: 100%;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.max-w_28rem {
|
|
1811
|
+
max-width: 28rem;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.max-w_48rem {
|
|
1815
|
+
max-width: 48rem;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.max-w_42rem {
|
|
1819
|
+
max-width: 42rem;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
.max-h_220px {
|
|
1823
|
+
max-height: 220px;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
.min-w_4\.75rem {
|
|
1827
|
+
min-width: 4.75rem;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.min-h_220px {
|
|
1831
|
+
min-height: 220px;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
.min-h_420px {
|
|
1835
|
+
min-height: 420px;
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
.top_calc\(100\%_\+_10px\) {
|
|
1839
|
+
top: calc(100% + 10px);
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.left_0 {
|
|
1843
|
+
left: var(--spacing-0);
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
.right_0 {
|
|
1847
|
+
right: var(--spacing-0);
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
.before\:inset_0::before {
|
|
1851
|
+
inset: var(--spacing-0);
|
|
1852
|
+
}
|
|
1853
|
+
|
|
1854
|
+
.before\:bg_linear-gradient\(90deg\,_rgba\(255\,255\,255\,0\)_0\%\,_rgba\(255\,255\,255\,0\.62\)_50\%\,_rgba\(255\,255\,255\,0\)_100\%\)::before {
|
|
1855
|
+
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0) 100%);
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.before\:anim_aggc-shimmer_1\.45s_ease-in-out_infinite::before {
|
|
1859
|
+
animation: aggc-shimmer 1.45s ease-in-out infinite;
|
|
1860
|
+
}
|
|
1861
|
+
|
|
1862
|
+
[data-theme="dark"] .dark\:bg_rgba\(210\,_220\,_240\,_0\.09\) {
|
|
1863
|
+
background: rgba(210, 220, 240, 0.09);
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
[data-theme="dark"] .dark\:bg_rgba\(210\,_220\,_240\,_0\.11\) {
|
|
1867
|
+
background: rgba(210, 220, 240, 0.11);
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.before\:bg_linear-gradient\(180deg\,_rgba\(255\,255\,255\,0\.28\)_0\%\,_rgba\(255\,255\,255\,0\.04\)_18\%\,_rgba\(255\,255\,255\,0\)_100\%\)::before {
|
|
1871
|
+
background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.04) 18%, rgba(255,255,255,0) 100%);
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
[data-theme="dark"] .dark\:bd-c_rgba\(255\,255\,255\,0\.06\) {
|
|
1875
|
+
border-color: rgba(255,255,255,0.06);
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
[data-theme="dark"] .dark\:bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.04\) {
|
|
1879
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.before\:content_\"\"::before {
|
|
1883
|
+
content: "";
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.before\:pos_absolute::before {
|
|
1887
|
+
position: absolute;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.before\:trf_translateX\(-100\%\)::before {
|
|
1891
|
+
transform: translateX(-100%);
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.placeholder\:c_text\.muted::placeholder,.placeholder\:c_text\.muted[data-placeholder] {
|
|
1895
|
+
color: var(--colors-text-muted);
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
[data-theme="dark"] .dark\:bx-sh_inset_0_1px_0_rgba\(255\,255\,255\,0\.03\) {
|
|
1899
|
+
box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.before\:pointer-events_none::before {
|
|
1903
|
+
pointer-events: none;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
[data-theme="dark"] .dark\:bkdp_blur\(12px\)_saturate\(110\%\) {
|
|
1907
|
+
backdrop-filter: blur(12px) saturate(110%);
|
|
1908
|
+
-webkit-backdrop-filter: blur(12px) saturate(110%);
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
[data-theme="dark"] .dark\:bx-sh_0_16px_34px_-28px_rgba\(0\,0\,0\,0\.92\) {
|
|
1912
|
+
box-shadow: 0 16px 34px -28px rgba(0,0,0,0.92);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
[data-theme="dark"] .dark\:bkdp_blur\(10px\)_saturate\(105\%\) {
|
|
1916
|
+
backdrop-filter: blur(10px) saturate(105%);
|
|
1917
|
+
-webkit-backdrop-filter: blur(10px) saturate(105%);
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
[data-theme="dark"] .dark\:c_\#f7f9fd {
|
|
1921
|
+
color: #f7f9fd;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
[data-theme="dark"] .dark\:bx-sh_0_22px_40px_-24px_rgba\(71\,121\,255\,0\.55\)\,_inset_0_1px_0_rgba\(255\,255\,255\,0\.18\) {
|
|
1925
|
+
box-shadow: 0 22px 40px -24px rgba(71,121,255,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.focusVisible\:ring_2px_solid:is(:focus-visible, [data-focus-visible]) {
|
|
1929
|
+
outline: 2px solid;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1932
|
+
.focusVisible\:ring-c_border\.accent:is(:focus-visible, [data-focus-visible]) {
|
|
1933
|
+
outline-color: var(--colors-border-accent);
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
.focusVisible\:ring-o_2px:is(:focus-visible, [data-focus-visible]) {
|
|
1937
|
+
outline-offset: 2px;
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
.hover\:bg_bg\.accentStrong:is(:hover, [data-hover]) {
|
|
1941
|
+
background: var(--colors-bg-accent-strong);
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
.hover\:bg_bg\.hover:is(:hover, [data-hover]) {
|
|
1945
|
+
background: var(--colors-bg-hover);
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
.hover\:bg_bg\.cardStrong:is(:hover, [data-hover]) {
|
|
1949
|
+
background: var(--colors-bg-card-strong);
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.hover\:bg_bg\.selected:is(:hover, [data-hover]) {
|
|
1953
|
+
background: var(--colors-bg-selected);
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.hover\:bg_bg\.card:is(:hover, [data-hover]) {
|
|
1957
|
+
background: var(--colors-bg-card);
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.hover\:bd-c_border\.accent:is(:hover, [data-hover]) {
|
|
1961
|
+
border-color: var(--colors-border-accent);
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.hover\:bd-c_border\.strong:is(:hover, [data-hover]) {
|
|
1965
|
+
border-color: var(--colors-border-strong);
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.hover\:trf_translateY\(-1px\):is(:hover, [data-hover]) {
|
|
1969
|
+
transform: translateY(-1px);
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.hover\:c_text\.primary:is(:hover, [data-hover]) {
|
|
1973
|
+
color: var(--colors-text-primary);
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.hover\:bx-sh_0_24px_42px_-24px_rgba\(49\,94\,255\,0\.82\)\,_inset_0_1px_0_rgba\(255\,255\,255\,0\.28\):is(:hover, [data-hover]) {
|
|
1977
|
+
box-shadow: 0 24px 42px -24px rgba(49,94,255,0.82), inset 0 1px 0 rgba(255,255,255,0.28);
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
[data-theme="dark"] .dark\:before\:bg_linear-gradient\(90deg\,_rgba\(255\,255\,255\,0\)_0\%\,_rgba\(186\,204\,236\,0\.22\)_50\%\,_rgba\(255\,255\,255\,0\)_100\%\)::before {
|
|
1981
|
+
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(186,204,236,0.22) 50%, rgba(255,255,255,0) 100%);
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
[data-theme="dark"] .dark\:before\:bg_none::before {
|
|
1985
|
+
background: none;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
@media screen and (min-width: 48rem) {
|
|
1989
|
+
.md\:p_5 {
|
|
1990
|
+
padding: var(--spacing-5);
|
|
1991
|
+
}
|
|
1992
|
+
.md\:ai_center {
|
|
1993
|
+
align-items: center;
|
|
1994
|
+
}
|
|
1995
|
+
.md\:flex-d_row {
|
|
1996
|
+
flex-direction: row;
|
|
1997
|
+
}
|
|
1998
|
+
.md\:grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
1999
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2000
|
+
}
|
|
2001
|
+
.md\:fs_3xl {
|
|
2002
|
+
font-size: var(--font-sizes-3xl);
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
@media screen and (min-width: 64rem) {
|
|
2007
|
+
.lg\:grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
|
|
2008
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2009
|
+
}
|
|
2010
|
+
.lg\:grid-tc_repeat\(4\,_minmax\(0\,_1fr\)\) {
|
|
2011
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2012
|
+
}
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
@media screen and (min-width: 80rem) {
|
|
2016
|
+
.xl\:grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
2017
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2018
|
+
}
|
|
2019
|
+
.xl\:grid-tc_minmax\(18rem\,_0\.9fr\)_minmax\(0\,_1\.4fr\) {
|
|
2020
|
+
grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.4fr);
|
|
2021
|
+
}
|
|
2022
|
+
.xl\:grid-tc_minmax\(18rem\,_0\.85fr\)_minmax\(0\,_1\.45fr\) {
|
|
2023
|
+
grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.45fr);
|
|
2024
|
+
}
|
|
2025
|
+
}
|
|
2026
|
+
}
|