chaeditor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +21 -0
- package/README.ko.md +250 -0
- package/README.md +242 -0
- package/dist/core.cjs +1034 -0
- package/dist/core.d.mts +347 -0
- package/dist/core.d.ts +347 -0
- package/dist/core.mjs +988 -0
- package/dist/default-host.cjs +243 -0
- package/dist/default-host.d.mts +52 -0
- package/dist/default-host.d.ts +52 -0
- package/dist/default-host.mjs +239 -0
- package/dist/default-markdown-primitive-registry-B3PGEkqs.d.mts +12 -0
- package/dist/default-markdown-primitive-registry-CqzwhHj2.d.ts +12 -0
- package/dist/image-upload-kind-BJqItE_C.d.mts +18 -0
- package/dist/image-upload-kind-BJqItE_C.d.ts +18 -0
- package/dist/index.cjs +8736 -0
- package/dist/index.d.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.mjs +8668 -0
- package/dist/markdown-editor-B1qvE40Z.d.mts +460 -0
- package/dist/markdown-editor-Ce6DpnQk.d.ts +460 -0
- package/dist/markdown-primitive-contract-BXsqbKwY.d.mts +124 -0
- package/dist/markdown-primitive-contract-BXsqbKwY.d.ts +124 -0
- package/dist/panda-primitives.cjs +1299 -0
- package/dist/panda-primitives.d.mts +21127 -0
- package/dist/panda-primitives.d.ts +21127 -0
- package/dist/panda-primitives.mjs +1285 -0
- package/dist/react.cjs +8558 -0
- package/dist/react.d.mts +35 -0
- package/dist/react.d.ts +35 -0
- package/dist/react.mjs +8531 -0
- package/dist/toolbar-preset-B9ttTEol.d.ts +236 -0
- package/dist/toolbar-preset-DIsQN390.d.mts +236 -0
- package/package.json +151 -0
- package/recipes/host-presets/README.md +16 -0
- package/recipes/host-presets/emotion-host-preset.tsx.template +109 -0
- package/recipes/host-presets/styled-components-host-preset.tsx.template +102 -0
- package/recipes/host-presets/tailwind-host-preset.tsx.template +116 -0
- package/recipes/host-presets/vanilla-extract-host-preset.tsx.template +116 -0
- package/styled-system/styles.css +3370 -0
|
@@ -0,0 +1,3370 @@
|
|
|
1
|
+
@layer reset, base, tokens, recipes, utilities;
|
|
2
|
+
|
|
3
|
+
@layer reset{
|
|
4
|
+
html,:host {
|
|
5
|
+
--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';
|
|
6
|
+
line-height: 1.5;
|
|
7
|
+
-webkit-text-size-adjust: 100%;
|
|
8
|
+
-webkit-font-smoothing: antialiased;
|
|
9
|
+
-moz-osx-font-smoothing: grayscale;
|
|
10
|
+
-moz-tab-size: 4;
|
|
11
|
+
tab-size: 4;
|
|
12
|
+
font-family: var(--global-font-body, var(--font-fallback));
|
|
13
|
+
-webkit-tap-highlight-color: transparent;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
*,::before,::after,::backdrop,::file-selector-button {
|
|
17
|
+
margin: 0px;
|
|
18
|
+
padding: 0px;
|
|
19
|
+
border-width: 0px;
|
|
20
|
+
border-style: solid;
|
|
21
|
+
border-color: var(--global-color-border, currentcolor);
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
hr {
|
|
26
|
+
color: inherit;
|
|
27
|
+
height: 0px;
|
|
28
|
+
border-top-width: 1px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
body {
|
|
32
|
+
line-height: inherit;
|
|
33
|
+
height: 100%;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
img {
|
|
37
|
+
border-style: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
img,svg,video,canvas,audio,iframe,embed,object {
|
|
41
|
+
display: block;
|
|
42
|
+
vertical-align: middle;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
img,video {
|
|
46
|
+
max-width: 100%;
|
|
47
|
+
height: auto;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h1,h2,h3,h4,h5,h6 {
|
|
51
|
+
text-wrap: balance;
|
|
52
|
+
font-size: inherit;
|
|
53
|
+
font-weight: inherit;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
p,h1,h2,h3,h4,h5,h6 {
|
|
57
|
+
overflow-wrap: break-word;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
ol,ul,menu {
|
|
61
|
+
list-style: none;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
button,input:where([type='button'], [type='reset'], [type='submit']),::file-selector-button {
|
|
65
|
+
appearance: button;
|
|
66
|
+
-webkit-appearance: button;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
button,input,optgroup,select,textarea,::file-selector-button {
|
|
70
|
+
font: inherit;
|
|
71
|
+
background: var(--colors-transparent);
|
|
72
|
+
font-feature-settings: inherit;
|
|
73
|
+
font-variation-settings: inherit;
|
|
74
|
+
letter-spacing: inherit;
|
|
75
|
+
color: inherit;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
::placeholder {
|
|
79
|
+
--placeholder-fallback: rgba(0, 0, 0, 0.5);
|
|
80
|
+
opacity: 1;
|
|
81
|
+
color: var(--global-color-placeholder, var(--placeholder-fallback));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
85
|
+
::placeholder {
|
|
86
|
+
--placeholder-fallback: color-mix(in oklab, currentcolor 50%, transparent);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
::selection {
|
|
91
|
+
background-color: var(--global-color-selection, rgba(0, 115, 255, 0.3));
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
textarea {
|
|
95
|
+
resize: vertical;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
table {
|
|
99
|
+
border-color: inherit;
|
|
100
|
+
text-indent: 0px;
|
|
101
|
+
border-collapse: collapse;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
summary {
|
|
105
|
+
display: list-item;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
small {
|
|
109
|
+
font-size: 80%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
sub,sup {
|
|
113
|
+
font-size: 75%;
|
|
114
|
+
line-height: 0;
|
|
115
|
+
position: relative;
|
|
116
|
+
vertical-align: baseline;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
sub {
|
|
120
|
+
bottom: -0.25em;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
sup {
|
|
124
|
+
top: -0.5em;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
dialog {
|
|
128
|
+
padding: 0px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
a {
|
|
132
|
+
text-decoration: inherit;
|
|
133
|
+
color: inherit;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
abbr:where([title]) {
|
|
137
|
+
text-decoration: underline dotted;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
b,strong {
|
|
141
|
+
font-weight: bolder;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
code,kbd,samp,pre {
|
|
145
|
+
--font-mono-fallback: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New';
|
|
146
|
+
font-family: var(--global-font-mono, var(--font-mono-fallback));
|
|
147
|
+
font-size: 1em;
|
|
148
|
+
font-feature-settings: normal;
|
|
149
|
+
font-variation-settings: normal;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
progress {
|
|
153
|
+
vertical-align: baseline;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
::-webkit-search-decoration,::-webkit-search-cancel-button {
|
|
157
|
+
-webkit-appearance: none;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
::-webkit-inner-spin-button,::-webkit-outer-spin-button {
|
|
161
|
+
height: auto;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:-moz-ui-invalid {
|
|
165
|
+
box-shadow: none;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
:-moz-focusring {
|
|
169
|
+
outline: auto;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
[hidden]:where(:not([hidden='until-found'])) {
|
|
173
|
+
display: none !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
@layer base{
|
|
178
|
+
:root {
|
|
179
|
+
--made-with-panda: '🐼';
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
*,::before,::after,::backdrop {
|
|
183
|
+
--blur: /*-*/ /*-*/;
|
|
184
|
+
--brightness: /*-*/ /*-*/;
|
|
185
|
+
--contrast: /*-*/ /*-*/;
|
|
186
|
+
--grayscale: /*-*/ /*-*/;
|
|
187
|
+
--hue-rotate: /*-*/ /*-*/;
|
|
188
|
+
--invert: /*-*/ /*-*/;
|
|
189
|
+
--saturate: /*-*/ /*-*/;
|
|
190
|
+
--sepia: /*-*/ /*-*/;
|
|
191
|
+
--drop-shadow: /*-*/ /*-*/;
|
|
192
|
+
--backdrop-blur: /*-*/ /*-*/;
|
|
193
|
+
--backdrop-brightness: /*-*/ /*-*/;
|
|
194
|
+
--backdrop-contrast: /*-*/ /*-*/;
|
|
195
|
+
--backdrop-grayscale: /*-*/ /*-*/;
|
|
196
|
+
--backdrop-hue-rotate: /*-*/ /*-*/;
|
|
197
|
+
--backdrop-invert: /*-*/ /*-*/;
|
|
198
|
+
--backdrop-opacity: /*-*/ /*-*/;
|
|
199
|
+
--backdrop-saturate: /*-*/ /*-*/;
|
|
200
|
+
--backdrop-sepia: /*-*/ /*-*/;
|
|
201
|
+
--gradient-from-position: /*-*/ /*-*/;
|
|
202
|
+
--gradient-to-position: /*-*/ /*-*/;
|
|
203
|
+
--gradient-via-position: /*-*/ /*-*/;
|
|
204
|
+
--scroll-snap-strictness: proximity;
|
|
205
|
+
--border-spacing-x: 0;
|
|
206
|
+
--border-spacing-y: 0;
|
|
207
|
+
--translate-x: 0;
|
|
208
|
+
--translate-y: 0;
|
|
209
|
+
--rotate: 0;
|
|
210
|
+
--rotate-x: 0;
|
|
211
|
+
--rotate-y: 0;
|
|
212
|
+
--skew-x: 0;
|
|
213
|
+
--skew-y: 0;
|
|
214
|
+
--scale-x: 1;
|
|
215
|
+
--scale-y: 1;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
@layer tokens{
|
|
220
|
+
:where(:root, :host) {
|
|
221
|
+
--aspect-ratios-square: 1 / 1;
|
|
222
|
+
--aspect-ratios-landscape: 4 / 3;
|
|
223
|
+
--aspect-ratios-portrait: 3 / 4;
|
|
224
|
+
--aspect-ratios-wide: 16 / 9;
|
|
225
|
+
--aspect-ratios-ultrawide: 18 / 5;
|
|
226
|
+
--aspect-ratios-golden: 1.618 / 1;
|
|
227
|
+
--borders-none: none;
|
|
228
|
+
--easings-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
229
|
+
--easings-linear: linear;
|
|
230
|
+
--easings-in: cubic-bezier(0.4, 0, 1, 1);
|
|
231
|
+
--easings-out: cubic-bezier(0, 0, 0.2, 1);
|
|
232
|
+
--easings-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
233
|
+
--durations-fastest: 50ms;
|
|
234
|
+
--durations-faster: 100ms;
|
|
235
|
+
--durations-fast: 150ms;
|
|
236
|
+
--durations-normal: 200ms;
|
|
237
|
+
--durations-slow: 300ms;
|
|
238
|
+
--durations-slower: 400ms;
|
|
239
|
+
--durations-slowest: 500ms;
|
|
240
|
+
--radii-xs: 0.125rem;
|
|
241
|
+
--radii-sm: 0.25rem;
|
|
242
|
+
--radii-md: 0.375rem;
|
|
243
|
+
--radii-lg: 0.5rem;
|
|
244
|
+
--radii-xl: 0.75rem;
|
|
245
|
+
--radii-2xl: 1rem;
|
|
246
|
+
--radii-3xl: 1.5rem;
|
|
247
|
+
--radii-4xl: 2rem;
|
|
248
|
+
--radii-full: 9999px;
|
|
249
|
+
--font-weights-thin: 100;
|
|
250
|
+
--font-weights-extralight: 200;
|
|
251
|
+
--font-weights-light: 300;
|
|
252
|
+
--font-weights-normal: 400;
|
|
253
|
+
--font-weights-medium: 500;
|
|
254
|
+
--font-weights-semibold: 600;
|
|
255
|
+
--font-weights-bold: 700;
|
|
256
|
+
--font-weights-extrabold: 800;
|
|
257
|
+
--font-weights-black: 900;
|
|
258
|
+
--line-heights-none: 1;
|
|
259
|
+
--line-heights-tight: 1.25;
|
|
260
|
+
--line-heights-snug: 1.375;
|
|
261
|
+
--line-heights-normal: 1.5;
|
|
262
|
+
--line-heights-relaxed: 1.625;
|
|
263
|
+
--line-heights-loose: 2;
|
|
264
|
+
--letter-spacings-tighter: -0.05em;
|
|
265
|
+
--letter-spacings-tight: -0.025em;
|
|
266
|
+
--letter-spacings-normal: 0em;
|
|
267
|
+
--letter-spacings-wide: 0.025em;
|
|
268
|
+
--letter-spacings-wider: 0.05em;
|
|
269
|
+
--letter-spacings-widest: 0.1em;
|
|
270
|
+
--colors-current: currentColor;
|
|
271
|
+
--colors-black: #000;
|
|
272
|
+
--colors-white: #fff;
|
|
273
|
+
--colors-transparent: rgb(0 0 0 / 0);
|
|
274
|
+
--colors-rose-50: #fff1f2;
|
|
275
|
+
--colors-rose-100: #ffe4e6;
|
|
276
|
+
--colors-rose-200: #fecdd3;
|
|
277
|
+
--colors-rose-300: #fda4af;
|
|
278
|
+
--colors-rose-400: #fb7185;
|
|
279
|
+
--colors-rose-500: #f43f5e;
|
|
280
|
+
--colors-rose-600: #e11d48;
|
|
281
|
+
--colors-rose-700: #be123c;
|
|
282
|
+
--colors-rose-800: #9f1239;
|
|
283
|
+
--colors-rose-900: #881337;
|
|
284
|
+
--colors-rose-950: #4c0519;
|
|
285
|
+
--colors-pink-50: #fdf2f8;
|
|
286
|
+
--colors-pink-100: #fce7f3;
|
|
287
|
+
--colors-pink-200: #fbcfe8;
|
|
288
|
+
--colors-pink-300: #f9a8d4;
|
|
289
|
+
--colors-pink-400: #f472b6;
|
|
290
|
+
--colors-pink-500: #ec4899;
|
|
291
|
+
--colors-pink-600: #db2777;
|
|
292
|
+
--colors-pink-700: #be185d;
|
|
293
|
+
--colors-pink-800: #9d174d;
|
|
294
|
+
--colors-pink-900: #831843;
|
|
295
|
+
--colors-pink-950: #500724;
|
|
296
|
+
--colors-fuchsia-50: #fdf4ff;
|
|
297
|
+
--colors-fuchsia-100: #fae8ff;
|
|
298
|
+
--colors-fuchsia-200: #f5d0fe;
|
|
299
|
+
--colors-fuchsia-300: #f0abfc;
|
|
300
|
+
--colors-fuchsia-400: #e879f9;
|
|
301
|
+
--colors-fuchsia-500: #d946ef;
|
|
302
|
+
--colors-fuchsia-600: #c026d3;
|
|
303
|
+
--colors-fuchsia-700: #a21caf;
|
|
304
|
+
--colors-fuchsia-800: #86198f;
|
|
305
|
+
--colors-fuchsia-900: #701a75;
|
|
306
|
+
--colors-fuchsia-950: #4a044e;
|
|
307
|
+
--colors-purple-50: #faf5ff;
|
|
308
|
+
--colors-purple-100: #f3e8ff;
|
|
309
|
+
--colors-purple-200: #e9d5ff;
|
|
310
|
+
--colors-purple-300: #d8b4fe;
|
|
311
|
+
--colors-purple-400: #c084fc;
|
|
312
|
+
--colors-purple-500: #a855f7;
|
|
313
|
+
--colors-purple-600: #9333ea;
|
|
314
|
+
--colors-purple-700: #7e22ce;
|
|
315
|
+
--colors-purple-800: #6b21a8;
|
|
316
|
+
--colors-purple-900: #581c87;
|
|
317
|
+
--colors-purple-950: #3b0764;
|
|
318
|
+
--colors-violet-50: #f5f3ff;
|
|
319
|
+
--colors-violet-100: #ede9fe;
|
|
320
|
+
--colors-violet-200: #ddd6fe;
|
|
321
|
+
--colors-violet-300: #c4b5fd;
|
|
322
|
+
--colors-violet-400: #a78bfa;
|
|
323
|
+
--colors-violet-500: #8b5cf6;
|
|
324
|
+
--colors-violet-600: #7c3aed;
|
|
325
|
+
--colors-violet-700: #6d28d9;
|
|
326
|
+
--colors-violet-800: #5b21b6;
|
|
327
|
+
--colors-violet-900: #4c1d95;
|
|
328
|
+
--colors-violet-950: #2e1065;
|
|
329
|
+
--colors-indigo-50: #eef2ff;
|
|
330
|
+
--colors-indigo-100: #e0e7ff;
|
|
331
|
+
--colors-indigo-200: #c7d2fe;
|
|
332
|
+
--colors-indigo-300: #a5b4fc;
|
|
333
|
+
--colors-indigo-400: #818cf8;
|
|
334
|
+
--colors-indigo-500: #6366f1;
|
|
335
|
+
--colors-indigo-600: #4f46e5;
|
|
336
|
+
--colors-indigo-700: #4338ca;
|
|
337
|
+
--colors-indigo-800: #3730a3;
|
|
338
|
+
--colors-indigo-900: #312e81;
|
|
339
|
+
--colors-indigo-950: #1e1b4b;
|
|
340
|
+
--colors-blue-50: #eff6ff;
|
|
341
|
+
--colors-blue-100: #dbeafe;
|
|
342
|
+
--colors-blue-200: #bfdbfe;
|
|
343
|
+
--colors-blue-300: #93c5fd;
|
|
344
|
+
--colors-blue-400: #60a5fa;
|
|
345
|
+
--colors-blue-500: #3b82f6;
|
|
346
|
+
--colors-blue-600: #2563eb;
|
|
347
|
+
--colors-blue-700: #1d4ed8;
|
|
348
|
+
--colors-blue-800: #1e40af;
|
|
349
|
+
--colors-blue-900: #1e3a8a;
|
|
350
|
+
--colors-blue-950: #172554;
|
|
351
|
+
--colors-sky-50: #f0f9ff;
|
|
352
|
+
--colors-sky-100: #e0f2fe;
|
|
353
|
+
--colors-sky-200: #bae6fd;
|
|
354
|
+
--colors-sky-300: #7dd3fc;
|
|
355
|
+
--colors-sky-400: #38bdf8;
|
|
356
|
+
--colors-sky-500: #0ea5e9;
|
|
357
|
+
--colors-sky-600: #0284c7;
|
|
358
|
+
--colors-sky-700: #0369a1;
|
|
359
|
+
--colors-sky-800: #075985;
|
|
360
|
+
--colors-sky-900: #0c4a6e;
|
|
361
|
+
--colors-sky-950: #082f49;
|
|
362
|
+
--colors-cyan-50: #ecfeff;
|
|
363
|
+
--colors-cyan-100: #cffafe;
|
|
364
|
+
--colors-cyan-200: #a5f3fc;
|
|
365
|
+
--colors-cyan-300: #67e8f9;
|
|
366
|
+
--colors-cyan-400: #22d3ee;
|
|
367
|
+
--colors-cyan-500: #06b6d4;
|
|
368
|
+
--colors-cyan-600: #0891b2;
|
|
369
|
+
--colors-cyan-700: #0e7490;
|
|
370
|
+
--colors-cyan-800: #155e75;
|
|
371
|
+
--colors-cyan-900: #164e63;
|
|
372
|
+
--colors-cyan-950: #083344;
|
|
373
|
+
--colors-teal-50: #f0fdfa;
|
|
374
|
+
--colors-teal-100: #ccfbf1;
|
|
375
|
+
--colors-teal-200: #99f6e4;
|
|
376
|
+
--colors-teal-300: #5eead4;
|
|
377
|
+
--colors-teal-400: #2dd4bf;
|
|
378
|
+
--colors-teal-500: #14b8a6;
|
|
379
|
+
--colors-teal-600: #0d9488;
|
|
380
|
+
--colors-teal-700: #0f766e;
|
|
381
|
+
--colors-teal-800: #115e59;
|
|
382
|
+
--colors-teal-900: #134e4a;
|
|
383
|
+
--colors-teal-950: #042f2e;
|
|
384
|
+
--colors-emerald-50: #ecfdf5;
|
|
385
|
+
--colors-emerald-100: #d1fae5;
|
|
386
|
+
--colors-emerald-200: #a7f3d0;
|
|
387
|
+
--colors-emerald-300: #6ee7b7;
|
|
388
|
+
--colors-emerald-400: #34d399;
|
|
389
|
+
--colors-emerald-500: #10b981;
|
|
390
|
+
--colors-emerald-600: #059669;
|
|
391
|
+
--colors-emerald-700: #047857;
|
|
392
|
+
--colors-emerald-800: #065f46;
|
|
393
|
+
--colors-emerald-900: #064e3b;
|
|
394
|
+
--colors-emerald-950: #022c22;
|
|
395
|
+
--colors-green-50: #f0fdf4;
|
|
396
|
+
--colors-green-100: #dcfce7;
|
|
397
|
+
--colors-green-200: #bbf7d0;
|
|
398
|
+
--colors-green-300: #86efac;
|
|
399
|
+
--colors-green-400: #4ade80;
|
|
400
|
+
--colors-green-500: #22c55e;
|
|
401
|
+
--colors-green-600: #16a34a;
|
|
402
|
+
--colors-green-700: #15803d;
|
|
403
|
+
--colors-green-800: #166534;
|
|
404
|
+
--colors-green-900: #14532d;
|
|
405
|
+
--colors-green-950: #052e16;
|
|
406
|
+
--colors-lime-50: #f7fee7;
|
|
407
|
+
--colors-lime-100: #ecfccb;
|
|
408
|
+
--colors-lime-200: #d9f99d;
|
|
409
|
+
--colors-lime-300: #bef264;
|
|
410
|
+
--colors-lime-400: #a3e635;
|
|
411
|
+
--colors-lime-500: #84cc16;
|
|
412
|
+
--colors-lime-600: #65a30d;
|
|
413
|
+
--colors-lime-700: #4d7c0f;
|
|
414
|
+
--colors-lime-800: #3f6212;
|
|
415
|
+
--colors-lime-900: #365314;
|
|
416
|
+
--colors-lime-950: #1a2e05;
|
|
417
|
+
--colors-yellow-50: #fefce8;
|
|
418
|
+
--colors-yellow-100: #fef9c3;
|
|
419
|
+
--colors-yellow-200: #fef08a;
|
|
420
|
+
--colors-yellow-300: #fde047;
|
|
421
|
+
--colors-yellow-400: #facc15;
|
|
422
|
+
--colors-yellow-500: #eab308;
|
|
423
|
+
--colors-yellow-600: #ca8a04;
|
|
424
|
+
--colors-yellow-700: #a16207;
|
|
425
|
+
--colors-yellow-800: #854d0e;
|
|
426
|
+
--colors-yellow-900: #713f12;
|
|
427
|
+
--colors-yellow-950: #422006;
|
|
428
|
+
--colors-amber-50: #fffbeb;
|
|
429
|
+
--colors-amber-100: #fef3c7;
|
|
430
|
+
--colors-amber-200: #fde68a;
|
|
431
|
+
--colors-amber-300: #fcd34d;
|
|
432
|
+
--colors-amber-400: #fbbf24;
|
|
433
|
+
--colors-amber-500: #f59e0b;
|
|
434
|
+
--colors-amber-600: #d97706;
|
|
435
|
+
--colors-amber-700: #b45309;
|
|
436
|
+
--colors-amber-800: #92400e;
|
|
437
|
+
--colors-amber-900: #78350f;
|
|
438
|
+
--colors-amber-950: #451a03;
|
|
439
|
+
--colors-orange-50: #fff7ed;
|
|
440
|
+
--colors-orange-100: #ffedd5;
|
|
441
|
+
--colors-orange-200: #fed7aa;
|
|
442
|
+
--colors-orange-300: #fdba74;
|
|
443
|
+
--colors-orange-400: #fb923c;
|
|
444
|
+
--colors-orange-500: #f97316;
|
|
445
|
+
--colors-orange-600: #ea580c;
|
|
446
|
+
--colors-orange-700: #c2410c;
|
|
447
|
+
--colors-orange-800: #9a3412;
|
|
448
|
+
--colors-orange-900: #7c2d12;
|
|
449
|
+
--colors-orange-950: #431407;
|
|
450
|
+
--colors-red-50: #fef2f2;
|
|
451
|
+
--colors-red-100: #fee2e2;
|
|
452
|
+
--colors-red-200: #fecaca;
|
|
453
|
+
--colors-red-300: #fca5a5;
|
|
454
|
+
--colors-red-400: #f87171;
|
|
455
|
+
--colors-red-500: #ef4444;
|
|
456
|
+
--colors-red-600: #dc2626;
|
|
457
|
+
--colors-red-700: #b91c1c;
|
|
458
|
+
--colors-red-800: #991b1b;
|
|
459
|
+
--colors-red-900: #7f1d1d;
|
|
460
|
+
--colors-red-950: #450a0a;
|
|
461
|
+
--colors-neutral-50: #fafafa;
|
|
462
|
+
--colors-neutral-100: #f5f5f5;
|
|
463
|
+
--colors-neutral-200: #e5e5e5;
|
|
464
|
+
--colors-neutral-300: #d4d4d4;
|
|
465
|
+
--colors-neutral-400: #a3a3a3;
|
|
466
|
+
--colors-neutral-500: #737373;
|
|
467
|
+
--colors-neutral-600: #525252;
|
|
468
|
+
--colors-neutral-700: #404040;
|
|
469
|
+
--colors-neutral-800: #262626;
|
|
470
|
+
--colors-neutral-900: #171717;
|
|
471
|
+
--colors-neutral-950: #0a0a0a;
|
|
472
|
+
--colors-stone-50: #fafaf9;
|
|
473
|
+
--colors-stone-100: #f5f5f4;
|
|
474
|
+
--colors-stone-200: #e7e5e4;
|
|
475
|
+
--colors-stone-300: #d6d3d1;
|
|
476
|
+
--colors-stone-400: #a8a29e;
|
|
477
|
+
--colors-stone-500: #78716c;
|
|
478
|
+
--colors-stone-600: #57534e;
|
|
479
|
+
--colors-stone-700: #44403c;
|
|
480
|
+
--colors-stone-800: #292524;
|
|
481
|
+
--colors-stone-900: #1c1917;
|
|
482
|
+
--colors-stone-950: #0c0a09;
|
|
483
|
+
--colors-zinc-50: #fafafa;
|
|
484
|
+
--colors-zinc-100: #f4f4f5;
|
|
485
|
+
--colors-zinc-200: #e4e4e7;
|
|
486
|
+
--colors-zinc-300: #d4d4d8;
|
|
487
|
+
--colors-zinc-400: #a1a1aa;
|
|
488
|
+
--colors-zinc-500: #71717a;
|
|
489
|
+
--colors-zinc-600: #52525b;
|
|
490
|
+
--colors-zinc-700: #3f3f46;
|
|
491
|
+
--colors-zinc-800: #27272a;
|
|
492
|
+
--colors-zinc-900: #18181b;
|
|
493
|
+
--colors-zinc-950: #09090b;
|
|
494
|
+
--colors-gray-50: #f9fafb;
|
|
495
|
+
--colors-gray-100: #f3f4f6;
|
|
496
|
+
--colors-gray-200: #e5e7eb;
|
|
497
|
+
--colors-gray-300: #d1d5db;
|
|
498
|
+
--colors-gray-400: #9ca3af;
|
|
499
|
+
--colors-gray-500: #6b7280;
|
|
500
|
+
--colors-gray-600: #4b5563;
|
|
501
|
+
--colors-gray-700: #374151;
|
|
502
|
+
--colors-gray-800: #1f2937;
|
|
503
|
+
--colors-gray-900: #111827;
|
|
504
|
+
--colors-gray-950: #030712;
|
|
505
|
+
--colors-slate-50: #f8fafc;
|
|
506
|
+
--colors-slate-100: #f1f5f9;
|
|
507
|
+
--colors-slate-200: #e2e8f0;
|
|
508
|
+
--colors-slate-300: #cbd5e1;
|
|
509
|
+
--colors-slate-400: #94a3b8;
|
|
510
|
+
--colors-slate-500: #64748b;
|
|
511
|
+
--colors-slate-600: #475569;
|
|
512
|
+
--colors-slate-700: #334155;
|
|
513
|
+
--colors-slate-800: #1e293b;
|
|
514
|
+
--colors-slate-900: #0f172a;
|
|
515
|
+
--colors-slate-950: #020617;
|
|
516
|
+
--blurs-xs: 4px;
|
|
517
|
+
--blurs-sm: 8px;
|
|
518
|
+
--blurs-md: 12px;
|
|
519
|
+
--blurs-lg: 16px;
|
|
520
|
+
--blurs-xl: 24px;
|
|
521
|
+
--blurs-2xl: 40px;
|
|
522
|
+
--blurs-3xl: 64px;
|
|
523
|
+
--spacing-0: 0rem;
|
|
524
|
+
--spacing-1: 0.25rem;
|
|
525
|
+
--spacing-2: 0.5rem;
|
|
526
|
+
--spacing-3: 0.75rem;
|
|
527
|
+
--spacing-4: 1rem;
|
|
528
|
+
--spacing-5: 1.25rem;
|
|
529
|
+
--spacing-6: 1.5rem;
|
|
530
|
+
--spacing-7: 1.75rem;
|
|
531
|
+
--spacing-8: 2rem;
|
|
532
|
+
--spacing-9: 2.25rem;
|
|
533
|
+
--spacing-10: 2.5rem;
|
|
534
|
+
--spacing-11: 2.75rem;
|
|
535
|
+
--spacing-12: 3rem;
|
|
536
|
+
--spacing-14: 3.5rem;
|
|
537
|
+
--spacing-16: 4rem;
|
|
538
|
+
--spacing-20: 5rem;
|
|
539
|
+
--spacing-24: 6rem;
|
|
540
|
+
--spacing-28: 7rem;
|
|
541
|
+
--spacing-32: 8rem;
|
|
542
|
+
--spacing-36: 9rem;
|
|
543
|
+
--spacing-40: 10rem;
|
|
544
|
+
--spacing-44: 11rem;
|
|
545
|
+
--spacing-48: 12rem;
|
|
546
|
+
--spacing-52: 13rem;
|
|
547
|
+
--spacing-56: 14rem;
|
|
548
|
+
--spacing-60: 15rem;
|
|
549
|
+
--spacing-64: 16rem;
|
|
550
|
+
--spacing-72: 18rem;
|
|
551
|
+
--spacing-80: 20rem;
|
|
552
|
+
--spacing-96: 24rem;
|
|
553
|
+
--spacing-0\.5: 0.125rem;
|
|
554
|
+
--spacing-1\.5: 0.375rem;
|
|
555
|
+
--spacing-2\.5: 0.625rem;
|
|
556
|
+
--spacing-3\.5: 0.875rem;
|
|
557
|
+
--spacing-4\.5: 1.125rem;
|
|
558
|
+
--spacing-5\.5: 1.375rem;
|
|
559
|
+
--sizes-0: 0rem;
|
|
560
|
+
--sizes-1: 0.25rem;
|
|
561
|
+
--sizes-2: 0.5rem;
|
|
562
|
+
--sizes-3: 0.75rem;
|
|
563
|
+
--sizes-4: 1rem;
|
|
564
|
+
--sizes-5: 1.25rem;
|
|
565
|
+
--sizes-6: 1.5rem;
|
|
566
|
+
--sizes-7: 1.75rem;
|
|
567
|
+
--sizes-8: 2rem;
|
|
568
|
+
--sizes-9: 2.25rem;
|
|
569
|
+
--sizes-10: 2.5rem;
|
|
570
|
+
--sizes-11: 2.75rem;
|
|
571
|
+
--sizes-12: 3rem;
|
|
572
|
+
--sizes-14: 3.5rem;
|
|
573
|
+
--sizes-16: 4rem;
|
|
574
|
+
--sizes-20: 5rem;
|
|
575
|
+
--sizes-24: 6rem;
|
|
576
|
+
--sizes-28: 7rem;
|
|
577
|
+
--sizes-32: 8rem;
|
|
578
|
+
--sizes-36: 9rem;
|
|
579
|
+
--sizes-40: 10rem;
|
|
580
|
+
--sizes-44: 11rem;
|
|
581
|
+
--sizes-48: 12rem;
|
|
582
|
+
--sizes-52: 13rem;
|
|
583
|
+
--sizes-56: 14rem;
|
|
584
|
+
--sizes-60: 15rem;
|
|
585
|
+
--sizes-64: 16rem;
|
|
586
|
+
--sizes-72: 18rem;
|
|
587
|
+
--sizes-80: 20rem;
|
|
588
|
+
--sizes-96: 24rem;
|
|
589
|
+
--sizes-0\.5: 0.125rem;
|
|
590
|
+
--sizes-1\.5: 0.375rem;
|
|
591
|
+
--sizes-2\.5: 0.625rem;
|
|
592
|
+
--sizes-3\.5: 0.875rem;
|
|
593
|
+
--sizes-4\.5: 1.125rem;
|
|
594
|
+
--sizes-5\.5: 1.375rem;
|
|
595
|
+
--sizes-xs: 20rem;
|
|
596
|
+
--sizes-sm: 24rem;
|
|
597
|
+
--sizes-md: 28rem;
|
|
598
|
+
--sizes-lg: 32rem;
|
|
599
|
+
--sizes-xl: 36rem;
|
|
600
|
+
--sizes-2xl: 42rem;
|
|
601
|
+
--sizes-3xl: 48rem;
|
|
602
|
+
--sizes-4xl: 56rem;
|
|
603
|
+
--sizes-5xl: 64rem;
|
|
604
|
+
--sizes-6xl: 72rem;
|
|
605
|
+
--sizes-7xl: 80rem;
|
|
606
|
+
--sizes-8xl: 90rem;
|
|
607
|
+
--sizes-prose: 65ch;
|
|
608
|
+
--sizes-full: 100%;
|
|
609
|
+
--sizes-min: min-content;
|
|
610
|
+
--sizes-max: max-content;
|
|
611
|
+
--sizes-fit: fit-content;
|
|
612
|
+
--sizes-breakpoint-2xl: 1536px;
|
|
613
|
+
--sizes-breakpoint-sm: 480px;
|
|
614
|
+
--sizes-breakpoint-md: 768px;
|
|
615
|
+
--sizes-breakpoint-lg: 960px;
|
|
616
|
+
--sizes-breakpoint-xl: 1280px;
|
|
617
|
+
--animations-spin: spin 1s linear infinite;
|
|
618
|
+
--animations-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
619
|
+
--animations-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
620
|
+
--animations-bounce: bounce 1s infinite;
|
|
621
|
+
--font-sizes-32: 2rem;
|
|
622
|
+
--font-sizes-2xs: 0.5rem;
|
|
623
|
+
--font-sizes-xs: 0.75rem;
|
|
624
|
+
--font-sizes-sm: 0.875rem;
|
|
625
|
+
--font-sizes-md: 1rem;
|
|
626
|
+
--font-sizes-lg: 1.125rem;
|
|
627
|
+
--font-sizes-xl: 1.25rem;
|
|
628
|
+
--font-sizes-2xl: 1.5rem;
|
|
629
|
+
--font-sizes-3xl: 1.875rem;
|
|
630
|
+
--font-sizes-4xl: 2.25rem;
|
|
631
|
+
--font-sizes-5xl: 3rem;
|
|
632
|
+
--font-sizes-6xl: 3.75rem;
|
|
633
|
+
--font-sizes-7xl: 4.5rem;
|
|
634
|
+
--font-sizes-8xl: 6rem;
|
|
635
|
+
--font-sizes-9xl: 8rem;
|
|
636
|
+
--fonts-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
637
|
+
--fonts-sans: var(--chaeditor-font-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
|
|
638
|
+
--fonts-sans-ja: var(--chaeditor-font-sans-ja, system-ui, -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif);
|
|
639
|
+
--fonts-mono: var(--chaeditor-font-mono, var(--font-d2coding), 'D2Coding', 'SFMono-Regular', 'JetBrains Mono', Consolas, 'Liberation Mono', monospace);
|
|
640
|
+
--shadows-2xs: 0 1px rgb(0 0 0 / 0.05);
|
|
641
|
+
--shadows-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
642
|
+
--shadows-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
643
|
+
--shadows-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
644
|
+
--shadows-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
645
|
+
--shadows-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
646
|
+
--shadows-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
|
647
|
+
--shadows-inset-2xs: inset 0 1px rgb(0 0 0 / 0.05);
|
|
648
|
+
--shadows-inset-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
|
|
649
|
+
--shadows-inset-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
|
|
650
|
+
--shadows-floating: 0 18px 32px rgb(15 23 42 / 0.18);
|
|
651
|
+
--breakpoints-2xl: 1536px;
|
|
652
|
+
--breakpoints-sm: 480px;
|
|
653
|
+
--breakpoints-md: 768px;
|
|
654
|
+
--breakpoints-lg: 960px;
|
|
655
|
+
--breakpoints-xl: 1280px;
|
|
656
|
+
--colors-surface: var(--chaeditor-color-surface, #ffffff);
|
|
657
|
+
--colors-app-backdrop: var(--colors-zinc-50);
|
|
658
|
+
--colors-surface-muted: var(--chaeditor-color-surface-muted, #f4f4f5);
|
|
659
|
+
--colors-surface-strong: var(--chaeditor-color-surface-strong, #e4e4e7);
|
|
660
|
+
--colors-text: var(--chaeditor-color-text, #18181b);
|
|
661
|
+
--colors-muted: var(--chaeditor-color-muted, #71717a);
|
|
662
|
+
--colors-border: var(--chaeditor-color-border, #d4d4d8);
|
|
663
|
+
--colors-border-strong: var(--chaeditor-color-border-strong, #a1a1aa);
|
|
664
|
+
--colors-primary: var(--chaeditor-color-primary, #3b82f6);
|
|
665
|
+
--colors-primary-subtle: var(--chaeditor-color-primary-subtle, #eff6ff);
|
|
666
|
+
--colors-primary-muted: var(--chaeditor-color-primary-muted, #dbeafe);
|
|
667
|
+
--colors-primary-contrast: var(--chaeditor-color-primary-contrast, #ffffff);
|
|
668
|
+
--colors-primary-hover: var(--chaeditor-color-primary-hover, #2563eb);
|
|
669
|
+
--colors-focus-ring: var(--chaeditor-color-focus-ring, #dbeafe);
|
|
670
|
+
--colors-overlay-backdrop: var(--chaeditor-color-overlay-backdrop, rgb(15 23 42 / 0.86));
|
|
671
|
+
--colors-text-subtle: var(--chaeditor-color-text-subtle, #52525b);
|
|
672
|
+
--colors-success: var(--chaeditor-color-success, #22c55e);
|
|
673
|
+
--colors-error: var(--chaeditor-color-error, #ef4444);
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
[data-theme="dark"] {
|
|
677
|
+
--colors-surface: var(--chaeditor-color-surface, #18181b);
|
|
678
|
+
--colors-app-backdrop: var(--colors-zinc-950);
|
|
679
|
+
--colors-surface-muted: var(--chaeditor-color-surface-muted, #27272a);
|
|
680
|
+
--colors-surface-strong: var(--chaeditor-color-surface-strong, #3f3f46);
|
|
681
|
+
--colors-text: var(--chaeditor-color-text, #fafafa);
|
|
682
|
+
--colors-muted: var(--chaeditor-color-muted, #a1a1aa);
|
|
683
|
+
--colors-border: var(--chaeditor-color-border, #52525b);
|
|
684
|
+
--colors-border-strong: var(--chaeditor-color-border-strong, #71717a);
|
|
685
|
+
--colors-primary: var(--chaeditor-color-primary, #93c5fd);
|
|
686
|
+
--colors-primary-subtle: var(--chaeditor-color-primary-subtle, #1e3a8a);
|
|
687
|
+
--colors-primary-muted: var(--chaeditor-color-primary-muted, #1e40af);
|
|
688
|
+
--colors-primary-contrast: var(--chaeditor-color-primary-contrast, #18181b);
|
|
689
|
+
--colors-primary-hover: var(--chaeditor-color-primary-hover, #bfdbfe);
|
|
690
|
+
--colors-focus-ring: var(--chaeditor-color-focus-ring, #1e3a8a);
|
|
691
|
+
--colors-overlay-backdrop: var(--chaeditor-color-overlay-backdrop, rgb(9 9 11 / 0.82));
|
|
692
|
+
--colors-text-subtle: var(--chaeditor-color-text-subtle, #d4d4d8);
|
|
693
|
+
--colors-success: var(--chaeditor-color-success, #4ade80);
|
|
694
|
+
--colors-error: var(--chaeditor-color-error, #f87171)
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
@keyframes spin {
|
|
698
|
+
to {
|
|
699
|
+
transform: rotate(360deg);
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
@keyframes ping {
|
|
704
|
+
75%,100% {
|
|
705
|
+
transform: scale(2);
|
|
706
|
+
opacity: 0;
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
@keyframes pulse {
|
|
711
|
+
50% {
|
|
712
|
+
opacity: 0.5;
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
@keyframes bounce {
|
|
717
|
+
0%,100% {
|
|
718
|
+
transform: translateY(-25%);
|
|
719
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
50% {
|
|
723
|
+
transform: none;
|
|
724
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
@layer utilities{
|
|
730
|
+
|
|
731
|
+
.bd_\[1px_solid_var\(--colors-border\)\] {
|
|
732
|
+
border: 1px solid var(--colors-border);
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.p_5 {
|
|
736
|
+
padding: var(--spacing-5);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.bg_surface {
|
|
740
|
+
background: var(--colors-surface);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.bg_surfaceMuted {
|
|
744
|
+
background: var(--colors-surface-muted);
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.p_6 {
|
|
748
|
+
padding: var(--spacing-6);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.p_7 {
|
|
752
|
+
padding: var(--spacing-7);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.bd_\[1px_solid_var\(--chaeditor-color-border\,\#d4d4d8\)\] {
|
|
756
|
+
border: 1px solid var(--chaeditor-color-border,#d4d4d8);
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.bg_primarySubtle {
|
|
760
|
+
background: var(--colors-primary-subtle);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.bg_\[rgba\(15\,23\,42\,0\.52\)\] {
|
|
764
|
+
background: rgba(15,23,42,0.52);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.bg_\[\#ccfbf1\] {
|
|
768
|
+
background: #ccfbf1;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.bg_\[\#ecfeff\] {
|
|
772
|
+
background: #ecfeff;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.bg_\[\#f0fdfa\] {
|
|
776
|
+
background: #f0fdfa;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.bg_\[\#ffffff\] {
|
|
780
|
+
background: #ffffff;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.bg_\[\#f3e8ff\] {
|
|
784
|
+
background: #f3e8ff;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.bg_\[\#faf5ff\] {
|
|
788
|
+
background: #faf5ff;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.bg_\[rgba\(76\,29\,149\,0\.18\)\] {
|
|
792
|
+
background: rgba(76,29,149,0.18);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.bg_\[\#eff6ff\] {
|
|
796
|
+
background: #eff6ff;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.bg_\[\#f8fbff\] {
|
|
800
|
+
background: #f8fbff;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.bg_\[rgba\(15\,23\,42\,0\.42\)\] {
|
|
804
|
+
background: rgba(15,23,42,0.42);
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.bg_\[\#f0f9ff\] {
|
|
808
|
+
background: #f0f9ff;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.bg_\[\#f8fcff\] {
|
|
812
|
+
background: #f8fcff;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.bg_\[rgba\(8\,47\,73\,0\.34\)\] {
|
|
816
|
+
background: rgba(8,47,73,0.34);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.p_4 {
|
|
820
|
+
padding: var(--spacing-4);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.p_0 {
|
|
824
|
+
padding: var(--spacing-0);
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.bg_transparent {
|
|
828
|
+
background: var(--colors-transparent);
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.p_8 {
|
|
832
|
+
padding: var(--spacing-8);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.m_0 {
|
|
836
|
+
margin: var(--spacing-0);
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.bg_\[linear-gradient\(180deg\,_\#1D1E23\,_\#111216\)\] {
|
|
840
|
+
background: linear-gradient(180deg, #1D1E23, #111216);
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.bd_\[1px_solid_var\(--colors-primary-muted\)\] {
|
|
844
|
+
border: 1px solid var(--colors-primary-muted);
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.bd_\[0\] {
|
|
848
|
+
border: 0;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.bg_border {
|
|
852
|
+
background: var(--colors-border);
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.bg_\[\#ff5f57\] {
|
|
856
|
+
background: #ff5f57;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.bg_\[\#febc2e\] {
|
|
860
|
+
background: #febc2e;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.bg_\[\#28c840\] {
|
|
864
|
+
background: #28c840;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.p_\[1rem\] {
|
|
868
|
+
padding: 1rem;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.bg_primary {
|
|
872
|
+
background: var(--colors-primary);
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.bg_text {
|
|
876
|
+
background: var(--colors-text);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.inset_0 {
|
|
880
|
+
inset: var(--spacing-0);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.bg_gray\.50 {
|
|
884
|
+
background: var(--colors-gray-50);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.bg_\[linear-gradient\(to_bottom\,_rgb\(15_23_42_\/_0\.72\)_0\%\,_transparent_100\%\)\] {
|
|
888
|
+
background: linear-gradient(to bottom, rgb(15 23 42 / 0.72) 0%, transparent 100%);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.anim_\[image-viewer-slide-next_360ms_cubic-bezier\(0\.22\,_1\,_0\.36\,_1\)\] {
|
|
892
|
+
animation: image-viewer-slide-next 360ms cubic-bezier(0.22, 1, 0.36, 1);
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.anim_\[image-viewer-slide-previous_360ms_cubic-bezier\(0\.22\,_1\,_0\.36\,_1\)\] {
|
|
896
|
+
animation: image-viewer-slide-previous 360ms cubic-bezier(0.22, 1, 0.36, 1);
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.bd_\[1px_solid_rgb\(255_255_255_\/_0\.24\)\] {
|
|
900
|
+
border: 1px solid rgb(255 255 255 / 0.24);
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.anim_\[image-viewer-tooltip-fade_180ms_ease-out\] {
|
|
904
|
+
animation: image-viewer-tooltip-fade 180ms ease-out;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.bd_\[2px_solid_transparent\] {
|
|
908
|
+
border: 2px solid transparent;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.bg_\[linear-gradient\(120deg\,_rgba\(148\,163\,184\,0\.14\)\,_rgba\(148\,163\,184\,0\.24\)\,_rgba\(148\,163\,184\,0\.14\)\)\] {
|
|
912
|
+
background: linear-gradient(120deg, rgba(148,163,184,0.14), rgba(148,163,184,0.24), rgba(148,163,184,0.14));
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.m_\[-1px\] {
|
|
916
|
+
margin: -1px;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.bg_\[rgba\(100\,_116\,_139\,_0\.2\)\] {
|
|
920
|
+
background: rgba(100, 116, 139, 0.2);
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
.bg_black {
|
|
924
|
+
background: var(--colors-black);
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.p_2 {
|
|
928
|
+
padding: var(--spacing-2);
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
.p_3 {
|
|
932
|
+
padding: var(--spacing-3);
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.bd_none {
|
|
936
|
+
border: var(--borders-none);
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.gap_3 {
|
|
940
|
+
gap: var(--spacing-3);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.gap_4 {
|
|
944
|
+
gap: var(--spacing-4);
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
.bdr_xl {
|
|
948
|
+
border-radius: var(--radii-xl);
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.gap_2 {
|
|
952
|
+
gap: var(--spacing-2);
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.bdr_full {
|
|
956
|
+
border-radius: var(--radii-full);
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.px_3 {
|
|
960
|
+
padding-inline: var(--spacing-3);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.ov_hidden {
|
|
964
|
+
overflow: hidden;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.bdr_lg {
|
|
968
|
+
border-radius: var(--radii-lg);
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.px_6 {
|
|
972
|
+
padding-inline: var(--spacing-6);
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.py_10 {
|
|
976
|
+
padding-block: var(--spacing-10);
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.gap_5 {
|
|
980
|
+
gap: var(--spacing-5);
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.mx_auto {
|
|
984
|
+
margin-inline: auto;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.gap_6 {
|
|
988
|
+
gap: var(--spacing-6);
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.bdr_2xl {
|
|
992
|
+
border-radius: var(--radii-2xl);
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.bd-c_primary {
|
|
996
|
+
border-color: var(--colors-primary);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.bd-bs_\[1px_solid_var\(--colors-border\)\] {
|
|
1000
|
+
border-block-start: 1px solid var(--colors-border);
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.px_7 {
|
|
1004
|
+
padding-inline: var(--spacing-7);
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.py_6 {
|
|
1008
|
+
padding-block: var(--spacing-6);
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.py_3 {
|
|
1012
|
+
padding-block: var(--spacing-3);
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.px_4 {
|
|
1016
|
+
padding-inline: var(--spacing-4);
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.bdr_md {
|
|
1020
|
+
border-radius: var(--radii-md);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.px_1\.5 {
|
|
1024
|
+
padding-inline: var(--spacing-1\.5);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.py_0\.5 {
|
|
1028
|
+
padding-block: var(--spacing-0\.5);
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.px_2\.5 {
|
|
1032
|
+
padding-inline: var(--spacing-2\.5);
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.py_1\.5 {
|
|
1036
|
+
padding-block: var(--spacing-1\.5);
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.bd-w_1px {
|
|
1040
|
+
border-width: 1px;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.bd-c_border {
|
|
1044
|
+
border-color: var(--colors-border);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.gap_1 {
|
|
1048
|
+
gap: var(--spacing-1);
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.li-s_disc {
|
|
1052
|
+
list-style: disc;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.py_1 {
|
|
1056
|
+
padding-block: var(--spacing-1);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.my_6 {
|
|
1060
|
+
margin-block: var(--spacing-6);
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.border-style_solid {
|
|
1064
|
+
border-style: solid;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.bdr_3xl {
|
|
1068
|
+
border-radius: var(--radii-3xl);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.bd-c_\[rgba\(255\,255\,255\,0\.08\)\] {
|
|
1072
|
+
border-color: rgba(255,255,255,0.08);
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.bd-c_\[\#0f766e\] {
|
|
1076
|
+
border-color: #0f766e;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.bd-c_\[rgba\(45\,212\,191\,0\.28\)\] {
|
|
1080
|
+
border-color: rgba(45,212,191,0.28);
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.bdr_\[999px\] {
|
|
1084
|
+
border-radius: 999px;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.bd-c_\[\#7c3aed\] {
|
|
1088
|
+
border-color: #7c3aed;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.bd-c_\[\#a855f7\] {
|
|
1092
|
+
border-color: #a855f7;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.bdr_\[2rem\] {
|
|
1096
|
+
border-radius: 2rem;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.bd-c_\[rgba\(168\,85\,247\,0\.28\)\] {
|
|
1100
|
+
border-color: rgba(168,85,247,0.28);
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.bd-c_\[\#2563eb\] {
|
|
1104
|
+
border-color: #2563eb;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.bd-c_\[\#93c5fd\] {
|
|
1108
|
+
border-color: #93c5fd;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.bd-c_\[rgba\(37\,99\,235\,0\.24\)\] {
|
|
1112
|
+
border-color: rgba(37,99,235,0.24);
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.bd-c_\[\#0369a1\] {
|
|
1116
|
+
border-color: #0369a1;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.bd-c_\[\#7dd3fc\] {
|
|
1120
|
+
border-color: #7dd3fc;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.bd-c_\[rgba\(3\,105\,161\,0\.24\)\] {
|
|
1124
|
+
border-color: rgba(3,105,161,0.24);
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.py_5 {
|
|
1128
|
+
padding-block: var(--spacing-5);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.gap_0 {
|
|
1132
|
+
gap: var(--spacing-0);
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
.li-s_none {
|
|
1136
|
+
list-style: none;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
.flex_none {
|
|
1140
|
+
flex: none;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.bd-b_\[1px_solid_rgb\(255_255_255_\/_0\.08\)\] {
|
|
1144
|
+
border-bottom: 1px solid rgb(255 255 255 / 0.08);
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
.px_5 {
|
|
1148
|
+
padding-inline: var(--spacing-5);
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.py_4 {
|
|
1152
|
+
padding-block: var(--spacing-4);
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
.td_underline {
|
|
1156
|
+
text-decoration: underline;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.bd-l_\[4px_solid_var\(--colors-primary\)\] {
|
|
1160
|
+
border-left: 4px solid var(--colors-primary);
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.bdr_xs {
|
|
1164
|
+
border-radius: var(--radii-xs);
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
.li-s_decimal {
|
|
1168
|
+
list-style: decimal;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.px_\[0\.375rem\] {
|
|
1172
|
+
padding-inline: 0.375rem;
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.py_\[0\.125rem\] {
|
|
1176
|
+
padding-block: 0.125rem;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
.my_8 {
|
|
1180
|
+
margin-block: var(--spacing-8);
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.px_\[0\.25rem\] {
|
|
1184
|
+
padding-inline: 0.25rem;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.py_\[0\.08rem\] {
|
|
1188
|
+
padding-block: 0.08rem;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.bdr_\[0\.35rem\] {
|
|
1192
|
+
border-radius: 0.35rem;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.bdr_\[1rem\] {
|
|
1196
|
+
border-radius: 1rem;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.px_\[1rem\] {
|
|
1200
|
+
padding-inline: 1rem;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.py_\[0\.75rem\] {
|
|
1204
|
+
padding-block: 0.75rem;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.bd-b_\[1px_solid_rgb\(255_255_255_\/_0\.1\)\] {
|
|
1208
|
+
border-bottom: 1px solid rgb(255 255 255 / 0.1);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.gap_\[0\.45rem\] {
|
|
1212
|
+
gap: 0.45rem;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.bdr_sm {
|
|
1216
|
+
border-radius: var(--radii-sm);
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.px_0 {
|
|
1220
|
+
padding-inline: var(--spacing-0);
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.trs_transform {
|
|
1224
|
+
transition-property: var(--transition-prop, transform);
|
|
1225
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
1226
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.trs_colors {
|
|
1230
|
+
transition-property: var(--transition-prop, color, background-color, border-color, outline-color, text-decoration-color, fill, stroke);
|
|
1231
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
1232
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.px_2 {
|
|
1236
|
+
padding-inline: var(--spacing-2);
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
.bd-c_transparent {
|
|
1240
|
+
border-color: var(--colors-transparent);
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
.trs_\[transform_180ms_ease\] {
|
|
1244
|
+
transition: transform 180ms ease;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.flex_1 {
|
|
1248
|
+
flex: 1 1 0%;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.place-items_center {
|
|
1252
|
+
place-items: center;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.trs_\[transform_140ms_ease-out\] {
|
|
1256
|
+
transition: transform 140ms ease-out;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.trs_\[all_0\.2s\] {
|
|
1260
|
+
transition: all 0.2s;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
.py_2 {
|
|
1264
|
+
padding-block: var(--spacing-2);
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.td_none {
|
|
1268
|
+
text-decoration: none;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
.trs_common {
|
|
1272
|
+
transition-property: var(--transition-prop, color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter);
|
|
1273
|
+
transition-timing-function: var(--transition-easing, cubic-bezier(0.4, 0, 0.2, 1));
|
|
1274
|
+
transition-duration: var(--transition-duration, 150ms);
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
.bd-w_0 {
|
|
1278
|
+
border-width: 0;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1281
|
+
.scrs-t_\[x_mandatory\] {
|
|
1282
|
+
scroll-snap-type: x mandatory;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
.bd-c_borderStrong {
|
|
1286
|
+
border-color: var(--colors-border-strong);
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
.trs_\[left_200ms_ease\,_width_200ms_ease\] {
|
|
1290
|
+
transition: left 200ms ease, width 200ms ease;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.ov_visible {
|
|
1294
|
+
overflow: visible;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
.gap_1\.5 {
|
|
1298
|
+
gap: var(--spacing-1\.5);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.trs_\[color_160ms_ease\] {
|
|
1302
|
+
transition: color 160ms ease;
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
.bd-c_red\.200 {
|
|
1306
|
+
border-color: var(--colors-red-200);
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.bd-c_blue\.100 {
|
|
1310
|
+
border-color: var(--colors-blue-100);
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
.bd-c_green\.200 {
|
|
1314
|
+
border-color: var(--colors-green-200);
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
.py_2\.5 {
|
|
1318
|
+
padding-block: var(--spacing-2\.5);
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.bd-c_error {
|
|
1322
|
+
border-color: var(--colors-error);
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.border-style_dashed {
|
|
1326
|
+
border-style: dashed;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.trs_\[background-color_160ms_ease\,_border-color_160ms_ease\] {
|
|
1330
|
+
transition: background-color 160ms ease, border-color 160ms ease;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
.px_8 {
|
|
1334
|
+
padding-inline: var(--spacing-8);
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
.gap_8 {
|
|
1338
|
+
gap: var(--spacing-8);
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.d_flex {
|
|
1342
|
+
display: flex;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
.ai_center {
|
|
1346
|
+
align-items: center;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
.flex-wrap_wrap {
|
|
1350
|
+
flex-wrap: wrap;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.d_grid {
|
|
1354
|
+
display: grid;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.grid-tc_1fr {
|
|
1358
|
+
grid-template-columns: 1fr;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1361
|
+
.ac_start {
|
|
1362
|
+
align-content: start;
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.bg-c_surface {
|
|
1366
|
+
background-color: var(--colors-surface);
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.c_primary {
|
|
1370
|
+
color: var(--colors-primary);
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.fs_xs {
|
|
1374
|
+
font-size: var(--font-sizes-xs);
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.fw_semibold {
|
|
1378
|
+
font-weight: var(--font-weights-semibold);
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.ls_wide {
|
|
1382
|
+
letter-spacing: var(--letter-spacings-wide);
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.tt_uppercase {
|
|
1386
|
+
text-transform: uppercase;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.c_textSubtle {
|
|
1390
|
+
color: var(--colors-text-subtle);
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.fs_sm {
|
|
1394
|
+
font-size: var(--font-sizes-sm);
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.lh_relaxed {
|
|
1398
|
+
line-height: var(--line-heights-relaxed);
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.d_inline-flex {
|
|
1402
|
+
display: inline-flex;
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.bg-c_primarySubtle {
|
|
1406
|
+
background-color: var(--colors-primary-subtle);
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.bg-c_surfaceStrong {
|
|
1410
|
+
background-color: var(--colors-surface-strong);
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.bg-c_\[rgba\(180\,83\,9\,0\.12\)\] {
|
|
1414
|
+
background-color: rgba(180,83,9,0.12);
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.c_\[\#9a3412\] {
|
|
1418
|
+
color: #9a3412;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.bg-c_surfaceMuted {
|
|
1422
|
+
background-color: var(--colors-surface-muted);
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.obj-f_cover {
|
|
1426
|
+
object-fit: cover;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.d_block {
|
|
1430
|
+
display: block;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.ai_start {
|
|
1434
|
+
align-items: start;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.c_muted {
|
|
1438
|
+
color: var(--colors-muted);
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.c_text {
|
|
1442
|
+
color: var(--colors-text);
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.ls_widest {
|
|
1446
|
+
letter-spacing: var(--letter-spacings-widest);
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.fs_4xl {
|
|
1450
|
+
font-size: var(--font-sizes-4xl);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.fw_bold {
|
|
1454
|
+
font-weight: var(--font-weights-bold);
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.lh_tight {
|
|
1458
|
+
line-height: var(--line-heights-tight);
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.fs_lg {
|
|
1462
|
+
font-size: var(--font-sizes-lg);
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.lh_loose {
|
|
1466
|
+
line-height: var(--line-heights-loose);
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
.fs_2xl {
|
|
1470
|
+
font-size: var(--font-sizes-2xl);
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
.bx-sh_sm {
|
|
1474
|
+
box-shadow: var(--shadows-sm);
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.fs_xl {
|
|
1478
|
+
font-size: var(--font-sizes-xl);
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.bx-sh_\[0_0_0_1px_var\(--colors-primary-subtle\)\] {
|
|
1482
|
+
box-shadow: 0_0_0_1px_var(--colors-primary-subtle);
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.bg-c_\[var\(--chaeditor-color-surface\,\#ffffff\)\] {
|
|
1486
|
+
background-color: var(--chaeditor-color-surface,#ffffff);
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.jc_space-between {
|
|
1490
|
+
justify-content: space-between;
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
.c_\[var\(--chaeditor-color-text-subtle\,\#52525b\)\] {
|
|
1494
|
+
color: var(--chaeditor-color-text-subtle,#52525b);
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.c_\[var\(--chaeditor-color-text\,\#18181b\)\] {
|
|
1498
|
+
color: var(--chaeditor-color-text,#18181b);
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.ff_\[var\(--chaeditor-font-sans\,system-ui\,_-apple-system\,_BlinkMacSystemFont\,_\'Segoe_UI\'\,_sans-serif\)\] {
|
|
1502
|
+
font-family: var(--chaeditor-font-sans,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
.bg-c_\[var\(--chaeditor-color-surface-muted\,\#f4f4f5\)\] {
|
|
1506
|
+
background-color: var(--chaeditor-color-surface-muted,#f4f4f5);
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
.ff_\[var\(--chaeditor-font-mono\,var\(--font-d2coding\)\,_\'D2Coding\'\,_\'SFMono-Regular\'\,_\'JetBrains_Mono\'\,_Consolas\,_\'Liberation_Mono\'\,_monospace\)\] {
|
|
1510
|
+
font-family: var(--chaeditor-font-mono,var(--font-d2coding), 'D2Coding', 'SFMono-Regular', 'JetBrains Mono', Consolas, 'Liberation Mono', monospace);
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.bg-c_\[var\(--chaeditor-color-surface-strong\,\#e4e4e7\)\] {
|
|
1514
|
+
background-color: var(--chaeditor-color-surface-strong,#e4e4e7);
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.bg-c_\[var\(--chaeditor-color-primary\,\#3b82f6\)\] {
|
|
1518
|
+
background-color: var(--chaeditor-color-primary,#3b82f6);
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.c_\[var\(--chaeditor-color-primary-contrast\,\#ffffff\)\] {
|
|
1522
|
+
color: var(--chaeditor-color-primary-contrast,#ffffff);
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.jc_center {
|
|
1526
|
+
justify-content: center;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.ff_mono {
|
|
1530
|
+
font-family: var(--fonts-mono);
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
.ls_\[0\.12em\] {
|
|
1534
|
+
letter-spacing: 0.12em;
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
.lh_\[1\.6\] {
|
|
1538
|
+
line-height: 1.6;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
.ai_stretch {
|
|
1542
|
+
align-items: stretch;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.fw_medium {
|
|
1546
|
+
font-weight: var(--font-weights-medium);
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
.ps_5 {
|
|
1550
|
+
padding-inline-start: var(--spacing-5);
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1553
|
+
.pbs_1 {
|
|
1554
|
+
padding-block-start: var(--spacing-1);
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
.bd-cl_collapse {
|
|
1558
|
+
border-collapse: collapse;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.bx-sh_lg {
|
|
1562
|
+
box-shadow: var(--shadows-lg);
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.bx-sh_2xl {
|
|
1566
|
+
box-shadow: var(--shadows-2xl);
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.z_\[10000\] {
|
|
1570
|
+
z-index: 10000;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.bg-c_\[rgba\(15\,23\,42\,0\.88\)\] {
|
|
1574
|
+
background-color: rgba(15,23,42,0.88);
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.c_white {
|
|
1578
|
+
color: var(--colors-white);
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.bx-sh_\[0_12px_28px_rgba\(15\,23\,42\,0\.28\)\] {
|
|
1582
|
+
box-shadow: 0 12px 28px rgba(15,23,42,0.28);
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
.c_\[\#134e4a\] {
|
|
1586
|
+
color: #134e4a;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.c_\[\#0f766e\] {
|
|
1590
|
+
color: #0f766e;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.c_\[\#4c1d95\] {
|
|
1594
|
+
color: #4c1d95;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.bx-sh_\[0_8px_24px_rgba\(124\,58\,237\,0\.12\)\] {
|
|
1598
|
+
box-shadow: 0 8px 24px rgba(124,58,237,0.12);
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.bx-sh_\[0_18px_40px_rgba\(124\,58\,237\,0\.14\)\] {
|
|
1602
|
+
box-shadow: 0 18px 40px rgba(124,58,237,0.14);
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.c_\[\#7c3aed\] {
|
|
1606
|
+
color: #7c3aed;
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.bx-sh_\[0_30px_60px_rgba\(124\,58\,237\,0\.16\)\] {
|
|
1610
|
+
box-shadow: 0 30px 60px rgba(124,58,237,0.16);
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.bg-c_\[rgba\(15\,23\,42\,0\.9\)\] {
|
|
1614
|
+
background-color: rgba(15,23,42,0.9);
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.c_\[\#1e3a8a\] {
|
|
1618
|
+
color: #1e3a8a;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.bx-sh_\[0_16px_32px_rgba\(37\,99\,235\,0\.12\)\] {
|
|
1622
|
+
box-shadow: 0 16px 32px rgba(37,99,235,0.12);
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.c_\[\#2563eb\] {
|
|
1626
|
+
color: #2563eb;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.bx-sh_\[0_24px_48px_rgba\(37\,99\,235\,0\.14\)\] {
|
|
1630
|
+
box-shadow: 0 24px 48px rgba(37,99,235,0.14);
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.c_\[\#0c4a6e\] {
|
|
1634
|
+
color: #0c4a6e;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.bx-sh_\[0_12px_28px_rgba\(3\,105\,161\,0\.12\)\] {
|
|
1638
|
+
box-shadow: 0 12px 28px rgba(3,105,161,0.12);
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.c_\[\#0369a1\] {
|
|
1642
|
+
color: #0369a1;
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.bx-sh_\[0_20px_40px_rgba\(3\,105\,161\,0\.12\)\] {
|
|
1646
|
+
box-shadow: 0 20px 40px rgba(3,105,161,0.12);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.justify-items_start {
|
|
1650
|
+
justify-items: start;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.pos_relative {
|
|
1654
|
+
position: relative;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.bx-sh_md {
|
|
1658
|
+
box-shadow: var(--shadows-md);
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.pos_absolute {
|
|
1662
|
+
position: absolute;
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.lh_none {
|
|
1666
|
+
line-height: var(--line-heights-none);
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.content_Branded_tooltip_shell {
|
|
1670
|
+
content: Branded tooltip shell;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.grid-tc_minmax\(6rem\,_7\.5rem\)_minmax\(0\,_1fr\) {
|
|
1674
|
+
grid-template-columns: minmax(6rem, 7.5rem) minmax(0, 1fr);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.ai_flex-start {
|
|
1678
|
+
align-items: flex-start;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.bg-c_\[currentColor\] {
|
|
1682
|
+
background-color: currentColor;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.bg-c_\[rgba\(22\,163\,74\,0\.12\)\] {
|
|
1686
|
+
background-color: rgba(22,163,74,0.12);
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.c_\[\#15803d\] {
|
|
1690
|
+
color: #15803d;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
.bx-sh_\[0_1rem_1\.75rem_rgb\(15_23_42_\/_0\.1\)\] {
|
|
1694
|
+
box-shadow: 0 1rem 1.75rem rgb(15 23 42 / 0.1);
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
.c_\[rgb\(226_232_240_\/_0\.92\)\] {
|
|
1698
|
+
color: rgb(226 232 240 / 0.92);
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.c_\[rgb\(148_163_184\)\] {
|
|
1702
|
+
color: rgb(148 163 184);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.lh_\[1\.75\] {
|
|
1706
|
+
line-height: 1.75;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.c_\[rgb\(226_232_240_\/_0\.94\)\] {
|
|
1710
|
+
color: rgb(226 232 240 / 0.94);
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
.cg_6 {
|
|
1714
|
+
column-gap: var(--spacing-6);
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
.rg_2 {
|
|
1718
|
+
row-gap: var(--spacing-2);
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
.ai_baseline {
|
|
1722
|
+
align-items: baseline;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
.white-space_pre-wrap {
|
|
1726
|
+
white-space: pre-wrap;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
.wb_break-word {
|
|
1730
|
+
word-break: break-word;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
.fs_md {
|
|
1734
|
+
font-size: var(--font-sizes-md);
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
.td-t_\[0\.08em\] {
|
|
1738
|
+
text-decoration-thickness: 0.08em;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
.tu-o_\[0\.18em\] {
|
|
1742
|
+
text-underline-offset: 0.18em;
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
.wb_keep-all {
|
|
1746
|
+
word-break: keep-all;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.fs_\[0\.95em\] {
|
|
1750
|
+
font-size: 0.95em;
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
.c_\[rgb\(248_250_252\)\] {
|
|
1754
|
+
color: rgb(248 250 252);
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
.fs_\[0\.95rem\] {
|
|
1758
|
+
font-size: 0.95rem;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
.fs_\[clamp\(2rem\,_4vw\,_2\.5rem\)\] {
|
|
1762
|
+
font-size: clamp(2rem, 4vw, 2.5rem);
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
.ls_\[-0\.04em\] {
|
|
1766
|
+
letter-spacing: -0.04em;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
.fs_\[clamp\(1\.5rem\,_3vw\,_2rem\)\] {
|
|
1770
|
+
font-size: clamp(1.5rem, 3vw, 2rem);
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
.ls_\[-0\.035em\] {
|
|
1774
|
+
letter-spacing: -0.035em;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.fs_\[clamp\(1\.25rem\,_2\.4vw\,_1\.5rem\)\] {
|
|
1778
|
+
font-size: clamp(1.25rem, 2.4vw, 1.5rem);
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.lh_snug {
|
|
1782
|
+
line-height: var(--line-heights-snug);
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.ls_\[-0\.03em\] {
|
|
1786
|
+
letter-spacing: -0.03em;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.ls_\[-0\.02em\] {
|
|
1790
|
+
letter-spacing: -0.02em;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.d_inline {
|
|
1794
|
+
display: inline;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.bx-sh_\[0_1\.125rem_1\.75rem_rgb\(15_23_42_\/_0\.14\)\] {
|
|
1798
|
+
box-shadow: 0 1.125rem 1.75rem rgb(15 23 42 / 0.14);
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.ls_\[0\.08em\] {
|
|
1802
|
+
letter-spacing: 0.08em;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
.\-webkit-overflow-scrolling_touch {
|
|
1806
|
+
-webkit-overflow-scrolling: touch;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
.bd-sp_0 {
|
|
1810
|
+
border-spacing: var(--spacing-0);
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.cursor_pointer {
|
|
1814
|
+
cursor: pointer;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.op_1 {
|
|
1818
|
+
opacity: 1;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.trf-o_center {
|
|
1822
|
+
transform-origin: center;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.ap_none {
|
|
1826
|
+
appearance: none;
|
|
1827
|
+
-webkit-appearance: none;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.us_none {
|
|
1831
|
+
-webkit-user-select: none;
|
|
1832
|
+
user-select: none;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.ls_\[-0\.01em\] {
|
|
1836
|
+
letter-spacing: -0.01em;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.c_primaryContrast {
|
|
1840
|
+
color: var(--colors-primary-contrast);
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.c_surface {
|
|
1844
|
+
color: var(--colors-surface);
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.fill_true {
|
|
1848
|
+
fill: true;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.fw_\[700\] {
|
|
1852
|
+
font-weight: 700;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.flex-d_column {
|
|
1856
|
+
flex-direction: column;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.fw_\[600\] {
|
|
1860
|
+
font-weight: 600;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.op_0 {
|
|
1864
|
+
opacity: 0;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.c_error {
|
|
1868
|
+
color: var(--colors-error);
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.pos_fixed {
|
|
1872
|
+
position: fixed;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.z_1200 {
|
|
1876
|
+
z-index: 1200;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
.bg-c_\[rgb\(15_23_42_\/_0\.86\)\] {
|
|
1880
|
+
background-color: rgb(15 23 42 / 0.86);
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
.z_5 {
|
|
1884
|
+
z-index: 5;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
.pointer-events_none {
|
|
1888
|
+
pointer-events: none;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.tch-a_none {
|
|
1892
|
+
touch-action: none;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.cursor_grab {
|
|
1896
|
+
cursor: grab;
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
.cursor_grabbing {
|
|
1900
|
+
cursor: grabbing;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.obj-f_contain {
|
|
1904
|
+
object-fit: contain;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.will-change_transform {
|
|
1908
|
+
will-change: transform;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.z_10 {
|
|
1912
|
+
z-index: 10;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.bx-sh_\[0_12px_32px_rgb\(15_23_42_\/_0\.28\)\] {
|
|
1916
|
+
box-shadow: 0 12px 32px rgb(15 23 42 / 0.28);
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
.white-space_nowrap {
|
|
1920
|
+
white-space: nowrap;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
.bg-c_\[rgb\(15_23_42_\/_0\.52\)\] {
|
|
1924
|
+
background-color: rgb(15 23 42 / 0.52);
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
.z_8 {
|
|
1928
|
+
z-index: 8;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.trf_translateY\(-50\%\) {
|
|
1932
|
+
transform: translateY(-50%);
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
.trf_rotate\(180deg\) {
|
|
1936
|
+
transform: rotate(180deg);
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
.trf_\[translateX\(-50\%\)\] {
|
|
1940
|
+
transform: translateX(-50%);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
.bg-c_\[rgb\(15_23_42_\/_0\.75\)\] {
|
|
1944
|
+
background-color: rgb(15 23 42 / 0.75);
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
.bg-c_\[rgb\(15_23_42_\/_0\.92\)\] {
|
|
1948
|
+
background-color: rgb(15 23 42 / 0.92);
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
.z_1300 {
|
|
1952
|
+
z-index: 1300;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
.z_\[2147483647\] {
|
|
1956
|
+
z-index: 2147483647;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
.ta_center {
|
|
1960
|
+
text-align: center;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
.c_zinc\.200 {
|
|
1964
|
+
color: var(--colors-zinc-200);
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
.asp_\[16_\/_9\] {
|
|
1968
|
+
aspect-ratio: 16 / 9;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
.trf_scale\(1\.05\) {
|
|
1972
|
+
transform: scale(1.05);
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
.bg-c_transparent {
|
|
1976
|
+
background-color: var(--colors-transparent);
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.tu-o_\[0\.16em\] {
|
|
1980
|
+
text-underline-offset: 0.16em;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
.va_baseline {
|
|
1984
|
+
vertical-align: baseline;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
.tov_ellipsis {
|
|
1988
|
+
text-overflow: ellipsis;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
.flex-sh_0 {
|
|
1992
|
+
flex-shrink: 0;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
.flex-g_1 {
|
|
1996
|
+
flex-grow: 1;
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
.wb_break-all {
|
|
2000
|
+
word-break: break-all;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
.clip_\[rect\(0\,_0\,_0\,_0\)\] {
|
|
2004
|
+
clip: rect(0, 0, 0, 0);
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
.grid-af_column {
|
|
2008
|
+
grid-auto-flow: column;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
.grid-ac_\[78\%\] {
|
|
2012
|
+
grid-auto-columns: 78%;
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
.scr-bar-w_\[thin\] {
|
|
2016
|
+
scrollbar-width: thin;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
.asp_\[4_\/_5\] {
|
|
2020
|
+
aspect-ratio: 4 / 5;
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
.scr-sa_start {
|
|
2024
|
+
scroll-snap-align: start;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
.bg-c_border {
|
|
2028
|
+
background-color: var(--colors-border);
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
.bg-c_text {
|
|
2032
|
+
background-color: var(--colors-text);
|
|
2033
|
+
}
|
|
2034
|
+
|
|
2035
|
+
.cursor_zoom-in {
|
|
2036
|
+
cursor: zoom-in;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
.va_middle {
|
|
2040
|
+
vertical-align: middle;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
.white-space_normal {
|
|
2044
|
+
white-space: normal;
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
.c_transparent {
|
|
2048
|
+
color: var(--colors-transparent);
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
.tsh_\[0_0_0_transparent\] {
|
|
2052
|
+
text-shadow: 0 0 0 transparent;
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
.clip_rect\(0\,_0\,_0\,_0\) {
|
|
2056
|
+
clip: rect(0, 0, 0, 0);
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.bx-sh_floating {
|
|
2060
|
+
box-shadow: var(--shadows-floating);
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
.z_30 {
|
|
2064
|
+
z-index: 30;
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2067
|
+
.sr_true {
|
|
2068
|
+
position: absolute;
|
|
2069
|
+
width: 1px;
|
|
2070
|
+
height: 1px;
|
|
2071
|
+
padding: 0;
|
|
2072
|
+
margin: -1px;
|
|
2073
|
+
overflow: hidden;
|
|
2074
|
+
clip: rect(0, 0, 0, 0);
|
|
2075
|
+
white-space: nowrap;
|
|
2076
|
+
border-width: 0;
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
.resize_vertical {
|
|
2080
|
+
resize: vertical;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
.resize_none {
|
|
2084
|
+
resize: none;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.c_current {
|
|
2088
|
+
color: var(--colors-current);
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
.z_70 {
|
|
2092
|
+
z-index: 70;
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.bg-c_red\.50 {
|
|
2096
|
+
background-color: var(--colors-red-50);
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
.bg-c_blue\.50 {
|
|
2100
|
+
background-color: var(--colors-blue-50);
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.bg-c_green\.50 {
|
|
2104
|
+
background-color: var(--colors-green-50);
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
.c_blue\.400 {
|
|
2108
|
+
color: var(--colors-blue-400);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.c_success {
|
|
2112
|
+
color: var(--colors-success);
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.bg-c_\[rgba\(15\,23\,42\,0\.92\)\] {
|
|
2116
|
+
background-color: rgba(15,23,42,0.92);
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
.bx-sh_\[0_12px_28px_rgba\(15\,23\,42\,0\.28\)\] {
|
|
2120
|
+
box-shadow: 0_12px_28px_rgba(15,23,42,0.28);
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.z_\[9999\] {
|
|
2124
|
+
z-index: 9999;
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
.d_inline-block {
|
|
2128
|
+
display: inline-block;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.fs_3xl {
|
|
2132
|
+
font-size: var(--font-sizes-3xl);
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
.trf_rotate\(45deg\) {
|
|
2136
|
+
transform: rotate(45deg);
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
.d_inline-grid {
|
|
2140
|
+
display: inline-grid;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2143
|
+
.grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
|
|
2144
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.grid-tc_repeat\(4\,_minmax\(0\,_1fr\)\) {
|
|
2148
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.bx-sh_\[inset_0_0_0_1px_rgba\(15\,_23\,_42\,_0\.08\)\] {
|
|
2152
|
+
box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.flex-d_column-reverse {
|
|
2156
|
+
flex-direction: column-reverse;
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
.rg_4 {
|
|
2160
|
+
row-gap: var(--spacing-4);
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
.grid-tr_\[auto_minmax\(0\,1fr\)\] {
|
|
2164
|
+
grid-template-rows: auto minmax(0,1fr);
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
.d_none {
|
|
2168
|
+
display: none;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
.ta_left {
|
|
2172
|
+
text-align: left;
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.grid-tc_\[1\.5rem_minmax\(0\,1fr\)\] {
|
|
2176
|
+
grid-template-columns: 1.5rem minmax(0,1fr);
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
.as_start {
|
|
2180
|
+
align-self: start;
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2183
|
+
.asp_square {
|
|
2184
|
+
aspect-ratio: var(--aspect-ratios-square);
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
.justify-self_center {
|
|
2188
|
+
justify-self: center;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.order_0 {
|
|
2192
|
+
order: 0;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
.obj-p_center {
|
|
2196
|
+
object-position: center;
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
.order_1 {
|
|
2200
|
+
order: 1;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
.justify-items_center {
|
|
2204
|
+
justify-items: center;
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
.jc_flex-end {
|
|
2208
|
+
justify-content: flex-end;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
.content_Image {
|
|
2212
|
+
content: Image;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.flex-wrap_nowrap {
|
|
2216
|
+
flex-wrap: nowrap;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
.content_Video {
|
|
2220
|
+
content: Video;
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
.bg-c_black {
|
|
2224
|
+
background-color: var(--colors-black);
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
.min-h_8 {
|
|
2228
|
+
min-height: var(--sizes-8);
|
|
2229
|
+
}
|
|
2230
|
+
|
|
2231
|
+
.min-h_40 {
|
|
2232
|
+
min-height: var(--sizes-40);
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
.w_full {
|
|
2236
|
+
width: var(--sizes-full);
|
|
2237
|
+
}
|
|
2238
|
+
|
|
2239
|
+
.h_40 {
|
|
2240
|
+
height: var(--sizes-40);
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
.min-h_dvh {
|
|
2244
|
+
min-height: 100dvh;
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
.max-w_5xl {
|
|
2248
|
+
max-width: var(--sizes-5xl);
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
.max-w_4xl {
|
|
2252
|
+
max-width: var(--sizes-4xl);
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
.max-w_3xl {
|
|
2256
|
+
max-width: var(--sizes-3xl);
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.mt_12 {
|
|
2260
|
+
margin-top: var(--spacing-12);
|
|
2261
|
+
}
|
|
2262
|
+
|
|
2263
|
+
.min-h_52 {
|
|
2264
|
+
min-height: var(--sizes-52);
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
.max-w_lg {
|
|
2268
|
+
max-width: var(--sizes-lg);
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.min-h_10 {
|
|
2272
|
+
min-height: var(--sizes-10);
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.mt_4 {
|
|
2276
|
+
margin-top: var(--spacing-4);
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
.mb_4 {
|
|
2280
|
+
margin-bottom: var(--spacing-4);
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
.min-h_\[7rem\] {
|
|
2284
|
+
min-height: 7rem;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
.h_\[7rem\] {
|
|
2288
|
+
height: 7rem;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
.min-h_\[2rem\] {
|
|
2292
|
+
min-height: 2rem;
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2295
|
+
.pt_2 {
|
|
2296
|
+
padding-top: var(--spacing-2);
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
.max-w_6xl {
|
|
2300
|
+
max-width: var(--sizes-6xl);
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
.max-w_\[28rem\] {
|
|
2304
|
+
max-width: 28rem;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
.min-h_20 {
|
|
2308
|
+
min-height: var(--sizes-20);
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.min-h_24 {
|
|
2312
|
+
min-height: var(--sizes-24);
|
|
2313
|
+
}
|
|
2314
|
+
|
|
2315
|
+
.left_0 {
|
|
2316
|
+
left: var(--spacing-0);
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
.right_\[auto\] {
|
|
2320
|
+
right: auto;
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
.max-w_sm {
|
|
2324
|
+
max-width: var(--sizes-sm);
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
.top_2\.5 {
|
|
2328
|
+
top: var(--spacing-2\.5);
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
.right_2\.5 {
|
|
2332
|
+
right: var(--spacing-2\.5);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
.bd-t-w_1px {
|
|
2336
|
+
border-top-width: 1px;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
.border-top-style_solid {
|
|
2340
|
+
border-top-style: solid;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.bd-t-c_border {
|
|
2344
|
+
border-top-color: var(--colors-border);
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
.w_5 {
|
|
2348
|
+
width: var(--sizes-5);
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
.h_5 {
|
|
2352
|
+
height: var(--sizes-5);
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
.mt_\[0\.1rem\] {
|
|
2356
|
+
margin-top: 0.1rem;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.w_2 {
|
|
2360
|
+
width: var(--sizes-2);
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.h_2 {
|
|
2364
|
+
height: var(--sizes-2);
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.ov-x_auto {
|
|
2368
|
+
overflow-x: auto;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.min-w_0 {
|
|
2372
|
+
min-width: var(--sizes-0);
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
.ov-x_hidden {
|
|
2376
|
+
overflow-x: hidden;
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2379
|
+
.pl_0 {
|
|
2380
|
+
padding-left: var(--spacing-0);
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.pl_\[1\.75rem\] {
|
|
2384
|
+
padding-left: 1.75rem;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.h_\[1px\] {
|
|
2388
|
+
height: 1px;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
.w_\[0\.75rem\] {
|
|
2392
|
+
width: 0.75rem;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.h_\[0\.75rem\] {
|
|
2396
|
+
height: 0.75rem;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
.max-w_full {
|
|
2400
|
+
max-width: var(--sizes-full);
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
.ov-y_hidden {
|
|
2404
|
+
overflow-y: hidden;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
.min-w_\[32rem\] {
|
|
2408
|
+
min-width: 32rem;
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
.h_auto {
|
|
2412
|
+
height: auto;
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
.pb_3 {
|
|
2416
|
+
padding-bottom: var(--spacing-3);
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
.w_auto {
|
|
2420
|
+
width: auto;
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
.min-h_auto {
|
|
2424
|
+
min-height: auto;
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
.min-h_\[2\.375rem\] {
|
|
2428
|
+
min-height: 2.375rem;
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
.min-h_\[2\.75rem\] {
|
|
2432
|
+
min-height: 2.75rem;
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
.w_\[fit-content\] {
|
|
2436
|
+
width: fit-content;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
.min-h_\[12rem\] {
|
|
2440
|
+
min-height: 12rem;
|
|
2441
|
+
}
|
|
2442
|
+
|
|
2443
|
+
.h_\[12rem\] {
|
|
2444
|
+
height: 12rem;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
.w_\[min\(1280px\,100\%\)\] {
|
|
2448
|
+
width: min(1280px,100%);
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
.h_\[min\(94dvh\,100\%\)\] {
|
|
2452
|
+
height: min(94dvh,100%);
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
.h_full {
|
|
2456
|
+
height: var(--sizes-full);
|
|
2457
|
+
}
|
|
2458
|
+
|
|
2459
|
+
.top_0 {
|
|
2460
|
+
top: var(--spacing-0);
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.right_0 {
|
|
2464
|
+
right: var(--spacing-0);
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2467
|
+
.h_\[120px\] {
|
|
2468
|
+
height: 120px;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
.min-h_0 {
|
|
2472
|
+
min-height: var(--sizes-0);
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
.max-h_full {
|
|
2476
|
+
max-height: var(--sizes-full);
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
.top_4 {
|
|
2480
|
+
top: var(--spacing-4);
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
.right_4 {
|
|
2484
|
+
right: var(--spacing-4);
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
.top_\[50\%\] {
|
|
2488
|
+
top: 50%;
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
.left_4 {
|
|
2492
|
+
left: var(--spacing-4);
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
.bottom_6 {
|
|
2496
|
+
bottom: var(--spacing-6);
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.left_\[50\%\] {
|
|
2500
|
+
left: 50%;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.w_8 {
|
|
2504
|
+
width: var(--sizes-8);
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
.h_8 {
|
|
2508
|
+
height: var(--sizes-8);
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
.min-w_12 {
|
|
2512
|
+
min-width: var(--sizes-12);
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
.min-w_\[max-content\] {
|
|
2516
|
+
min-width: max-content;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
.w_\[clamp\(80px\,_12vw\,_120px\)\] {
|
|
2520
|
+
width: clamp(80px, 12vw, 120px);
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
.max-w_\[min\(100\%\,24rem\)\] {
|
|
2524
|
+
max-width: min(100%,24rem);
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
.lc_2 {
|
|
2528
|
+
overflow: hidden;
|
|
2529
|
+
display: -webkit-box;
|
|
2530
|
+
-webkit-line-clamp: 2;
|
|
2531
|
+
-webkit-box-orient: vertical;
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
.h_\[10rem\] {
|
|
2535
|
+
height: 10rem;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
.w_\[1rem\] {
|
|
2539
|
+
width: 1rem;
|
|
2540
|
+
}
|
|
2541
|
+
|
|
2542
|
+
.h_\[1rem\] {
|
|
2543
|
+
height: 1rem;
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
.min-h_\[8\.5rem\] {
|
|
2547
|
+
min-height: 8.5rem;
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
.min-h_\[1\.5rem\] {
|
|
2551
|
+
min-height: 1.5rem;
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
.max-w_\[min\(100\%\,42rem\)\] {
|
|
2555
|
+
max-width: min(100%,42rem);
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
.w_10 {
|
|
2559
|
+
width: var(--sizes-10);
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
.h_10 {
|
|
2563
|
+
height: var(--sizes-10);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
.ml_0 {
|
|
2567
|
+
margin-left: var(--spacing-0);
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
.w_\[1px\] {
|
|
2571
|
+
width: 1px;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
.ovs-bx_contain {
|
|
2575
|
+
overscroll-behavior-x: contain;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
.min-h_48 {
|
|
2579
|
+
min-height: var(--sizes-48);
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
.min-w_8 {
|
|
2583
|
+
min-width: var(--sizes-8);
|
|
2584
|
+
}
|
|
2585
|
+
|
|
2586
|
+
.h_1 {
|
|
2587
|
+
height: var(--sizes-1);
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2590
|
+
.pt_\[56\.25\%\] {
|
|
2591
|
+
padding-top: 56.25%;
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
.top_\[0\.6rem\] {
|
|
2595
|
+
top: 0.6rem;
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
.right_\[0\.5rem\] {
|
|
2599
|
+
right: 0.5rem;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.top_\[calc\(100\%_\+_0\.55rem\)\] {
|
|
2603
|
+
top: calc(100% + 0.55rem);
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
.min-w_48 {
|
|
2607
|
+
min-width: var(--sizes-48);
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
.top_\[auto\] {
|
|
2611
|
+
top: auto;
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2614
|
+
.right_3 {
|
|
2615
|
+
right: var(--spacing-3);
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
.bottom_3 {
|
|
2619
|
+
bottom: var(--spacing-3);
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
.w_\[min\(24rem\,calc\(100vw-1\.5rem\)\)\] {
|
|
2623
|
+
width: min(24rem,calc(100vw-1.5rem));
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
.ov-y_auto {
|
|
2627
|
+
overflow-y: auto;
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
.ovs-by_contain {
|
|
2631
|
+
overscroll-behavior-y: contain;
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
.min-h_80 {
|
|
2635
|
+
min-height: var(--sizes-80);
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
.min-w_\[18rem\] {
|
|
2639
|
+
min-width: 18rem;
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
.min-w_\[8\.5rem\] {
|
|
2643
|
+
min-width: 8.5rem;
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
.min-w_9 {
|
|
2647
|
+
min-width: var(--sizes-9);
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
.min-h_9 {
|
|
2651
|
+
min-height: var(--sizes-9);
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
.min-w_\[11rem\] {
|
|
2655
|
+
min-width: 11rem;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.pr_0 {
|
|
2659
|
+
padding-right: var(--spacing-0);
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
.bd-r-w_0 {
|
|
2663
|
+
border-right-width: 0;
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
.border-right-style_none {
|
|
2667
|
+
border-right-style: none;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
.bd-r-c_transparent {
|
|
2671
|
+
border-right-color: var(--colors-transparent);
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
.max-h_56 {
|
|
2675
|
+
max-height: var(--sizes-56);
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
.pr_1 {
|
|
2679
|
+
padding-right: var(--spacing-1);
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2682
|
+
.pr_24 {
|
|
2683
|
+
padding-right: var(--spacing-24);
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
.top_2 {
|
|
2687
|
+
top: var(--spacing-2);
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
.right_2 {
|
|
2691
|
+
right: var(--spacing-2);
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
.w_7 {
|
|
2695
|
+
width: var(--sizes-7);
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
.h_7 {
|
|
2699
|
+
height: var(--sizes-7);
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
.max-w_40 {
|
|
2703
|
+
max-width: var(--sizes-40);
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
.min-h_72 {
|
|
2707
|
+
min-height: var(--sizes-72);
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
.bd-b-w_1px {
|
|
2711
|
+
border-bottom-width: 1px;
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
.border-bottom-style_solid {
|
|
2715
|
+
border-bottom-style: solid;
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
.bd-b-c_border {
|
|
2719
|
+
border-bottom-color: var(--colors-border);
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
.max-w_80 {
|
|
2723
|
+
max-width: var(--sizes-80);
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
.w_\[min\(72rem\,calc\(100dvw-2rem\)\)\] {
|
|
2727
|
+
width: min(72rem,calc(100dvw-2rem));
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
.max-h_\[calc\(100dvh-2rem\)\] {
|
|
2731
|
+
max-height: calc(100dvh-2rem);
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
.pb_2 {
|
|
2735
|
+
padding-bottom: var(--spacing-2);
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
.pt_4 {
|
|
2739
|
+
padding-top: var(--spacing-4);
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
.pr_10 {
|
|
2743
|
+
padding-right: var(--spacing-10);
|
|
2744
|
+
}
|
|
2745
|
+
|
|
2746
|
+
.w_9 {
|
|
2747
|
+
width: var(--sizes-9);
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
.h_9 {
|
|
2751
|
+
height: var(--sizes-9);
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
.min-w_\[16rem\] {
|
|
2755
|
+
min-width: 16rem;
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
.min-w_\[20rem\] {
|
|
2759
|
+
min-width: 20rem;
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
.min-w_7 {
|
|
2763
|
+
min-width: var(--sizes-7);
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
.min-h_7 {
|
|
2767
|
+
min-height: var(--sizes-7);
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
.min-w_auto {
|
|
2771
|
+
min-width: auto;
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
.min-w_10 {
|
|
2775
|
+
min-width: var(--sizes-10);
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
.pt_8 {
|
|
2779
|
+
padding-top: var(--spacing-8);
|
|
2780
|
+
}
|
|
2781
|
+
|
|
2782
|
+
.pb_6 {
|
|
2783
|
+
padding-bottom: var(--spacing-6);
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
.max-w_xl {
|
|
2787
|
+
max-width: var(--sizes-xl);
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
.\[\&_\.shiki\]\:m_0 .shiki {
|
|
2791
|
+
margin: var(--spacing-0);
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
.\[\&_\.shiki\]\:bg_transparent\! .shiki {
|
|
2795
|
+
background: var(--colors-transparent) !important;
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
.\[\&_pre\]\:m_0 pre {
|
|
2799
|
+
margin: var(--spacing-0);
|
|
2800
|
+
}
|
|
2801
|
+
|
|
2802
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:bg_\[currentColor\] > li:not(.task-list-item)::before {
|
|
2803
|
+
background: currentColor;
|
|
2804
|
+
}
|
|
2805
|
+
|
|
2806
|
+
.\[\&_th\]\:bg_surfaceMuted th {
|
|
2807
|
+
background: var(--colors-surface-muted);
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
[data-theme="dark"] .dark\:bg_gray\.900 {
|
|
2811
|
+
background: var(--colors-gray-900);
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
.\[\&_th\]\:bd-b_\[1px_solid_var\(--colors-border\)\] th {
|
|
2815
|
+
border-bottom: 1px solid var(--colors-border);
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
.\[\&_th\]\:py_3 th {
|
|
2819
|
+
padding-block: var(--spacing-3);
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
.\[\&_th\]\:px_3 th {
|
|
2823
|
+
padding-inline: var(--spacing-3);
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
.\[\&_td\]\:bd-b_\[1px_solid_var\(--colors-border\)\] td {
|
|
2827
|
+
border-bottom: 1px solid var(--colors-border);
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.\[\&_td\]\:py_3 td {
|
|
2831
|
+
padding-block: var(--spacing-3);
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2834
|
+
.\[\&_td\]\:px_3 td {
|
|
2835
|
+
padding-inline: var(--spacing-3);
|
|
2836
|
+
}
|
|
2837
|
+
|
|
2838
|
+
.\[\&_\.shiki\]\:px_5 .shiki {
|
|
2839
|
+
padding-inline: var(--spacing-5);
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
.\[\&_\.shiki\]\:py_4 .shiki {
|
|
2843
|
+
padding-block: var(--spacing-4);
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
.\[\&_ul\,_\&_ol\]\:my_3 ul,.\[\&_ul\,_\&_ol\]\:my_3 ol {
|
|
2847
|
+
margin-block: var(--spacing-3);
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\]\:li-s_none > li:not(.task-list-item) {
|
|
2851
|
+
list-style: none;
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:bdr_full > li:not(.task-list-item)::before {
|
|
2855
|
+
border-radius: var(--radii-full);
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
.\[\&_th\,_\&_td\]\:px_\[1rem\] th,.\[\&_th\,_\&_td\]\:px_\[1rem\] td {
|
|
2859
|
+
padding-inline: 1rem;
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2862
|
+
.\[\&_th\,_\&_td\]\:py_\[0\.85rem\] th,.\[\&_th\,_\&_td\]\:py_\[0\.85rem\] td {
|
|
2863
|
+
padding-block: 0.85rem;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
.\[\&_th\,_\&_td\]\:bd-b_\[1px_solid_var\(--colors-border\)\] th,.\[\&_th\,_\&_td\]\:bd-b_\[1px_solid_var\(--colors-border\)\] td {
|
|
2867
|
+
border-bottom: 1px solid var(--colors-border);
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
.\[\&_tr\:last-child_td\]\:bd-b_none tr:last-child td {
|
|
2871
|
+
border-bottom: var(--borders-none);
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
[data-theme="dark"] .dark\:bd-c_red\.800 {
|
|
2875
|
+
border-color: var(--colors-red-800);
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
[data-theme="dark"] .dark\:bd-c_blue\.800 {
|
|
2879
|
+
border-color: var(--colors-blue-800);
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
[data-theme="dark"] .dark\:bd-c_green\.800 {
|
|
2883
|
+
border-color: var(--colors-green-800);
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
.\[\&_th\]\:c_text th {
|
|
2887
|
+
color: var(--colors-text);
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.\[\&_th\]\:fs_xs th {
|
|
2891
|
+
font-size: var(--font-sizes-xs);
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
.\[\&_th\]\:fw_semibold th {
|
|
2895
|
+
font-weight: var(--font-weights-semibold);
|
|
2896
|
+
}
|
|
2897
|
+
|
|
2898
|
+
.\[\&_th\]\:ls_wide th {
|
|
2899
|
+
letter-spacing: var(--letter-spacings-wide);
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
.\[\&_th\]\:ta_left th {
|
|
2903
|
+
text-align: left;
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
.\[\&_th\]\:tt_uppercase th {
|
|
2907
|
+
text-transform: uppercase;
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
.\[\&_td\]\:c_textSubtle td {
|
|
2911
|
+
color: var(--colors-text-subtle);
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
.\[\&_td\]\:fs_sm td {
|
|
2915
|
+
font-size: var(--font-sizes-sm);
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
.\[\&_td\]\:lh_relaxed td {
|
|
2919
|
+
line-height: var(--line-heights-relaxed);
|
|
2920
|
+
}
|
|
2921
|
+
|
|
2922
|
+
.\[\&_td\]\:va_top td {
|
|
2923
|
+
vertical-align: top;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
.\[\&_td\:first-child\]\:c_text td:first-child {
|
|
2927
|
+
color: var(--colors-text);
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
.\[\&_td\:first-child\]\:fw_medium td:first-child {
|
|
2931
|
+
font-weight: var(--font-weights-medium);
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
.\[\&_\.shiki\]\:fs_sm .shiki {
|
|
2935
|
+
font-size: var(--font-sizes-sm);
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
.\[\&_\.shiki\]\:lh_\[1\.75\] .shiki {
|
|
2939
|
+
line-height: 1.75;
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
.\[\&\:lang\(ja\)_\:is\(p\,_li\,_blockquote\,_h1\,_h2\,_h3\,_h4\,_td\,_th\)\]\:wb_break-all:lang(ja) :is(p, li, blockquote, h1, h2, h3, h4, td, th) {
|
|
2943
|
+
word-break: break-all;
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
.\[\&\:lang\(ja\)_\:is\(p\,_li\,_blockquote\,_h1\,_h2\,_h3\,_h4\,_td\,_th\)\]\:ov-wrap_anywhere:lang(ja) :is(p, li, blockquote, h1, h2, h3, h4, td, th) {
|
|
2947
|
+
overflow-wrap: anywhere;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\]\:pos_relative > li:not(.task-list-item) {
|
|
2951
|
+
position: relative;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:content_\"\" > li:not(.task-list-item)::before {
|
|
2955
|
+
content: "";
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:pos_absolute > li:not(.task-list-item)::before {
|
|
2959
|
+
position: absolute;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:op_0\.7 > li:not(.task-list-item)::before {
|
|
2963
|
+
opacity: 0.7;
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:trf_translateY\(-50\%\) > li:not(.task-list-item)::before {
|
|
2967
|
+
transform: translateY(-50%);
|
|
2968
|
+
}
|
|
2969
|
+
|
|
2970
|
+
.\[\&_\>_li\:\:marker\]\:c_muted > li::marker {
|
|
2971
|
+
color: var(--colors-muted);
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2974
|
+
.\[\&_\>_li\:\:marker\]\:fw_semibold > li::marker {
|
|
2975
|
+
font-weight: var(--font-weights-semibold);
|
|
2976
|
+
}
|
|
2977
|
+
|
|
2978
|
+
.\[\&_\>_p\:only-child\]\:d_inline > p:only-child {
|
|
2979
|
+
display: inline;
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
.\[\&\[data-language\=\"plaintext\"\]_code_span\]\:c_\[rgb\(248_250_252\)\]\![data-language="plaintext"] code span,.\[\&\[data-language\=\"text\"\]_code_span\]\:c_\[rgb\(248_250_252\)\]\![data-language="text"] code span {
|
|
2983
|
+
color: rgb(248 250 252) !important;
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
.\[\&_th\,_\&_td\]\:ta_left th,.\[\&_th\,_\&_td\]\:ta_left td {
|
|
2987
|
+
text-align: left;
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
.\[\&_th\,_\&_td\]\:va_top th,.\[\&_th\,_\&_td\]\:va_top td {
|
|
2991
|
+
vertical-align: top;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
.\[\&_th\]\:fw_\[700\] th {
|
|
2995
|
+
font-weight: 700;
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
.\[\&_summary\:\:-webkit-details-marker\]\:d_none summary::-webkit-details-marker {
|
|
2999
|
+
display: none;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
.\[\&\[open\]_\[data-toggle-chevron\=\"true\"\]\]\:trf_rotate\(90deg\)[open] [data-toggle-chevron="true"] {
|
|
3003
|
+
transform: rotate(90deg);
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
.marker\:d_none::marker,.marker\:d_none::-webkit-details-marker {
|
|
3007
|
+
display: none;
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
.placeholder\:c_muted::placeholder,.placeholder\:c_muted[data-placeholder] {
|
|
3011
|
+
color: var(--colors-muted);
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
.\[\&_svg\]\:d_block svg {
|
|
3015
|
+
display: block;
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
[data-theme="dark"] .dark\:c_gray\.300 {
|
|
3019
|
+
color: var(--colors-gray-300);
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
[data-theme="dark"] .dark\:bg-c_gray\.900 {
|
|
3023
|
+
background-color: var(--colors-gray-900);
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
[data-theme="dark"] .dark\:c_blue\.300 {
|
|
3027
|
+
color: var(--colors-blue-300);
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
.disabled\:cursor_not-allowed:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
3031
|
+
cursor: not-allowed;
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
.disabled\:op_0\.4:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
3035
|
+
opacity: 0.4;
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
.\[\&_svg\]\:trf_rotate\(180deg\) svg {
|
|
3039
|
+
transform: rotate(180deg);
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
.\[\&_tbody_tr\:last-child_td\]\:bd-b-w_0 tbody tr:last-child td {
|
|
3043
|
+
border-bottom-width: 0;
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
.\[\&\:first-of-type\]\:bd-t-w_0:first-of-type {
|
|
3047
|
+
border-top-width: 0;
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
.\[\&_\.shiki\]\:ov-x_auto .shiki {
|
|
3051
|
+
overflow-x: auto;
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
.\[\&_\.line\]\:min-h_\[1\.5em\] .line {
|
|
3055
|
+
min-height: 1.5em;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
.\[\&_\>_\*_\+_\*\]\:mt_5 > * + * {
|
|
3059
|
+
margin-top: var(--spacing-5);
|
|
3060
|
+
}
|
|
3061
|
+
|
|
3062
|
+
.\[\&_\>_\:is\(h1\,_h2\,_h3\,_h4\)\]\:mt_7 > :is(h1, h2, h3, h4) {
|
|
3063
|
+
margin-top: var(--spacing-7);
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
.\[\&_\>_\:is\(h1\,_h2\,_h3\,_h4\)\]\:mb_0 > :is(h1, h2, h3, h4) {
|
|
3067
|
+
margin-bottom: var(--spacing-0);
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
.\[\&_\>_\:is\(h1\,_h2\,_h3\,_h4\)_\+_\*\]\:mt_5 > :is(h1, h2, h3, h4) + * {
|
|
3071
|
+
margin-top: var(--spacing-5);
|
|
3072
|
+
}
|
|
3073
|
+
|
|
3074
|
+
.\[\&_li_\>_ul\,_\&_li_\>_ol\]\:mt_1 li > ul,.\[\&_li_\>_ul\,_\&_li_\>_ol\]\:mt_1 li > ol,.\[\&_ul_ul\,_\&_ul_ol\,_\&_ol_ul\,_\&_ol_ol\]\:mt_1 ul ul,.\[\&_ul_ul\,_\&_ul_ol\,_\&_ol_ul\,_\&_ol_ol\]\:mt_1 ul ol,.\[\&_ul_ul\,_\&_ul_ol\,_\&_ol_ul\,_\&_ol_ol\]\:mt_1 ol ul,.\[\&_ul_ul\,_\&_ul_ol\,_\&_ol_ul\,_\&_ol_ol\]\:mt_1 ol ol {
|
|
3075
|
+
margin-top: var(--spacing-1);
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3078
|
+
.\[\&_ul_ul\]\:pl_\[1\.5rem\] ul ul {
|
|
3079
|
+
padding-left: 1.5rem;
|
|
3080
|
+
}
|
|
3081
|
+
|
|
3082
|
+
.\[\&_li_\+_li\]\:mt_1 li + li {
|
|
3083
|
+
margin-top: var(--spacing-1);
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\]\:pl_\[1\.25rem\] > li:not(.task-list-item) {
|
|
3087
|
+
padding-left: 1.25rem;
|
|
3088
|
+
}
|
|
3089
|
+
|
|
3090
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:left_\[0\.35rem\] > li:not(.task-list-item)::before {
|
|
3091
|
+
left: 0.35rem;
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:top_\[0\.9em\] > li:not(.task-list-item)::before {
|
|
3095
|
+
top: 0.9em;
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:w_\[0\.33rem\] > li:not(.task-list-item)::before {
|
|
3099
|
+
width: 0.33rem;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
.\[\&_\>_li\:not\(\.task-list-item\)\:\:before\]\:h_\[0\.33rem\] > li:not(.task-list-item)::before {
|
|
3103
|
+
height: 0.33rem;
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
.\[\&_ul\]\:pl_\[1\.5rem\] ul {
|
|
3107
|
+
padding-left: 1.5rem;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
.\[\&_ul_\>_li\:not\(\.task-list-item\)\:\:before\]\:w_\[0\.28rem\] ul > li:not(.task-list-item)::before {
|
|
3111
|
+
width: 0.28rem;
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
.\[\&_ul_\>_li\:not\(\.task-list-item\)\:\:before\]\:h_\[0\.28rem\] ul > li:not(.task-list-item)::before {
|
|
3115
|
+
height: 0.28rem;
|
|
3116
|
+
}
|
|
3117
|
+
|
|
3118
|
+
.\[\&_td_img\,_\&_th_img\]\:max-w_\[min\(100\%\,_18rem\)\] td img,.\[\&_td_img\,_\&_th_img\]\:max-w_\[min\(100\%\,_18rem\)\] th img {
|
|
3119
|
+
max-width: min(100%, 18rem);
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
.\[\&_td_img\,_\&_th_img\]\:h_auto td img,.\[\&_td_img\,_\&_th_img\]\:h_auto th img {
|
|
3123
|
+
height: auto;
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
.\[\&_\>_\*_\+_\*\]\:mt_4 > * + * {
|
|
3127
|
+
margin-top: var(--spacing-4);
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
.\[\&\:\:-webkit-scrollbar\]\:h_\[0\.5rem\]::-webkit-scrollbar {
|
|
3131
|
+
height: 0.5rem;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
.\[\&_svg\]\:w_full svg {
|
|
3135
|
+
width: var(--sizes-full);
|
|
3136
|
+
}
|
|
3137
|
+
|
|
3138
|
+
.\[\&_svg\]\:h_auto svg {
|
|
3139
|
+
height: auto;
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3142
|
+
.\[\&_svg\]\:max-w_full svg {
|
|
3143
|
+
max-width: var(--sizes-full);
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3146
|
+
.focusWithin\:ring_\[2px_solid_var\(--colors-focus-ring\)\]:focus-within {
|
|
3147
|
+
outline: 2px solid var(--colors-focus-ring);
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
.focusWithin\:bd-c_primary:focus-within {
|
|
3151
|
+
border-color: var(--colors-primary);
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
.focusWithin\:ring-o_\[2px\]:focus-within {
|
|
3155
|
+
outline-offset: 2px;
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
.focusVisible\:ring_\[2px_solid_var\(--colors-primary\)\]:is(:focus-visible, [data-focus-visible]) {
|
|
3159
|
+
outline: 2px solid var(--colors-primary);
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
.focusVisible\:ring_\[4px_solid_var\(--colors-primary\)\]:is(:focus-visible, [data-focus-visible]) {
|
|
3163
|
+
outline: 4px solid var(--colors-primary);
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
.focusVisible\:bd-c_primary:is(:focus-visible, [data-focus-visible]) {
|
|
3167
|
+
border-color: var(--colors-primary);
|
|
3168
|
+
}
|
|
3169
|
+
|
|
3170
|
+
.focusVisible\:ring_\[2px_solid_var\(--colors-focus-ring\)\]:is(:focus-visible, [data-focus-visible]) {
|
|
3171
|
+
outline: 2px solid var(--colors-focus-ring);
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3174
|
+
.focusVisible\:bdr_sm:is(:focus-visible, [data-focus-visible]) {
|
|
3175
|
+
border-radius: var(--radii-sm);
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
.focusVisible\:ring-o_\[2px\]:is(:focus-visible, [data-focus-visible]) {
|
|
3179
|
+
outline-offset: 2px;
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
.focusVisible\:ring-o_\[-2px\]:is(:focus-visible, [data-focus-visible]) {
|
|
3183
|
+
outline-offset: -2px;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
.focusVisible\:ring-o_\[4px\]:is(:focus-visible, [data-focus-visible]) {
|
|
3187
|
+
outline-offset: 4px;
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.focusVisible\:c_text:is(:focus-visible, [data-focus-visible]) {
|
|
3191
|
+
color: var(--colors-text);
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
.focusVisible\:c_primary:is(:focus-visible, [data-focus-visible]) {
|
|
3195
|
+
color: var(--colors-primary);
|
|
3196
|
+
}
|
|
3197
|
+
|
|
3198
|
+
.hover\:bg_surface:is(:hover, [data-hover]) {
|
|
3199
|
+
background: var(--colors-surface);
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
.hover\:bg_surfaceMuted:is(:hover, [data-hover]) {
|
|
3203
|
+
background: var(--colors-surface-muted);
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
.hover\:bd-c_borderStrong:is(:hover, [data-hover]) {
|
|
3207
|
+
border-color: var(--colors-border-strong);
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
.hover\:trf_translateY\(-2px\):is(:hover, [data-hover]) {
|
|
3211
|
+
transform: translateY(-2px);
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
.hover\:bg-c_\[rgb\(15_23_42_\/_0\.94\)\]:is(:hover, [data-hover]) {
|
|
3215
|
+
background-color: rgb(15 23 42 / 0.94);
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
.hover\:bg-c_\[rgb\(15_23_42_\/_0\.64\)\]:is(:hover, [data-hover]) {
|
|
3219
|
+
background-color: rgb(15 23 42 / 0.64);
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3222
|
+
.hover\:trf_translateY\(-1px\):is(:hover, [data-hover]) {
|
|
3223
|
+
transform: translateY(-1px);
|
|
3224
|
+
}
|
|
3225
|
+
|
|
3226
|
+
.hover\:c_primary:is(:hover, [data-hover]) {
|
|
3227
|
+
color: var(--colors-primary);
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
.hover\:bg-c_surfaceMuted:is(:hover, [data-hover]) {
|
|
3231
|
+
background-color: var(--colors-surface-muted);
|
|
3232
|
+
}
|
|
3233
|
+
|
|
3234
|
+
.hover\:c_text:is(:hover, [data-hover]) {
|
|
3235
|
+
color: var(--colors-text);
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
.active\:trf_translateY\(1px\):is(:active, [data-active]) {
|
|
3239
|
+
transform: translateY(1px);
|
|
3240
|
+
}
|
|
3241
|
+
|
|
3242
|
+
@media screen and (min-width: 30rem) {
|
|
3243
|
+
.sm\:flex-d_row {
|
|
3244
|
+
flex-direction: row;
|
|
3245
|
+
}
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3248
|
+
@media screen and (min-width: 48rem) {
|
|
3249
|
+
.md\:px_10 {
|
|
3250
|
+
padding-inline: var(--spacing-10);
|
|
3251
|
+
}
|
|
3252
|
+
.md\:py_16 {
|
|
3253
|
+
padding-block: var(--spacing-16);
|
|
3254
|
+
}
|
|
3255
|
+
.md\:fs_6xl {
|
|
3256
|
+
font-size: var(--font-sizes-6xl);
|
|
3257
|
+
}
|
|
3258
|
+
.md\:fs_xl {
|
|
3259
|
+
font-size: var(--font-sizes-xl);
|
|
3260
|
+
}
|
|
3261
|
+
.md\:grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
|
|
3262
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3263
|
+
}
|
|
3264
|
+
.md\:grid-tc_minmax\(7rem\,_8\.5rem\)_minmax\(0\,_1fr\) {
|
|
3265
|
+
grid-template-columns: minmax(7rem, 8.5rem) minmax(0, 1fr);
|
|
3266
|
+
}
|
|
3267
|
+
.md\:grid-tc_minmax\(0\,_1fr\)_auto {
|
|
3268
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
3269
|
+
}
|
|
3270
|
+
.md\:grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
3271
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3272
|
+
}
|
|
3273
|
+
.md\:d_none {
|
|
3274
|
+
display: none;
|
|
3275
|
+
}
|
|
3276
|
+
.md\:d_grid {
|
|
3277
|
+
display: grid;
|
|
3278
|
+
}
|
|
3279
|
+
.md\:flex-d_row {
|
|
3280
|
+
flex-direction: row;
|
|
3281
|
+
}
|
|
3282
|
+
.md\:grid-tc_\[18rem_16rem_minmax\(0\,1fr\)\] {
|
|
3283
|
+
grid-template-columns: 18rem 16rem minmax(0,1fr);
|
|
3284
|
+
}
|
|
3285
|
+
.md\:cg_6 {
|
|
3286
|
+
column-gap: var(--spacing-6);
|
|
3287
|
+
}
|
|
3288
|
+
.md\:d_flex {
|
|
3289
|
+
display: flex;
|
|
3290
|
+
}
|
|
3291
|
+
.md\:order_0 {
|
|
3292
|
+
order: 0;
|
|
3293
|
+
}
|
|
3294
|
+
.md\:grid-tc_\[minmax\(0\,1fr\)_minmax\(0\,1\.5fr\)\] {
|
|
3295
|
+
grid-template-columns: minmax(0,1fr) minmax(0,1.5fr);
|
|
3296
|
+
}
|
|
3297
|
+
.md\:grid-tc_\[minmax\(0\,1\.2fr\)_minmax\(18rem\,0\.8fr\)\] {
|
|
3298
|
+
grid-template-columns: minmax(0,1.2fr) minmax(18rem,0.8fr);
|
|
3299
|
+
}
|
|
3300
|
+
.md\:w_\[10rem\] {
|
|
3301
|
+
width: 10rem;
|
|
3302
|
+
}
|
|
3303
|
+
.md\:h_\[7rem\] {
|
|
3304
|
+
height: 7rem;
|
|
3305
|
+
}
|
|
3306
|
+
.md\:min-h_64 {
|
|
3307
|
+
min-height: var(--sizes-64);
|
|
3308
|
+
}
|
|
3309
|
+
.md\:right_3 {
|
|
3310
|
+
right: var(--spacing-3);
|
|
3311
|
+
}
|
|
3312
|
+
.md\:bottom_3 {
|
|
3313
|
+
bottom: var(--spacing-3);
|
|
3314
|
+
}
|
|
3315
|
+
.md\:pr_5 {
|
|
3316
|
+
padding-right: var(--spacing-5);
|
|
3317
|
+
}
|
|
3318
|
+
.md\:bd-r-w_1px {
|
|
3319
|
+
border-right-width: 1px;
|
|
3320
|
+
}
|
|
3321
|
+
.md\:border-right-style_solid {
|
|
3322
|
+
border-right-style: solid;
|
|
3323
|
+
}
|
|
3324
|
+
.md\:bd-r-c_border {
|
|
3325
|
+
border-right-color: var(--colors-border);
|
|
3326
|
+
}
|
|
3327
|
+
.md\:max-w_64 {
|
|
3328
|
+
max-width: var(--sizes-64);
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
|
|
3332
|
+
@media screen and (min-width: 60rem) {
|
|
3333
|
+
.lg\:grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
|
|
3334
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3335
|
+
}
|
|
3336
|
+
.lg\:grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
3337
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3338
|
+
}
|
|
3339
|
+
.lg\:ai_center {
|
|
3340
|
+
align-items: center;
|
|
3341
|
+
}
|
|
3342
|
+
.lg\:flex-wrap_nowrap {
|
|
3343
|
+
flex-wrap: nowrap;
|
|
3344
|
+
}
|
|
3345
|
+
.lg\:w_auto {
|
|
3346
|
+
width: auto;
|
|
3347
|
+
}
|
|
3348
|
+
.lg\:ml_auto {
|
|
3349
|
+
margin-left: auto;
|
|
3350
|
+
}
|
|
3351
|
+
.lg\:right_4 {
|
|
3352
|
+
right: var(--spacing-4);
|
|
3353
|
+
}
|
|
3354
|
+
.lg\:bottom_4 {
|
|
3355
|
+
bottom: var(--spacing-4);
|
|
3356
|
+
}
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
@media screen and (min-width: 80rem) {
|
|
3360
|
+
.xl\:grid-tc_repeat\(3\,_minmax\(0\,_1fr\)\) {
|
|
3361
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3362
|
+
}
|
|
3363
|
+
.xl\:grid-tc_repeat\(2\,_minmax\(0\,_1fr\)\) {
|
|
3364
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3365
|
+
}
|
|
3366
|
+
.xl\:grid-tc_\[minmax\(0\,1\.2fr\)_minmax\(18rem\,0\.8fr\)\] {
|
|
3367
|
+
grid-template-columns: minmax(0,1.2fr)_minmax(18rem,0.8fr);
|
|
3368
|
+
}
|
|
3369
|
+
}
|
|
3370
|
+
}
|