@chatbi-v/xcml 1.0.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/README.md +48 -0
- package/dist/index.cjs +31 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +2579 -0
- package/dist/index.d.cts +1006 -0
- package/dist/index.d.ts +1006 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/package.json +76 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,2579 @@
|
|
|
1
|
+
.xcml-scope {
|
|
2
|
+
/* --- 1. 固定布局与形态 Token (Fixed Layout & Shape) --- */
|
|
3
|
+
/* 保证组件在宿主应用中物理感官(圆角、间距、字体)的一致性 */
|
|
4
|
+
font-family: "Inter Variable", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
5
|
+
/* Radius Tokens: 欢乐主题 - 更大的圆角 */
|
|
6
|
+
--radius: 1rem;
|
|
7
|
+
/* 16px 圆角,更圆润 */
|
|
8
|
+
--radius-sm: calc(var(--radius) - 6px);
|
|
9
|
+
--radius-md: calc(var(--radius) - 3px);
|
|
10
|
+
--radius-lg: var(--radius);
|
|
11
|
+
--radius-xl: calc(var(--radius) + 8px);
|
|
12
|
+
/* Spacing Tokens: 增加呼吸感 */
|
|
13
|
+
--card-padding: 1.5rem;
|
|
14
|
+
--card-gap: 1.5rem;
|
|
15
|
+
--section-gap: 2.5rem;
|
|
16
|
+
--table-cell-padding-sm: 0.5rem 0.75rem;
|
|
17
|
+
--table-cell-padding-md: 1rem 1.25rem;
|
|
18
|
+
--table-cell-padding-lg: 1.25rem 2rem;
|
|
19
|
+
/* Typography Tokens: 稍微增大字号,提升阅读愉悦感 */
|
|
20
|
+
--font-size-xs: 0.8125rem;
|
|
21
|
+
--font-size-sm: 0.9375rem;
|
|
22
|
+
--font-size-base: 1.0625rem;
|
|
23
|
+
/* 17px */
|
|
24
|
+
--font-size-lg: 1.25rem;
|
|
25
|
+
--font-size-xl: 1.5rem;
|
|
26
|
+
--font-size-2xl: 1.75rem;
|
|
27
|
+
--font-size-metric: 2.5rem;
|
|
28
|
+
--font-size-metric-lg: 3.5rem;
|
|
29
|
+
/* Shadow Tokens: 欢乐主题 - 彩色弥散阴影 */
|
|
30
|
+
--shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05);
|
|
31
|
+
--shadow-hover: 0 12px 24px -6px rgba(124, 58, 237, 0.12), 0 6px 12px -4px rgba(0, 0, 0, 0.05);
|
|
32
|
+
--shadow-card: 0 6px 16px -4px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.02);
|
|
33
|
+
--shadow-card-hover: 0 12px 24px -6px rgba(124, 58, 237, 0.12), 0 4px 12px -4px rgba(0, 0, 0, 0.05);
|
|
34
|
+
/* --- 2. 默认颜色 Token (Default Colors - Joyful Theme) --- */
|
|
35
|
+
/* 背景保持明亮,稍微带一点暖色 */
|
|
36
|
+
--background: 260 25% 98%;
|
|
37
|
+
/* Very light purple/gray tint */
|
|
38
|
+
--foreground: 255 15% 15%;
|
|
39
|
+
/* Softer black */
|
|
40
|
+
--card: 0 0% 100%;
|
|
41
|
+
--card-foreground: 255 15% 15%;
|
|
42
|
+
--popover: 0 0% 100%;
|
|
43
|
+
--popover-foreground: 255 15% 15%;
|
|
44
|
+
/* Primary: Vibrant Violet/Purple */
|
|
45
|
+
--primary: 262 83% 62%;
|
|
46
|
+
/* #8b5cf6 Violet-500 equivalent but tweaked */
|
|
47
|
+
--primary-foreground: 0 0% 100%;
|
|
48
|
+
--secondary: 250 92% 95%;
|
|
49
|
+
/* Light Violet tint */
|
|
50
|
+
--secondary-foreground: 262 83% 62%;
|
|
51
|
+
--muted: 240 10% 94%;
|
|
52
|
+
--muted-foreground: 240 10% 45%;
|
|
53
|
+
--accent: 35 100% 96%;
|
|
54
|
+
/* Warm Orange/Yellow tint for accent */
|
|
55
|
+
--accent-foreground: 35 90% 45%;
|
|
56
|
+
/* Orange text */
|
|
57
|
+
--destructive: 345 85% 60%;
|
|
58
|
+
--destructive-foreground: 0 0% 100%;
|
|
59
|
+
--success: 150 75% 45%;
|
|
60
|
+
/* Vibrant Green */
|
|
61
|
+
--success-foreground: 0 0% 100%;
|
|
62
|
+
--warning: 40 95% 55%;
|
|
63
|
+
/* Vibrant Orange */
|
|
64
|
+
--warning-foreground: 0 0% 100%;
|
|
65
|
+
--info: 195 90% 50%;
|
|
66
|
+
/* Vibrant Cyan */
|
|
67
|
+
--info-foreground: 0 0% 100%;
|
|
68
|
+
--border: 240 15% 90%;
|
|
69
|
+
--input: 240 15% 92%;
|
|
70
|
+
--ring: 262 83% 62%;
|
|
71
|
+
/* Chart Colors - Joyful Palette */
|
|
72
|
+
--chart-1: 262 83% 62%;
|
|
73
|
+
/* Violet */
|
|
74
|
+
--chart-2: 320 80% 65%;
|
|
75
|
+
/* Pink */
|
|
76
|
+
--chart-3: 190 85% 50%;
|
|
77
|
+
/* Cyan */
|
|
78
|
+
--chart-4: 40 95% 55%;
|
|
79
|
+
/* Orange */
|
|
80
|
+
--chart-5: 150 75% 45%;
|
|
81
|
+
/* Green */
|
|
82
|
+
/* Sidebar */
|
|
83
|
+
--sidebar-background: 210 20% 98%;
|
|
84
|
+
--sidebar-foreground: 224 71% 4%;
|
|
85
|
+
--sidebar-primary: 161 94% 30%;
|
|
86
|
+
--sidebar-primary-foreground: 0 0% 100%;
|
|
87
|
+
--sidebar-accent: 158 64% 95%;
|
|
88
|
+
--sidebar-accent-foreground: 161 94% 30%;
|
|
89
|
+
--sidebar-border: 214 32% 91%;
|
|
90
|
+
--sidebar-ring: 161 94% 30%;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.xcml-scope.dark {
|
|
94
|
+
/* Base: Zinc-950 */
|
|
95
|
+
--background: 240 10% 4%;
|
|
96
|
+
/* Text: Zinc-50 */
|
|
97
|
+
--foreground: 0 0% 98%;
|
|
98
|
+
/* Card: Zinc-900 */
|
|
99
|
+
--card: 240 10% 6%;
|
|
100
|
+
--card-foreground: 0 0% 98%;
|
|
101
|
+
--popover: 240 10% 6%;
|
|
102
|
+
--popover-foreground: 0 0% 98%;
|
|
103
|
+
--primary: 161 94% 30%;
|
|
104
|
+
--primary-foreground: 0 0% 100%;
|
|
105
|
+
--secondary: 240 4% 16%;
|
|
106
|
+
--secondary-foreground: 0 0% 98%;
|
|
107
|
+
--muted: 240 4% 16%;
|
|
108
|
+
--muted-foreground: 240 5% 65%;
|
|
109
|
+
--accent: 161 94% 30%;
|
|
110
|
+
--accent-foreground: 0 0% 100%;
|
|
111
|
+
--destructive: 346 84% 40%;
|
|
112
|
+
--destructive-foreground: 0 0% 98%;
|
|
113
|
+
--success: 142 71% 45%;
|
|
114
|
+
--success-foreground: 144 80% 10%;
|
|
115
|
+
--warning: 38 92% 50%;
|
|
116
|
+
--warning-foreground: 38 92% 10%;
|
|
117
|
+
--info: 199 89% 48%;
|
|
118
|
+
--info-foreground: 0 0% 100%;
|
|
119
|
+
--border: 240 4% 16%;
|
|
120
|
+
--input: 240 4% 16%;
|
|
121
|
+
--ring: 161 94% 30%;
|
|
122
|
+
--chart-1: 161 94% 30%;
|
|
123
|
+
--chart-2: 160 60% 45%;
|
|
124
|
+
--chart-3: 30 80% 55%;
|
|
125
|
+
--chart-4: 280 65% 60%;
|
|
126
|
+
--chart-5: 340 75% 55%;
|
|
127
|
+
--sidebar-background: 240 10% 6%;
|
|
128
|
+
--sidebar-foreground: 0 0% 98%;
|
|
129
|
+
--sidebar-primary: 161 94% 30%;
|
|
130
|
+
--sidebar-primary-foreground: 0 0% 100%;
|
|
131
|
+
--sidebar-accent: 240 4% 16%;
|
|
132
|
+
--sidebar-accent-foreground: 0 0% 98%;
|
|
133
|
+
--sidebar-border: 240 4% 16%;
|
|
134
|
+
--sidebar-ring: 161 94% 30%;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* --- Preset Themes --- */
|
|
138
|
+
|
|
139
|
+
/* 0. Dark (Deep Dark) */
|
|
140
|
+
|
|
141
|
+
.xcml-scope [data-theme="dark"],
|
|
142
|
+
.xcml-scope[data-theme="dark"] {
|
|
143
|
+
--card: 240 10% 6%;
|
|
144
|
+
--card-foreground: 0 0% 98%;
|
|
145
|
+
--border: 240 4% 16%;
|
|
146
|
+
--muted: 240 4% 16%;
|
|
147
|
+
--muted-foreground: 240 5% 65%;
|
|
148
|
+
--accent: 161 94% 30%;
|
|
149
|
+
--accent-foreground: 0 0% 100%;
|
|
150
|
+
--background: 240 10% 4%;
|
|
151
|
+
--foreground: 0 0% 98%;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/* 1. Ocean (Deep Blue) */
|
|
155
|
+
|
|
156
|
+
.xcml-scope [data-theme="ocean"],
|
|
157
|
+
.xcml-scope[data-theme="ocean"] {
|
|
158
|
+
--primary: 221 83% 53%;
|
|
159
|
+
/* Blue 600 */
|
|
160
|
+
--accent: 221 83% 95%;
|
|
161
|
+
--accent-foreground: 221 83% 53%;
|
|
162
|
+
--ring: 221 83% 53%;
|
|
163
|
+
--card: 221 83% 98%;
|
|
164
|
+
/* Very light blue background */
|
|
165
|
+
--border: 221 83% 90%;
|
|
166
|
+
--chart-1: 221 83% 53%;
|
|
167
|
+
--chart-2: 217 91% 60%;
|
|
168
|
+
--chart-3: 213 94% 68%;
|
|
169
|
+
--chart-4: 210 96% 78%;
|
|
170
|
+
--chart-5: 204 94% 87%;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/* 2. Sunset (Orange/Red) */
|
|
174
|
+
|
|
175
|
+
.xcml-scope [data-theme="sunset"],
|
|
176
|
+
.xcml-scope[data-theme="sunset"] {
|
|
177
|
+
--primary: 15 80% 50%;
|
|
178
|
+
/* Orange 600 */
|
|
179
|
+
--accent: 15 80% 95%;
|
|
180
|
+
--accent-foreground: 15 80% 50%;
|
|
181
|
+
--ring: 15 80% 50%;
|
|
182
|
+
--card: 15 80% 98%;
|
|
183
|
+
/* Very light orange background */
|
|
184
|
+
--border: 15 80% 90%;
|
|
185
|
+
--chart-1: 15 80% 50%;
|
|
186
|
+
--chart-2: 25 85% 55%;
|
|
187
|
+
--chart-3: 35 90% 60%;
|
|
188
|
+
--chart-4: 45 95% 70%;
|
|
189
|
+
--chart-5: 55 95% 80%;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/* 3. Lavender (Purple/Indigo) */
|
|
193
|
+
|
|
194
|
+
.xcml-scope [data-theme="lavender"],
|
|
195
|
+
.xcml-scope[data-theme="lavender"] {
|
|
196
|
+
--primary: 262 83% 58%;
|
|
197
|
+
/* Violet 600 */
|
|
198
|
+
--accent: 262 83% 95%;
|
|
199
|
+
--accent-foreground: 262 83% 58%;
|
|
200
|
+
--ring: 262 83% 58%;
|
|
201
|
+
--card: 262 83% 98%;
|
|
202
|
+
/* Very light purple background */
|
|
203
|
+
--border: 262 83% 90%;
|
|
204
|
+
--chart-1: 262 83% 58%;
|
|
205
|
+
--chart-2: 255 91% 65%;
|
|
206
|
+
--chart-3: 250 95% 75%;
|
|
207
|
+
--chart-4: 245 95% 85%;
|
|
208
|
+
--chart-5: 240 95% 92%;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/* 4. Rose (Pink) */
|
|
212
|
+
|
|
213
|
+
.xcml-scope [data-theme="rose"],
|
|
214
|
+
.xcml-scope[data-theme="rose"] {
|
|
215
|
+
--primary: 346 84% 50%;
|
|
216
|
+
/* Rose 600 */
|
|
217
|
+
--accent: 346 84% 95%;
|
|
218
|
+
--accent-foreground: 346 84% 50%;
|
|
219
|
+
--ring: 346 84% 50%;
|
|
220
|
+
--card: 346 84% 98%;
|
|
221
|
+
/* Very light pink background */
|
|
222
|
+
--border: 346 84% 90%;
|
|
223
|
+
--chart-1: 346 84% 50%;
|
|
224
|
+
--chart-2: 340 85% 60%;
|
|
225
|
+
--chart-3: 330 90% 70%;
|
|
226
|
+
--chart-4: 320 95% 80%;
|
|
227
|
+
--chart-5: 310 95% 90%;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/* 5. Amber (Yellow/Gold) */
|
|
231
|
+
|
|
232
|
+
.xcml-scope [data-theme="amber"],
|
|
233
|
+
.xcml-scope[data-theme="amber"] {
|
|
234
|
+
--primary: 38 92% 50%;
|
|
235
|
+
/* Amber 500 */
|
|
236
|
+
--accent: 38 92% 95%;
|
|
237
|
+
--accent-foreground: 38 92% 50%;
|
|
238
|
+
--ring: 38 92% 50%;
|
|
239
|
+
--card: 38 92% 98%;
|
|
240
|
+
/* Very light amber background */
|
|
241
|
+
--border: 38 92% 90%;
|
|
242
|
+
--chart-1: 38 92% 50%;
|
|
243
|
+
--chart-2: 45 95% 55%;
|
|
244
|
+
--chart-3: 52 95% 65%;
|
|
245
|
+
--chart-4: 58 95% 75%;
|
|
246
|
+
--chart-5: 65 95% 85%;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/* 6. Midnight (Deep Indigo/Dark) */
|
|
250
|
+
|
|
251
|
+
.xcml-scope [data-theme="midnight"],
|
|
252
|
+
.xcml-scope[data-theme="midnight"] {
|
|
253
|
+
--primary: 224 71% 45%;
|
|
254
|
+
/* Blue 600ish */
|
|
255
|
+
--accent: 224 71% 25%;
|
|
256
|
+
--accent-foreground: 0 0% 100%;
|
|
257
|
+
--ring: 224 71% 45%;
|
|
258
|
+
--card: 224 71% 10%;
|
|
259
|
+
/* Deep dark blue background */
|
|
260
|
+
--card-foreground: 0 0% 98%;
|
|
261
|
+
--border: 224 71% 20%;
|
|
262
|
+
--chart-1: 224 71% 45%;
|
|
263
|
+
--chart-2: 220 60% 55%;
|
|
264
|
+
--chart-3: 215 50% 65%;
|
|
265
|
+
--chart-4: 210 40% 75%;
|
|
266
|
+
--chart-5: 205 30% 85%;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/* 7. Forest (Deep Green) */
|
|
270
|
+
|
|
271
|
+
.xcml-scope [data-theme="forest"],
|
|
272
|
+
.xcml-scope[data-theme="forest"] {
|
|
273
|
+
--primary: 142 76% 45%;
|
|
274
|
+
/* Green 600ish */
|
|
275
|
+
--accent: 142 76% 25%;
|
|
276
|
+
--accent-foreground: 0 0% 100%;
|
|
277
|
+
--ring: 142 76% 45%;
|
|
278
|
+
--card: 142 76% 10%;
|
|
279
|
+
/* Deep dark green background */
|
|
280
|
+
--card-foreground: 0 0% 98%;
|
|
281
|
+
--border: 142 76% 20%;
|
|
282
|
+
--chart-1: 142 76% 45%;
|
|
283
|
+
--chart-2: 145 60% 55%;
|
|
284
|
+
--chart-3: 150 50% 65%;
|
|
285
|
+
--chart-4: 155 40% 75%;
|
|
286
|
+
--chart-5: 160 30% 85%;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
/* 8. Slate (Professional Gray) */
|
|
290
|
+
|
|
291
|
+
.xcml-scope [data-theme="slate"],
|
|
292
|
+
.xcml-scope[data-theme="slate"] {
|
|
293
|
+
--primary: 215 25% 27%;
|
|
294
|
+
/* Slate 800 */
|
|
295
|
+
--accent: 215 25% 92%;
|
|
296
|
+
--accent-foreground: 215 25% 27%;
|
|
297
|
+
--ring: 215 25% 27%;
|
|
298
|
+
--card: 215 25% 98%;
|
|
299
|
+
--border: 215 25% 90%;
|
|
300
|
+
--chart-1: 215 25% 27%;
|
|
301
|
+
--chart-2: 215 20% 40%;
|
|
302
|
+
--chart-3: 215 15% 55%;
|
|
303
|
+
--chart-4: 215 10% 70%;
|
|
304
|
+
--chart-5: 215 5% 85%;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
/* 9. Crimson (Wine Red) */
|
|
308
|
+
|
|
309
|
+
.xcml-scope [data-theme="crimson"],
|
|
310
|
+
.xcml-scope[data-theme="crimson"] {
|
|
311
|
+
--primary: 347 77% 35%;
|
|
312
|
+
/* Crimson 900ish */
|
|
313
|
+
--accent: 347 77% 92%;
|
|
314
|
+
--accent-foreground: 347 77% 35%;
|
|
315
|
+
--ring: 347 77% 35%;
|
|
316
|
+
--card: 347 77% 98%;
|
|
317
|
+
--border: 347 77% 90%;
|
|
318
|
+
--chart-1: 347 77% 35%;
|
|
319
|
+
--chart-2: 350 60% 45%;
|
|
320
|
+
--chart-3: 355 50% 55%;
|
|
321
|
+
--chart-4: 0 40% 65%;
|
|
322
|
+
--chart-5: 5 30% 75%;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/* 10. Cyan (Teal/Cyan) */
|
|
326
|
+
|
|
327
|
+
.xcml-scope [data-theme="cyan"],
|
|
328
|
+
.xcml-scope[data-theme="cyan"] {
|
|
329
|
+
--primary: 188 86% 40%;
|
|
330
|
+
/* Cyan 600 */
|
|
331
|
+
--accent: 188 86% 95%;
|
|
332
|
+
--accent-foreground: 188 86% 40%;
|
|
333
|
+
--ring: 188 86% 40%;
|
|
334
|
+
--card: 188 86% 98%;
|
|
335
|
+
--border: 188 86% 90%;
|
|
336
|
+
--chart-1: 188 86% 40%;
|
|
337
|
+
--chart-2: 185 75% 50%;
|
|
338
|
+
--chart-3: 180 65% 60%;
|
|
339
|
+
--chart-4: 175 55% 70%;
|
|
340
|
+
--chart-5: 170 45% 80%;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/* 11. Brand (Primary Background) */
|
|
344
|
+
|
|
345
|
+
.xcml-scope [data-theme="brand"],
|
|
346
|
+
.xcml-scope[data-theme="brand"] {
|
|
347
|
+
--card: 161 94% 30%;
|
|
348
|
+
/* Emerald 600 */
|
|
349
|
+
--card-foreground: 0 0% 100%;
|
|
350
|
+
--primary: 0 0% 100%;
|
|
351
|
+
--primary-foreground: 161 94% 30%;
|
|
352
|
+
--border: 161 94% 25%;
|
|
353
|
+
--muted: 161 94% 25%;
|
|
354
|
+
--muted-foreground: 161 94% 80%;
|
|
355
|
+
--accent: 161 94% 40%;
|
|
356
|
+
--accent-foreground: 0 0% 100%;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/* 12. Deep (Very Dark) */
|
|
360
|
+
|
|
361
|
+
.xcml-scope [data-theme="deep"],
|
|
362
|
+
.xcml-scope[data-theme="deep"] {
|
|
363
|
+
--card: 224 71% 4%;
|
|
364
|
+
/* Slate 950 */
|
|
365
|
+
--card-foreground: 210 20% 98%;
|
|
366
|
+
--primary: 161 94% 30%;
|
|
367
|
+
--border: 224 71% 12%;
|
|
368
|
+
--muted: 224 71% 12%;
|
|
369
|
+
--muted-foreground: 215 20% 65%;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.xcml-scope :is( *) {
|
|
373
|
+
border-color: hsl(var(--border));
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.xcml-scope {
|
|
377
|
+
background-color: hsl(var(--background));
|
|
378
|
+
color: hsl(var(--foreground));
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
*, ::before, ::after {
|
|
382
|
+
--tw-border-spacing-x: 0;
|
|
383
|
+
--tw-border-spacing-y: 0;
|
|
384
|
+
--tw-translate-x: 0;
|
|
385
|
+
--tw-translate-y: 0;
|
|
386
|
+
--tw-rotate: 0;
|
|
387
|
+
--tw-skew-x: 0;
|
|
388
|
+
--tw-skew-y: 0;
|
|
389
|
+
--tw-scale-x: 1;
|
|
390
|
+
--tw-scale-y: 1;
|
|
391
|
+
--tw-pan-x: ;
|
|
392
|
+
--tw-pan-y: ;
|
|
393
|
+
--tw-pinch-zoom: ;
|
|
394
|
+
--tw-scroll-snap-strictness: proximity;
|
|
395
|
+
--tw-gradient-from-position: ;
|
|
396
|
+
--tw-gradient-via-position: ;
|
|
397
|
+
--tw-gradient-to-position: ;
|
|
398
|
+
--tw-ordinal: ;
|
|
399
|
+
--tw-slashed-zero: ;
|
|
400
|
+
--tw-numeric-figure: ;
|
|
401
|
+
--tw-numeric-spacing: ;
|
|
402
|
+
--tw-numeric-fraction: ;
|
|
403
|
+
--tw-ring-inset: ;
|
|
404
|
+
--tw-ring-offset-width: 0px;
|
|
405
|
+
--tw-ring-offset-color: #fff;
|
|
406
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
407
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
408
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
409
|
+
--tw-shadow: 0 0 #0000;
|
|
410
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
411
|
+
--tw-blur: ;
|
|
412
|
+
--tw-brightness: ;
|
|
413
|
+
--tw-contrast: ;
|
|
414
|
+
--tw-grayscale: ;
|
|
415
|
+
--tw-hue-rotate: ;
|
|
416
|
+
--tw-invert: ;
|
|
417
|
+
--tw-saturate: ;
|
|
418
|
+
--tw-sepia: ;
|
|
419
|
+
--tw-drop-shadow: ;
|
|
420
|
+
--tw-backdrop-blur: ;
|
|
421
|
+
--tw-backdrop-brightness: ;
|
|
422
|
+
--tw-backdrop-contrast: ;
|
|
423
|
+
--tw-backdrop-grayscale: ;
|
|
424
|
+
--tw-backdrop-hue-rotate: ;
|
|
425
|
+
--tw-backdrop-invert: ;
|
|
426
|
+
--tw-backdrop-opacity: ;
|
|
427
|
+
--tw-backdrop-saturate: ;
|
|
428
|
+
--tw-backdrop-sepia: ;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
::backdrop {
|
|
432
|
+
--tw-border-spacing-x: 0;
|
|
433
|
+
--tw-border-spacing-y: 0;
|
|
434
|
+
--tw-translate-x: 0;
|
|
435
|
+
--tw-translate-y: 0;
|
|
436
|
+
--tw-rotate: 0;
|
|
437
|
+
--tw-skew-x: 0;
|
|
438
|
+
--tw-skew-y: 0;
|
|
439
|
+
--tw-scale-x: 1;
|
|
440
|
+
--tw-scale-y: 1;
|
|
441
|
+
--tw-pan-x: ;
|
|
442
|
+
--tw-pan-y: ;
|
|
443
|
+
--tw-pinch-zoom: ;
|
|
444
|
+
--tw-scroll-snap-strictness: proximity;
|
|
445
|
+
--tw-gradient-from-position: ;
|
|
446
|
+
--tw-gradient-via-position: ;
|
|
447
|
+
--tw-gradient-to-position: ;
|
|
448
|
+
--tw-ordinal: ;
|
|
449
|
+
--tw-slashed-zero: ;
|
|
450
|
+
--tw-numeric-figure: ;
|
|
451
|
+
--tw-numeric-spacing: ;
|
|
452
|
+
--tw-numeric-fraction: ;
|
|
453
|
+
--tw-ring-inset: ;
|
|
454
|
+
--tw-ring-offset-width: 0px;
|
|
455
|
+
--tw-ring-offset-color: #fff;
|
|
456
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
457
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
458
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
459
|
+
--tw-shadow: 0 0 #0000;
|
|
460
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
461
|
+
--tw-blur: ;
|
|
462
|
+
--tw-brightness: ;
|
|
463
|
+
--tw-contrast: ;
|
|
464
|
+
--tw-grayscale: ;
|
|
465
|
+
--tw-hue-rotate: ;
|
|
466
|
+
--tw-invert: ;
|
|
467
|
+
--tw-saturate: ;
|
|
468
|
+
--tw-sepia: ;
|
|
469
|
+
--tw-drop-shadow: ;
|
|
470
|
+
--tw-backdrop-blur: ;
|
|
471
|
+
--tw-backdrop-brightness: ;
|
|
472
|
+
--tw-backdrop-contrast: ;
|
|
473
|
+
--tw-backdrop-grayscale: ;
|
|
474
|
+
--tw-backdrop-hue-rotate: ;
|
|
475
|
+
--tw-backdrop-invert: ;
|
|
476
|
+
--tw-backdrop-opacity: ;
|
|
477
|
+
--tw-backdrop-saturate: ;
|
|
478
|
+
--tw-backdrop-sepia: ;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.container {
|
|
482
|
+
width: 100%;
|
|
483
|
+
margin-right: auto;
|
|
484
|
+
margin-left: auto;
|
|
485
|
+
padding-right: 2rem;
|
|
486
|
+
padding-left: 2rem;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
@media (min-width: 1400px) {
|
|
490
|
+
.container {
|
|
491
|
+
max-width: 1400px;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.prose {
|
|
496
|
+
color: var(--tw-prose-body);
|
|
497
|
+
max-width: 65ch;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
501
|
+
margin-top: 1.25em;
|
|
502
|
+
margin-bottom: 1.25em;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
506
|
+
color: var(--tw-prose-lead);
|
|
507
|
+
font-size: 1.25em;
|
|
508
|
+
line-height: 1.6;
|
|
509
|
+
margin-top: 1.2em;
|
|
510
|
+
margin-bottom: 1.2em;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
514
|
+
color: var(--tw-prose-links);
|
|
515
|
+
text-decoration: underline;
|
|
516
|
+
font-weight: 500;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
520
|
+
color: var(--tw-prose-bold);
|
|
521
|
+
font-weight: 600;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
525
|
+
color: inherit;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
529
|
+
color: inherit;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
533
|
+
color: inherit;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
537
|
+
list-style-type: decimal;
|
|
538
|
+
margin-top: 1.25em;
|
|
539
|
+
margin-bottom: 1.25em;
|
|
540
|
+
padding-inline-start: 1.625em;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
544
|
+
list-style-type: upper-alpha;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
548
|
+
list-style-type: lower-alpha;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
552
|
+
list-style-type: upper-alpha;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
556
|
+
list-style-type: lower-alpha;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
560
|
+
list-style-type: upper-roman;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
564
|
+
list-style-type: lower-roman;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
568
|
+
list-style-type: upper-roman;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
572
|
+
list-style-type: lower-roman;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
576
|
+
list-style-type: decimal;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
580
|
+
list-style-type: disc;
|
|
581
|
+
margin-top: 1.25em;
|
|
582
|
+
margin-bottom: 1.25em;
|
|
583
|
+
padding-inline-start: 1.625em;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
|
|
587
|
+
font-weight: 400;
|
|
588
|
+
color: var(--tw-prose-counters);
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
|
|
592
|
+
color: var(--tw-prose-bullets);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
596
|
+
color: var(--tw-prose-headings);
|
|
597
|
+
font-weight: 600;
|
|
598
|
+
margin-top: 1.25em;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
602
|
+
border-color: var(--tw-prose-hr);
|
|
603
|
+
border-top-width: 1px;
|
|
604
|
+
margin-top: 3em;
|
|
605
|
+
margin-bottom: 3em;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
609
|
+
font-weight: 500;
|
|
610
|
+
font-style: italic;
|
|
611
|
+
color: var(--tw-prose-quotes);
|
|
612
|
+
border-inline-start-width: 0.25rem;
|
|
613
|
+
border-inline-start-color: var(--tw-prose-quote-borders);
|
|
614
|
+
quotes: "\201C""\201D""\2018""\2019";
|
|
615
|
+
margin-top: 1.6em;
|
|
616
|
+
margin-bottom: 1.6em;
|
|
617
|
+
padding-inline-start: 1em;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
|
|
621
|
+
content: open-quote;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
|
|
625
|
+
content: close-quote;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
629
|
+
color: var(--tw-prose-headings);
|
|
630
|
+
font-weight: 800;
|
|
631
|
+
font-size: 2.25em;
|
|
632
|
+
margin-top: 0;
|
|
633
|
+
margin-bottom: 0.8888889em;
|
|
634
|
+
line-height: 1.1111111;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
638
|
+
font-weight: 900;
|
|
639
|
+
color: inherit;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
643
|
+
color: var(--tw-prose-headings);
|
|
644
|
+
font-weight: 700;
|
|
645
|
+
font-size: 1.5em;
|
|
646
|
+
margin-top: 2em;
|
|
647
|
+
margin-bottom: 1em;
|
|
648
|
+
line-height: 1.3333333;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
652
|
+
font-weight: 800;
|
|
653
|
+
color: inherit;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
657
|
+
color: var(--tw-prose-headings);
|
|
658
|
+
font-weight: 600;
|
|
659
|
+
font-size: 1.25em;
|
|
660
|
+
margin-top: 1.6em;
|
|
661
|
+
margin-bottom: 0.6em;
|
|
662
|
+
line-height: 1.6;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
666
|
+
font-weight: 700;
|
|
667
|
+
color: inherit;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
671
|
+
color: var(--tw-prose-headings);
|
|
672
|
+
font-weight: 600;
|
|
673
|
+
margin-top: 1.5em;
|
|
674
|
+
margin-bottom: 0.5em;
|
|
675
|
+
line-height: 1.5;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
679
|
+
font-weight: 700;
|
|
680
|
+
color: inherit;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
684
|
+
margin-top: 2em;
|
|
685
|
+
margin-bottom: 2em;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
689
|
+
display: block;
|
|
690
|
+
margin-top: 2em;
|
|
691
|
+
margin-bottom: 2em;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
695
|
+
margin-top: 2em;
|
|
696
|
+
margin-bottom: 2em;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
700
|
+
font-weight: 500;
|
|
701
|
+
font-family: inherit;
|
|
702
|
+
color: var(--tw-prose-kbd);
|
|
703
|
+
box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
|
|
704
|
+
font-size: 0.875em;
|
|
705
|
+
border-radius: 0.3125rem;
|
|
706
|
+
padding-top: 0.1875em;
|
|
707
|
+
padding-inline-end: 0.375em;
|
|
708
|
+
padding-bottom: 0.1875em;
|
|
709
|
+
padding-inline-start: 0.375em;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
713
|
+
color: var(--tw-prose-code);
|
|
714
|
+
font-weight: 600;
|
|
715
|
+
font-size: 0.875em;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
|
|
719
|
+
content: "`";
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
|
|
723
|
+
content: "`";
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
727
|
+
color: inherit;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
731
|
+
color: inherit;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
735
|
+
color: inherit;
|
|
736
|
+
font-size: 0.875em;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
740
|
+
color: inherit;
|
|
741
|
+
font-size: 0.9em;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
745
|
+
color: inherit;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
749
|
+
color: inherit;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
753
|
+
color: inherit;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
757
|
+
color: var(--tw-prose-pre-code);
|
|
758
|
+
background-color: var(--tw-prose-pre-bg);
|
|
759
|
+
overflow-x: auto;
|
|
760
|
+
font-weight: 400;
|
|
761
|
+
font-size: 0.875em;
|
|
762
|
+
line-height: 1.7142857;
|
|
763
|
+
margin-top: 1.7142857em;
|
|
764
|
+
margin-bottom: 1.7142857em;
|
|
765
|
+
border-radius: 0.375rem;
|
|
766
|
+
padding-top: 0.8571429em;
|
|
767
|
+
padding-inline-end: 1.1428571em;
|
|
768
|
+
padding-bottom: 0.8571429em;
|
|
769
|
+
padding-inline-start: 1.1428571em;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
773
|
+
background-color: transparent;
|
|
774
|
+
border-width: 0;
|
|
775
|
+
border-radius: 0;
|
|
776
|
+
padding: 0;
|
|
777
|
+
font-weight: inherit;
|
|
778
|
+
color: inherit;
|
|
779
|
+
font-size: inherit;
|
|
780
|
+
font-family: inherit;
|
|
781
|
+
line-height: inherit;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
|
|
785
|
+
content: none;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
|
|
789
|
+
content: none;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
793
|
+
width: 100%;
|
|
794
|
+
table-layout: auto;
|
|
795
|
+
margin-top: 2em;
|
|
796
|
+
margin-bottom: 2em;
|
|
797
|
+
font-size: 0.875em;
|
|
798
|
+
line-height: 1.7142857;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
802
|
+
border-bottom-width: 1px;
|
|
803
|
+
border-bottom-color: var(--tw-prose-th-borders);
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
807
|
+
color: var(--tw-prose-headings);
|
|
808
|
+
font-weight: 600;
|
|
809
|
+
vertical-align: bottom;
|
|
810
|
+
padding-inline-end: 0.5714286em;
|
|
811
|
+
padding-bottom: 0.5714286em;
|
|
812
|
+
padding-inline-start: 0.5714286em;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
816
|
+
border-bottom-width: 1px;
|
|
817
|
+
border-bottom-color: var(--tw-prose-td-borders);
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
821
|
+
border-bottom-width: 0;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
825
|
+
vertical-align: baseline;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
829
|
+
border-top-width: 1px;
|
|
830
|
+
border-top-color: var(--tw-prose-th-borders);
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
834
|
+
vertical-align: top;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
838
|
+
text-align: start;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
842
|
+
margin-top: 0;
|
|
843
|
+
margin-bottom: 0;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
847
|
+
color: var(--tw-prose-captions);
|
|
848
|
+
font-size: 0.875em;
|
|
849
|
+
line-height: 1.4285714;
|
|
850
|
+
margin-top: 0.8571429em;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.prose {
|
|
854
|
+
--tw-prose-body: #374151;
|
|
855
|
+
--tw-prose-headings: #111827;
|
|
856
|
+
--tw-prose-lead: #4b5563;
|
|
857
|
+
--tw-prose-links: #111827;
|
|
858
|
+
--tw-prose-bold: #111827;
|
|
859
|
+
--tw-prose-counters: #6b7280;
|
|
860
|
+
--tw-prose-bullets: #d1d5db;
|
|
861
|
+
--tw-prose-hr: #e5e7eb;
|
|
862
|
+
--tw-prose-quotes: #111827;
|
|
863
|
+
--tw-prose-quote-borders: #e5e7eb;
|
|
864
|
+
--tw-prose-captions: #6b7280;
|
|
865
|
+
--tw-prose-kbd: #111827;
|
|
866
|
+
--tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
|
|
867
|
+
--tw-prose-code: #111827;
|
|
868
|
+
--tw-prose-pre-code: #e5e7eb;
|
|
869
|
+
--tw-prose-pre-bg: #1f2937;
|
|
870
|
+
--tw-prose-th-borders: #d1d5db;
|
|
871
|
+
--tw-prose-td-borders: #e5e7eb;
|
|
872
|
+
--tw-prose-invert-body: #d1d5db;
|
|
873
|
+
--tw-prose-invert-headings: #fff;
|
|
874
|
+
--tw-prose-invert-lead: #9ca3af;
|
|
875
|
+
--tw-prose-invert-links: #fff;
|
|
876
|
+
--tw-prose-invert-bold: #fff;
|
|
877
|
+
--tw-prose-invert-counters: #9ca3af;
|
|
878
|
+
--tw-prose-invert-bullets: #4b5563;
|
|
879
|
+
--tw-prose-invert-hr: #374151;
|
|
880
|
+
--tw-prose-invert-quotes: #f3f4f6;
|
|
881
|
+
--tw-prose-invert-quote-borders: #374151;
|
|
882
|
+
--tw-prose-invert-captions: #9ca3af;
|
|
883
|
+
--tw-prose-invert-kbd: #fff;
|
|
884
|
+
--tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
|
|
885
|
+
--tw-prose-invert-code: #fff;
|
|
886
|
+
--tw-prose-invert-pre-code: #d1d5db;
|
|
887
|
+
--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
|
|
888
|
+
--tw-prose-invert-th-borders: #4b5563;
|
|
889
|
+
--tw-prose-invert-td-borders: #374151;
|
|
890
|
+
font-size: 1rem;
|
|
891
|
+
line-height: 1.75;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
895
|
+
margin-top: 0;
|
|
896
|
+
margin-bottom: 0;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
900
|
+
margin-top: 0.5em;
|
|
901
|
+
margin-bottom: 0.5em;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
905
|
+
padding-inline-start: 0.375em;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
909
|
+
padding-inline-start: 0.375em;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
913
|
+
margin-top: 0.75em;
|
|
914
|
+
margin-bottom: 0.75em;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
918
|
+
margin-top: 1.25em;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
922
|
+
margin-bottom: 1.25em;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
926
|
+
margin-top: 1.25em;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
930
|
+
margin-bottom: 1.25em;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
934
|
+
margin-top: 0.75em;
|
|
935
|
+
margin-bottom: 0.75em;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
939
|
+
margin-top: 1.25em;
|
|
940
|
+
margin-bottom: 1.25em;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
944
|
+
margin-top: 0.5em;
|
|
945
|
+
padding-inline-start: 1.625em;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
949
|
+
margin-top: 0;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
953
|
+
margin-top: 0;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
957
|
+
margin-top: 0;
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
961
|
+
margin-top: 0;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
965
|
+
padding-inline-start: 0;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
969
|
+
padding-inline-end: 0;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
973
|
+
padding-top: 0.5714286em;
|
|
974
|
+
padding-inline-end: 0.5714286em;
|
|
975
|
+
padding-bottom: 0.5714286em;
|
|
976
|
+
padding-inline-start: 0.5714286em;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
980
|
+
padding-inline-start: 0;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
984
|
+
padding-inline-end: 0;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
988
|
+
margin-top: 2em;
|
|
989
|
+
margin-bottom: 2em;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
993
|
+
margin-top: 0;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
|
|
997
|
+
margin-bottom: 0;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.xcml-scope :is(.visible) {
|
|
1001
|
+
visibility: visible;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.xcml-scope :is(.static) {
|
|
1005
|
+
position: static;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.xcml-scope :is(.absolute) {
|
|
1009
|
+
position: absolute;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.xcml-scope :is(.relative) {
|
|
1013
|
+
position: relative;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.xcml-scope :is(.-inset-x-4) {
|
|
1017
|
+
left: -1rem;
|
|
1018
|
+
right: -1rem;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.xcml-scope :is(.-top-3) {
|
|
1022
|
+
top: -0.75rem;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.xcml-scope :is(.bottom-0) {
|
|
1026
|
+
bottom: 0px;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.xcml-scope :is(.bottom-4) {
|
|
1030
|
+
bottom: 1rem;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.xcml-scope :is(.left-0) {
|
|
1034
|
+
left: 0px;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.xcml-scope :is(.left-\[15px\]) {
|
|
1038
|
+
left: 15px;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.xcml-scope :is(.right-0) {
|
|
1042
|
+
right: 0px;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.xcml-scope :is(.right-1) {
|
|
1046
|
+
right: 0.25rem;
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
.xcml-scope :is(.top-0) {
|
|
1050
|
+
top: 0px;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.xcml-scope :is(.top-1) {
|
|
1054
|
+
top: 0.25rem;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.xcml-scope :is(.top-4) {
|
|
1058
|
+
top: 1rem;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.xcml-scope :is(.z-10) {
|
|
1062
|
+
z-index: 10;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.xcml-scope :is(.m-0) {
|
|
1066
|
+
margin: 0px;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.xcml-scope :is(.mx-0) {
|
|
1070
|
+
margin-left: 0px;
|
|
1071
|
+
margin-right: 0px;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.xcml-scope :is(.mx-0\.5) {
|
|
1075
|
+
margin-left: 0.125rem;
|
|
1076
|
+
margin-right: 0.125rem;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.xcml-scope :is(.mx-1) {
|
|
1080
|
+
margin-left: 0.25rem;
|
|
1081
|
+
margin-right: 0.25rem;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.xcml-scope :is(.mx-auto) {
|
|
1085
|
+
margin-left: auto;
|
|
1086
|
+
margin-right: auto;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.xcml-scope :is(.my-2) {
|
|
1090
|
+
margin-top: 0.5rem;
|
|
1091
|
+
margin-bottom: 0.5rem;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.xcml-scope :is(.my-4) {
|
|
1095
|
+
margin-top: 1rem;
|
|
1096
|
+
margin-bottom: 1rem;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.xcml-scope :is(.mb-1) {
|
|
1100
|
+
margin-bottom: 0.25rem;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.xcml-scope :is(.mb-2) {
|
|
1104
|
+
margin-bottom: 0.5rem;
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
.xcml-scope :is(.mb-3) {
|
|
1108
|
+
margin-bottom: 0.75rem;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.xcml-scope :is(.mb-4) {
|
|
1112
|
+
margin-bottom: 1rem;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
.xcml-scope :is(.mb-6) {
|
|
1116
|
+
margin-bottom: 1.5rem;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.xcml-scope :is(.mb-8) {
|
|
1120
|
+
margin-bottom: 2rem;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.xcml-scope :is(.ml-1) {
|
|
1124
|
+
margin-left: 0.25rem;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.xcml-scope :is(.ml-1\.5) {
|
|
1128
|
+
margin-left: 0.375rem;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.xcml-scope :is(.ml-2) {
|
|
1132
|
+
margin-left: 0.5rem;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
.xcml-scope :is(.mr-0) {
|
|
1136
|
+
margin-right: 0px;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
.xcml-scope :is(.mr-0\.5) {
|
|
1140
|
+
margin-right: 0.125rem;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.xcml-scope :is(.mr-1) {
|
|
1144
|
+
margin-right: 0.25rem;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
.xcml-scope :is(.mr-4) {
|
|
1148
|
+
margin-right: 1rem;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.xcml-scope :is(.mt-0) {
|
|
1152
|
+
margin-top: 0px;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
.xcml-scope :is(.mt-0\.5) {
|
|
1156
|
+
margin-top: 0.125rem;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.xcml-scope :is(.mt-1) {
|
|
1160
|
+
margin-top: 0.25rem;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.xcml-scope :is(.mt-2) {
|
|
1164
|
+
margin-top: 0.5rem;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
.xcml-scope :is(.mt-auto) {
|
|
1168
|
+
margin-top: auto;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
.xcml-scope :is(.mt-card-gap) {
|
|
1172
|
+
margin-top: var(--card-gap);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
.xcml-scope :is(.line-clamp-1) {
|
|
1176
|
+
overflow: hidden;
|
|
1177
|
+
display: -webkit-box;
|
|
1178
|
+
-webkit-box-orient: vertical;
|
|
1179
|
+
-webkit-line-clamp: 1;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
.xcml-scope :is(.block) {
|
|
1183
|
+
display: block;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.xcml-scope :is(.inline) {
|
|
1187
|
+
display: inline;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
.xcml-scope :is(.flex) {
|
|
1191
|
+
display: flex;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
.xcml-scope :is(.inline-flex) {
|
|
1195
|
+
display: inline-flex;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
.xcml-scope :is(.table) {
|
|
1199
|
+
display: table;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
.xcml-scope :is(.table-row) {
|
|
1203
|
+
display: table-row;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.xcml-scope :is(.grid) {
|
|
1207
|
+
display: grid;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.xcml-scope :is(.h-1) {
|
|
1211
|
+
height: 0.25rem;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.xcml-scope :is(.h-1\.5) {
|
|
1215
|
+
height: 0.375rem;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.xcml-scope :is(.h-10) {
|
|
1219
|
+
height: 2.5rem;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.xcml-scope :is(.h-12) {
|
|
1223
|
+
height: 3rem;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.xcml-scope :is(.h-2) {
|
|
1227
|
+
height: 0.5rem;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.xcml-scope :is(.h-4) {
|
|
1231
|
+
height: 1rem;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.xcml-scope :is(.h-6) {
|
|
1235
|
+
height: 1.5rem;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.xcml-scope :is(.h-7) {
|
|
1239
|
+
height: 1.75rem;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.xcml-scope :is(.h-8) {
|
|
1243
|
+
height: 2rem;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
.xcml-scope :is(.h-full) {
|
|
1247
|
+
height: 100%;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.xcml-scope :is(.max-h-\[500px\]) {
|
|
1251
|
+
max-height: 500px;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.xcml-scope :is(.min-h-0) {
|
|
1255
|
+
min-height: 0px;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.xcml-scope :is(.min-h-\[6rem\]) {
|
|
1259
|
+
min-height: 6rem;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
.xcml-scope :is(.w-0) {
|
|
1263
|
+
width: 0px;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.xcml-scope :is(.w-0\.5) {
|
|
1267
|
+
width: 0.125rem;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.xcml-scope :is(.w-1) {
|
|
1271
|
+
width: 0.25rem;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.xcml-scope :is(.w-1\.5) {
|
|
1275
|
+
width: 0.375rem;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.xcml-scope :is(.w-12) {
|
|
1279
|
+
width: 3rem;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.xcml-scope :is(.w-2) {
|
|
1283
|
+
width: 0.5rem;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.xcml-scope :is(.w-20) {
|
|
1287
|
+
width: 5rem;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.xcml-scope :is(.w-24) {
|
|
1291
|
+
width: 6rem;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.xcml-scope :is(.w-4) {
|
|
1295
|
+
width: 1rem;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
.xcml-scope :is(.w-8) {
|
|
1299
|
+
width: 2rem;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
.xcml-scope :is(.w-\[375px\]) {
|
|
1303
|
+
width: 375px;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.xcml-scope :is(.w-\[var\(--percent\)\]) {
|
|
1307
|
+
width: var(--percent);
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.xcml-scope :is(.w-full) {
|
|
1311
|
+
width: 100%;
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.xcml-scope :is(.w-px) {
|
|
1315
|
+
width: 1px;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.xcml-scope :is(.min-w-0) {
|
|
1319
|
+
min-width: 0px;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
.xcml-scope :is(.min-w-\[60px\]) {
|
|
1323
|
+
min-width: 60px;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.xcml-scope :is(.max-w-full) {
|
|
1327
|
+
max-width: 100%;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.xcml-scope :is(.max-w-none) {
|
|
1331
|
+
max-width: none;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.xcml-scope :is(.flex-1) {
|
|
1335
|
+
flex: 1 1 0%;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.xcml-scope :is(.shrink-0) {
|
|
1339
|
+
flex-shrink: 0;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.xcml-scope :is(.table-auto) {
|
|
1343
|
+
table-layout: auto;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.xcml-scope :is(.border-collapse) {
|
|
1347
|
+
border-collapse: collapse;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.xcml-scope :is(.scale-x-95) {
|
|
1351
|
+
--tw-scale-x: .95;
|
|
1352
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
.xcml-scope :is(.transform) {
|
|
1356
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
@keyframes pulse {
|
|
1360
|
+
50% {
|
|
1361
|
+
opacity: .5;
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.xcml-scope :is(.animate-pulse) {
|
|
1366
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.xcml-scope :is(.cursor-default) {
|
|
1370
|
+
cursor: default;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.xcml-scope :is(.cursor-help) {
|
|
1374
|
+
cursor: help;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.xcml-scope :is(.cursor-pointer) {
|
|
1378
|
+
cursor: pointer;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.xcml-scope :is(.resize) {
|
|
1382
|
+
resize: both;
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1385
|
+
.xcml-scope :is(.scroll-mt-20) {
|
|
1386
|
+
scroll-margin-top: 5rem;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.xcml-scope :is(.list-none) {
|
|
1390
|
+
list-style-type: none;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.xcml-scope :is(.grid-cols-1) {
|
|
1394
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.xcml-scope :is(.grid-cols-2) {
|
|
1398
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.xcml-scope :is(.grid-cols-3) {
|
|
1402
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
.xcml-scope :is(.flex-row) {
|
|
1406
|
+
flex-direction: row;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
.xcml-scope :is(.flex-col) {
|
|
1410
|
+
flex-direction: column;
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
.xcml-scope :is(.flex-wrap) {
|
|
1414
|
+
flex-wrap: wrap;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1417
|
+
.xcml-scope :is(.items-start) {
|
|
1418
|
+
align-items: flex-start;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.xcml-scope :is(.items-end) {
|
|
1422
|
+
align-items: flex-end;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.xcml-scope :is(.items-center) {
|
|
1426
|
+
align-items: center;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.xcml-scope :is(.items-baseline) {
|
|
1430
|
+
align-items: baseline;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.xcml-scope :is(.justify-end) {
|
|
1434
|
+
justify-content: flex-end;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.xcml-scope :is(.justify-center) {
|
|
1438
|
+
justify-content: center;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.xcml-scope :is(.justify-between) {
|
|
1442
|
+
justify-content: space-between;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.xcml-scope :is(.gap-1) {
|
|
1446
|
+
gap: 0.25rem;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
.xcml-scope :is(.gap-1\.5) {
|
|
1450
|
+
gap: 0.375rem;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.xcml-scope :is(.gap-2) {
|
|
1454
|
+
gap: 0.5rem;
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
.xcml-scope :is(.gap-3) {
|
|
1458
|
+
gap: 0.75rem;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.xcml-scope :is(.gap-card-gap) {
|
|
1462
|
+
gap: var(--card-gap);
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.xcml-scope :is(.space-x-1 > :not([hidden]) ~ :not([hidden])) {
|
|
1466
|
+
--tw-space-x-reverse: 0;
|
|
1467
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1468
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.xcml-scope :is(.space-x-2 > :not([hidden]) ~ :not([hidden])) {
|
|
1472
|
+
--tw-space-x-reverse: 0;
|
|
1473
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1474
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.xcml-scope :is(.space-y-2 > :not([hidden]) ~ :not([hidden])) {
|
|
1478
|
+
--tw-space-y-reverse: 0;
|
|
1479
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1480
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
.xcml-scope :is(.space-y-4 > :not([hidden]) ~ :not([hidden])) {
|
|
1484
|
+
--tw-space-y-reverse: 0;
|
|
1485
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1486
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.xcml-scope :is(.space-y-6 > :not([hidden]) ~ :not([hidden])) {
|
|
1490
|
+
--tw-space-y-reverse: 0;
|
|
1491
|
+
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1492
|
+
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
.xcml-scope :is(.space-y-card-gap > :not([hidden]) ~ :not([hidden])) {
|
|
1496
|
+
--tw-space-y-reverse: 0;
|
|
1497
|
+
margin-top: calc(var(--card-gap) * calc(1 - var(--tw-space-y-reverse)));
|
|
1498
|
+
margin-bottom: calc(var(--card-gap) * var(--tw-space-y-reverse));
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.xcml-scope :is(.divide-y > :not([hidden]) ~ :not([hidden])) {
|
|
1502
|
+
--tw-divide-y-reverse: 0;
|
|
1503
|
+
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
1504
|
+
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.xcml-scope :is(.divide-border\/30 > :not([hidden]) ~ :not([hidden])) {
|
|
1508
|
+
border-color: hsl(var(--border) / 0.3);
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
.xcml-scope :is(.overflow-auto) {
|
|
1512
|
+
overflow: auto;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
.xcml-scope :is(.overflow-hidden) {
|
|
1516
|
+
overflow: hidden;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
.xcml-scope :is(.overflow-visible) {
|
|
1520
|
+
overflow: visible;
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
.xcml-scope :is(.overflow-x-auto) {
|
|
1524
|
+
overflow-x: auto;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
.xcml-scope :is(.overflow-x-hidden) {
|
|
1528
|
+
overflow-x: hidden;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
.xcml-scope :is(.overflow-y-visible) {
|
|
1532
|
+
overflow-y: visible;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
.xcml-scope :is(.whitespace-normal) {
|
|
1536
|
+
white-space: normal;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.xcml-scope :is(.whitespace-nowrap) {
|
|
1540
|
+
white-space: nowrap;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
.xcml-scope :is(.whitespace-pre-wrap) {
|
|
1544
|
+
white-space: pre-wrap;
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
.xcml-scope :is(.break-words) {
|
|
1548
|
+
overflow-wrap: break-word;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
.xcml-scope :is(.rounded) {
|
|
1552
|
+
border-radius: 0.25rem;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
.xcml-scope :is(.rounded-full) {
|
|
1556
|
+
border-radius: 9999px;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
.xcml-scope :is(.rounded-lg) {
|
|
1560
|
+
border-radius: var(--radius-lg);
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
.xcml-scope :is(.rounded-md) {
|
|
1564
|
+
border-radius: var(--radius-md);
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
.xcml-scope :is(.rounded-xl) {
|
|
1568
|
+
border-radius: var(--radius-xl);
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
.xcml-scope :is(.rounded-r-md) {
|
|
1572
|
+
border-top-right-radius: var(--radius-md);
|
|
1573
|
+
border-bottom-right-radius: var(--radius-md);
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.xcml-scope :is(.border) {
|
|
1577
|
+
border-width: 1px;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
.xcml-scope :is(.border-b) {
|
|
1581
|
+
border-bottom-width: 1px;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
.xcml-scope :is(.border-l-2) {
|
|
1585
|
+
border-left-width: 2px;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
.xcml-scope :is(.border-t) {
|
|
1589
|
+
border-top-width: 1px;
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
.xcml-scope :is(.border-t-2) {
|
|
1593
|
+
border-top-width: 2px;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.xcml-scope :is(.border-dashed) {
|
|
1597
|
+
border-style: dashed;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.xcml-scope :is(.border-none) {
|
|
1601
|
+
border-style: none;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
.xcml-scope :is(.border-amber-200) {
|
|
1605
|
+
--tw-border-opacity: 1;
|
|
1606
|
+
border-color: rgb(253 230 138 / var(--tw-border-opacity));
|
|
1607
|
+
}
|
|
1608
|
+
|
|
1609
|
+
.xcml-scope :is(.border-border) {
|
|
1610
|
+
border-color: hsl(var(--border));
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.xcml-scope :is(.border-border\/10) {
|
|
1614
|
+
border-color: hsl(var(--border) / 0.1);
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.xcml-scope :is(.border-border\/30) {
|
|
1618
|
+
border-color: hsl(var(--border) / 0.3);
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.xcml-scope :is(.border-border\/40) {
|
|
1622
|
+
border-color: hsl(var(--border) / 0.4);
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
.xcml-scope :is(.border-border\/50) {
|
|
1626
|
+
border-color: hsl(var(--border) / 0.5);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.xcml-scope :is(.border-border\/60) {
|
|
1630
|
+
border-color: hsl(var(--border) / 0.6);
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.xcml-scope :is(.border-border\/80) {
|
|
1634
|
+
border-color: hsl(var(--border) / 0.8);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.xcml-scope :is(.border-destructive\/20) {
|
|
1638
|
+
border-color: hsl(var(--destructive) / 0.2);
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
.xcml-scope :is(.border-primary\/20) {
|
|
1642
|
+
border-color: hsl(var(--primary) / 0.2);
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.xcml-scope :is(.border-primary\/30) {
|
|
1646
|
+
border-color: hsl(var(--primary) / 0.3);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.xcml-scope :is(.bg-amber-50\/50) {
|
|
1650
|
+
background-color: rgb(255 251 235 / 0.5);
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.xcml-scope :is(.bg-black\/5) {
|
|
1654
|
+
background-color: rgb(0 0 0 / 0.05);
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.xcml-scope :is(.bg-border\/50) {
|
|
1658
|
+
background-color: hsl(var(--border) / 0.5);
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.xcml-scope :is(.bg-card) {
|
|
1662
|
+
background-color: hsl(var(--card));
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.xcml-scope :is(.bg-card\/50) {
|
|
1666
|
+
background-color: hsl(var(--card) / 0.5);
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
.xcml-scope :is(.bg-destructive) {
|
|
1670
|
+
background-color: hsl(var(--destructive));
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.xcml-scope :is(.bg-destructive\/10) {
|
|
1674
|
+
background-color: hsl(var(--destructive) / 0.1);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.xcml-scope :is(.bg-destructive\/5) {
|
|
1678
|
+
background-color: hsl(var(--destructive) / 0.05);
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.xcml-scope :is(.bg-indigo-100) {
|
|
1682
|
+
--tw-bg-opacity: 1;
|
|
1683
|
+
background-color: rgb(224 231 255 / var(--tw-bg-opacity));
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
.xcml-scope :is(.bg-muted) {
|
|
1687
|
+
background-color: hsl(var(--muted));
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
.xcml-scope :is(.bg-muted\/10) {
|
|
1691
|
+
background-color: hsl(var(--muted) / 0.1);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.xcml-scope :is(.bg-muted\/20) {
|
|
1695
|
+
background-color: hsl(var(--muted) / 0.2);
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.xcml-scope :is(.bg-muted\/30) {
|
|
1699
|
+
background-color: hsl(var(--muted) / 0.3);
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.xcml-scope :is(.bg-muted\/40) {
|
|
1703
|
+
background-color: hsl(var(--muted) / 0.4);
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
.xcml-scope :is(.bg-muted\/50) {
|
|
1707
|
+
background-color: hsl(var(--muted) / 0.5);
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
.xcml-scope :is(.bg-muted\/60) {
|
|
1711
|
+
background-color: hsl(var(--muted) / 0.6);
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
.xcml-scope :is(.bg-primary) {
|
|
1715
|
+
background-color: hsl(var(--primary));
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
.xcml-scope :is(.bg-primary\/10) {
|
|
1719
|
+
background-color: hsl(var(--primary) / 0.1);
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
.xcml-scope :is(.bg-primary\/15) {
|
|
1723
|
+
background-color: hsl(var(--primary) / 0.15);
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.xcml-scope :is(.bg-primary\/20) {
|
|
1727
|
+
background-color: hsl(var(--primary) / 0.2);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.xcml-scope :is(.bg-primary\/5) {
|
|
1731
|
+
background-color: hsl(var(--primary) / 0.05);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.xcml-scope :is(.bg-primary\/60) {
|
|
1735
|
+
background-color: hsl(var(--primary) / 0.6);
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
.xcml-scope :is(.bg-secondary\/50) {
|
|
1739
|
+
background-color: hsl(var(--secondary) / 0.5);
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.xcml-scope :is(.bg-success) {
|
|
1743
|
+
background-color: hsl(var(--success));
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.xcml-scope :is(.bg-success\/10) {
|
|
1747
|
+
background-color: hsl(var(--success) / 0.1);
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.xcml-scope :is(.bg-success\/5) {
|
|
1751
|
+
background-color: hsl(var(--success) / 0.05);
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
.xcml-scope :is(.bg-transparent) {
|
|
1755
|
+
background-color: transparent;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.xcml-scope :is(.bg-white) {
|
|
1759
|
+
--tw-bg-opacity: 1;
|
|
1760
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.xcml-scope :is(.bg-yellow-200) {
|
|
1764
|
+
--tw-bg-opacity: 1;
|
|
1765
|
+
background-color: rgb(254 240 138 / var(--tw-bg-opacity));
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
.xcml-scope :is(.bg-gradient-to-b) {
|
|
1769
|
+
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.xcml-scope :is(.bg-gradient-to-br) {
|
|
1773
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.xcml-scope :is(.bg-gradient-to-r) {
|
|
1777
|
+
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.xcml-scope :is(.from-foreground) {
|
|
1781
|
+
--tw-gradient-from: hsl(var(--foreground)) var(--tw-gradient-from-position);
|
|
1782
|
+
--tw-gradient-to: hsl(var(--foreground) / 0) var(--tw-gradient-to-position);
|
|
1783
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.xcml-scope :is(.from-primary) {
|
|
1787
|
+
--tw-gradient-from: hsl(var(--primary)) var(--tw-gradient-from-position);
|
|
1788
|
+
--tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
|
|
1789
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
.xcml-scope :is(.from-primary\/10) {
|
|
1793
|
+
--tw-gradient-from: hsl(var(--primary) / 0.1) var(--tw-gradient-from-position);
|
|
1794
|
+
--tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
|
|
1795
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
.xcml-scope :is(.via-foreground) {
|
|
1799
|
+
--tw-gradient-to: hsl(var(--foreground) / 0) var(--tw-gradient-to-position);
|
|
1800
|
+
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--foreground)) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
.xcml-scope :is(.via-primary\/30) {
|
|
1804
|
+
--tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
|
|
1805
|
+
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.3) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.xcml-scope :is(.via-primary\/60) {
|
|
1809
|
+
--tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
|
|
1810
|
+
--tw-gradient-stops: var(--tw-gradient-from), hsl(var(--primary) / 0.6) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
.xcml-scope :is(.to-foreground\/70) {
|
|
1814
|
+
--tw-gradient-to: hsl(var(--foreground) / 0.7) var(--tw-gradient-to-position);
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.xcml-scope :is(.to-primary\/10) {
|
|
1818
|
+
--tw-gradient-to: hsl(var(--primary) / 0.1) var(--tw-gradient-to-position);
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.xcml-scope :is(.to-primary\/20) {
|
|
1822
|
+
--tw-gradient-to: hsl(var(--primary) / 0.2) var(--tw-gradient-to-position);
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.xcml-scope :is(.bg-clip-text) {
|
|
1826
|
+
-webkit-background-clip: text;
|
|
1827
|
+
background-clip: text;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.xcml-scope :is(.object-cover) {
|
|
1831
|
+
-o-object-fit: cover;
|
|
1832
|
+
object-fit: cover;
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
.xcml-scope :is(.p-0) {
|
|
1836
|
+
padding: 0px;
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
.xcml-scope :is(.p-1) {
|
|
1840
|
+
padding: 0.25rem;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
.xcml-scope :is(.p-1\.5) {
|
|
1844
|
+
padding: 0.375rem;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
.xcml-scope :is(.p-2) {
|
|
1848
|
+
padding: 0.5rem;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.xcml-scope :is(.p-3) {
|
|
1852
|
+
padding: 0.75rem;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.xcml-scope :is(.p-4) {
|
|
1856
|
+
padding: 1rem;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
.xcml-scope :is(.p-8) {
|
|
1860
|
+
padding: 2rem;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.xcml-scope :is(.p-card) {
|
|
1864
|
+
padding: var(--card-padding);
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
.xcml-scope :is(.p-card-half) {
|
|
1868
|
+
padding: calc(var(--card-padding) / 2);
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.xcml-scope :is(.p-table-sm) {
|
|
1872
|
+
padding: var(--table-cell-padding-sm);
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.xcml-scope :is(.px-1) {
|
|
1876
|
+
padding-left: 0.25rem;
|
|
1877
|
+
padding-right: 0.25rem;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
.xcml-scope :is(.px-1\.5) {
|
|
1881
|
+
padding-left: 0.375rem;
|
|
1882
|
+
padding-right: 0.375rem;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.xcml-scope :is(.px-2) {
|
|
1886
|
+
padding-left: 0.5rem;
|
|
1887
|
+
padding-right: 0.5rem;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.xcml-scope :is(.px-3) {
|
|
1891
|
+
padding-left: 0.75rem;
|
|
1892
|
+
padding-right: 0.75rem;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.xcml-scope :is(.px-4) {
|
|
1896
|
+
padding-left: 1rem;
|
|
1897
|
+
padding-right: 1rem;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
.xcml-scope :is(.px-5) {
|
|
1901
|
+
padding-left: 1.25rem;
|
|
1902
|
+
padding-right: 1.25rem;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.xcml-scope :is(.px-6) {
|
|
1906
|
+
padding-left: 1.5rem;
|
|
1907
|
+
padding-right: 1.5rem;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.xcml-scope :is(.py-0) {
|
|
1911
|
+
padding-top: 0px;
|
|
1912
|
+
padding-bottom: 0px;
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.xcml-scope :is(.py-0\.5) {
|
|
1916
|
+
padding-top: 0.125rem;
|
|
1917
|
+
padding-bottom: 0.125rem;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.xcml-scope :is(.py-1) {
|
|
1921
|
+
padding-top: 0.25rem;
|
|
1922
|
+
padding-bottom: 0.25rem;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.xcml-scope :is(.py-12) {
|
|
1926
|
+
padding-top: 3rem;
|
|
1927
|
+
padding-bottom: 3rem;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
.xcml-scope :is(.py-2) {
|
|
1931
|
+
padding-top: 0.5rem;
|
|
1932
|
+
padding-bottom: 0.5rem;
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
.xcml-scope :is(.py-2\.5) {
|
|
1936
|
+
padding-top: 0.625rem;
|
|
1937
|
+
padding-bottom: 0.625rem;
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
.xcml-scope :is(.py-3) {
|
|
1941
|
+
padding-top: 0.75rem;
|
|
1942
|
+
padding-bottom: 0.75rem;
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
.xcml-scope :is(.py-3\.5) {
|
|
1946
|
+
padding-top: 0.875rem;
|
|
1947
|
+
padding-bottom: 0.875rem;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.xcml-scope :is(.py-5) {
|
|
1951
|
+
padding-top: 1.25rem;
|
|
1952
|
+
padding-bottom: 1.25rem;
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
.xcml-scope :is(.py-8) {
|
|
1956
|
+
padding-top: 2rem;
|
|
1957
|
+
padding-bottom: 2rem;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.xcml-scope :is(.pb-3) {
|
|
1961
|
+
padding-bottom: 0.75rem;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.xcml-scope :is(.pl-2) {
|
|
1965
|
+
padding-left: 0.5rem;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.xcml-scope :is(.pt-2) {
|
|
1969
|
+
padding-top: 0.5rem;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.xcml-scope :is(.pt-3) {
|
|
1973
|
+
padding-top: 0.75rem;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.xcml-scope :is(.pt-8) {
|
|
1977
|
+
padding-top: 2rem;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.xcml-scope :is(.text-center) {
|
|
1981
|
+
text-align: center;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.xcml-scope :is(.text-right) {
|
|
1985
|
+
text-align: right;
|
|
1986
|
+
}
|
|
1987
|
+
|
|
1988
|
+
.xcml-scope :is(.align-baseline) {
|
|
1989
|
+
vertical-align: baseline;
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
.xcml-scope :is(.align-middle) {
|
|
1993
|
+
vertical-align: middle;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
.xcml-scope :is(.font-mono) {
|
|
1997
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
.xcml-scope :is(.text-2xl) {
|
|
2001
|
+
font-size: var(--font-size-2xl);
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.xcml-scope :is(.text-3xl) {
|
|
2005
|
+
font-size: 1.875rem;
|
|
2006
|
+
line-height: 2.25rem;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
.xcml-scope :is(.text-\[10px\]) {
|
|
2010
|
+
font-size: 10px;
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
.xcml-scope :is(.text-\[11px\]) {
|
|
2014
|
+
font-size: 11px;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
.xcml-scope :is(.text-\[13\.5px\]) {
|
|
2018
|
+
font-size: 13.5px;
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
.xcml-scope :is(.text-base) {
|
|
2022
|
+
font-size: var(--font-size-base);
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
.xcml-scope :is(.text-lg) {
|
|
2026
|
+
font-size: var(--font-size-lg);
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
.xcml-scope :is(.text-metric) {
|
|
2030
|
+
font-size: var(--font-size-metric);
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
.xcml-scope :is(.text-metric-lg) {
|
|
2034
|
+
font-size: var(--font-size-metric-lg);
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
.xcml-scope :is(.text-sm) {
|
|
2038
|
+
font-size: var(--font-size-sm);
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
.xcml-scope :is(.text-xl) {
|
|
2042
|
+
font-size: var(--font-size-xl);
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
.xcml-scope :is(.text-xs) {
|
|
2046
|
+
font-size: var(--font-size-xs);
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.xcml-scope :is(.font-black) {
|
|
2050
|
+
font-weight: 900;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.xcml-scope :is(.font-bold) {
|
|
2054
|
+
font-weight: 700;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
.xcml-scope :is(.font-medium) {
|
|
2058
|
+
font-weight: 500;
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
.xcml-scope :is(.font-semibold) {
|
|
2062
|
+
font-weight: 600;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.xcml-scope :is(.uppercase) {
|
|
2066
|
+
text-transform: uppercase;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
.xcml-scope :is(.italic) {
|
|
2070
|
+
font-style: italic;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
.xcml-scope :is(.leading-normal) {
|
|
2074
|
+
line-height: 1.5;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
.xcml-scope :is(.leading-relaxed) {
|
|
2078
|
+
line-height: 1.625;
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
.xcml-scope :is(.leading-snug) {
|
|
2082
|
+
line-height: 1.375;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
.xcml-scope :is(.tracking-tight) {
|
|
2086
|
+
letter-spacing: -0.025em;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
.xcml-scope :is(.tracking-tighter) {
|
|
2090
|
+
letter-spacing: -0.05em;
|
|
2091
|
+
}
|
|
2092
|
+
|
|
2093
|
+
.xcml-scope :is(.tracking-wider) {
|
|
2094
|
+
letter-spacing: 0.05em;
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
.xcml-scope :is(.text-amber-500) {
|
|
2098
|
+
--tw-text-opacity: 1;
|
|
2099
|
+
color: rgb(245 158 11 / var(--tw-text-opacity));
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
.xcml-scope :is(.text-amber-600) {
|
|
2103
|
+
--tw-text-opacity: 1;
|
|
2104
|
+
color: rgb(217 119 6 / var(--tw-text-opacity));
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
.xcml-scope :is(.text-card-foreground) {
|
|
2108
|
+
color: hsl(var(--card-foreground));
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.xcml-scope :is(.text-destructive) {
|
|
2112
|
+
color: hsl(var(--destructive));
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.xcml-scope :is(.text-foreground) {
|
|
2116
|
+
color: hsl(var(--foreground));
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
.xcml-scope :is(.text-foreground\/80) {
|
|
2120
|
+
color: hsl(var(--foreground) / 0.8);
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.xcml-scope :is(.text-foreground\/90) {
|
|
2124
|
+
color: hsl(var(--foreground) / 0.9);
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
.xcml-scope :is(.text-green-500) {
|
|
2128
|
+
--tw-text-opacity: 1;
|
|
2129
|
+
color: rgb(34 197 94 / var(--tw-text-opacity));
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
.xcml-scope :is(.text-green-600) {
|
|
2133
|
+
--tw-text-opacity: 1;
|
|
2134
|
+
color: rgb(22 163 74 / var(--tw-text-opacity));
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
.xcml-scope :is(.text-indigo-500) {
|
|
2138
|
+
--tw-text-opacity: 1;
|
|
2139
|
+
color: rgb(99 102 241 / var(--tw-text-opacity));
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.xcml-scope :is(.text-muted-foreground) {
|
|
2143
|
+
color: hsl(var(--muted-foreground));
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
.xcml-scope :is(.text-muted-foreground\/30) {
|
|
2147
|
+
color: hsl(var(--muted-foreground) / 0.3);
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
.xcml-scope :is(.text-muted-foreground\/40) {
|
|
2151
|
+
color: hsl(var(--muted-foreground) / 0.4);
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
.xcml-scope :is(.text-muted-foreground\/50) {
|
|
2155
|
+
color: hsl(var(--muted-foreground) / 0.5);
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
.xcml-scope :is(.text-muted-foreground\/60) {
|
|
2159
|
+
color: hsl(var(--muted-foreground) / 0.6);
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
.xcml-scope :is(.text-primary) {
|
|
2163
|
+
color: hsl(var(--primary));
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
.xcml-scope :is(.text-primary\/90) {
|
|
2167
|
+
color: hsl(var(--primary) / 0.9);
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.xcml-scope :is(.text-red-500) {
|
|
2171
|
+
--tw-text-opacity: 1;
|
|
2172
|
+
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.xcml-scope :is(.text-red-600) {
|
|
2176
|
+
--tw-text-opacity: 1;
|
|
2177
|
+
color: rgb(220 38 38 / var(--tw-text-opacity));
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
.xcml-scope :is(.text-success) {
|
|
2181
|
+
color: hsl(var(--success));
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
.xcml-scope :is(.text-transparent) {
|
|
2185
|
+
color: transparent;
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
.xcml-scope :is(.no-underline) {
|
|
2189
|
+
text-decoration-line: none;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2192
|
+
.xcml-scope :is(.opacity-0) {
|
|
2193
|
+
opacity: 0;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
.xcml-scope :is(.opacity-100) {
|
|
2197
|
+
opacity: 1;
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
.xcml-scope :is(.opacity-20) {
|
|
2201
|
+
opacity: 0.2;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
.xcml-scope :is(.opacity-40) {
|
|
2205
|
+
opacity: 0.4;
|
|
2206
|
+
}
|
|
2207
|
+
|
|
2208
|
+
.xcml-scope :is(.opacity-70) {
|
|
2209
|
+
opacity: 0.7;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
.xcml-scope :is(.opacity-80) {
|
|
2213
|
+
opacity: 0.8;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
.xcml-scope :is(.opacity-90) {
|
|
2217
|
+
opacity: 0.9;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
.xcml-scope :is(.shadow-\[0_0_6px_rgba\(var\(--primary\)\2c 0\.2\)\]) {
|
|
2221
|
+
--tw-shadow: 0 0 6px rgba(var(--primary),0.2);
|
|
2222
|
+
--tw-shadow-colored: 0 0 6px var(--tw-shadow-color);
|
|
2223
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
.xcml-scope :is(.shadow-\[0_0_8px_rgba\(var\(--primary-rgb\)\2c 0\.4\)\]) {
|
|
2227
|
+
--tw-shadow: 0 0 8px rgba(var(--primary-rgb),0.4);
|
|
2228
|
+
--tw-shadow-colored: 0 0 8px var(--tw-shadow-color);
|
|
2229
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
.xcml-scope :is(.shadow-card) {
|
|
2233
|
+
--tw-shadow: var(--shadow-card);
|
|
2234
|
+
--tw-shadow-colored: var(--shadow-card);
|
|
2235
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.xcml-scope :is(.shadow-inner) {
|
|
2239
|
+
--tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
|
2240
|
+
--tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
|
|
2241
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.xcml-scope :is(.shadow-md) {
|
|
2245
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2246
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2247
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.xcml-scope :is(.shadow-sm) {
|
|
2251
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
2252
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
2253
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.xcml-scope :is(.shadow-card) {
|
|
2257
|
+
--tw-shadow-color: hsl(var(--card));
|
|
2258
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
.xcml-scope :is(.shadow-primary\/20) {
|
|
2262
|
+
--tw-shadow-color: hsl(var(--primary) / 0.2);
|
|
2263
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
.xcml-scope :is(.blur) {
|
|
2267
|
+
--tw-blur: blur(8px);
|
|
2268
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2269
|
+
}
|
|
2270
|
+
|
|
2271
|
+
.xcml-scope :is(.filter) {
|
|
2272
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.xcml-scope :is(.backdrop-blur-sm) {
|
|
2276
|
+
--tw-backdrop-blur: blur(4px);
|
|
2277
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
.xcml-scope :is(.transition-all) {
|
|
2281
|
+
transition-property: all;
|
|
2282
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2283
|
+
transition-duration: 150ms;
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
.xcml-scope :is(.transition-colors) {
|
|
2287
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
2288
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2289
|
+
transition-duration: 150ms;
|
|
2290
|
+
}
|
|
2291
|
+
|
|
2292
|
+
.xcml-scope :is(.transition-opacity) {
|
|
2293
|
+
transition-property: opacity;
|
|
2294
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2295
|
+
transition-duration: 150ms;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
.xcml-scope :is(.transition-transform) {
|
|
2299
|
+
transition-property: transform;
|
|
2300
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2301
|
+
transition-duration: 150ms;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.xcml-scope :is(.duration-150) {
|
|
2305
|
+
transition-duration: 150ms;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2308
|
+
.xcml-scope :is(.duration-300) {
|
|
2309
|
+
transition-duration: 300ms;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
.xcml-scope :is(.duration-500) {
|
|
2313
|
+
transition-duration: 500ms;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
.xcml-scope :is(.ease-out) {
|
|
2317
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
@keyframes enter {
|
|
2321
|
+
from {
|
|
2322
|
+
opacity: var(--tw-enter-opacity, 1);
|
|
2323
|
+
transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
@keyframes exit {
|
|
2328
|
+
to {
|
|
2329
|
+
opacity: var(--tw-exit-opacity, 1);
|
|
2330
|
+
transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
|
|
2331
|
+
}
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.xcml-scope :is(.duration-150) {
|
|
2335
|
+
animation-duration: 150ms;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.xcml-scope :is(.duration-300) {
|
|
2339
|
+
animation-duration: 300ms;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
.xcml-scope :is(.duration-500) {
|
|
2343
|
+
animation-duration: 500ms;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
.xcml-scope :is(.ease-out) {
|
|
2347
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.xcml-scope :is(.running) {
|
|
2351
|
+
animation-play-state: running;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.xcml-scope :is(.last\:mb-0:last-child) {
|
|
2355
|
+
margin-bottom: 0px;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
.xcml-scope :is(.hover\:border-primary:hover) {
|
|
2359
|
+
border-color: hsl(var(--primary));
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
.xcml-scope :is(.hover\:border-primary\/20:hover) {
|
|
2363
|
+
border-color: hsl(var(--primary) / 0.2);
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
.xcml-scope :is(.hover\:border-primary\/30:hover) {
|
|
2367
|
+
border-color: hsl(var(--primary) / 0.3);
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
.xcml-scope :is(.hover\:border-primary\/50:hover) {
|
|
2371
|
+
border-color: hsl(var(--primary) / 0.5);
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
.xcml-scope :is(.hover\:bg-background:hover) {
|
|
2375
|
+
background-color: hsl(var(--background));
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
.xcml-scope :is(.hover\:bg-card\/80:hover) {
|
|
2379
|
+
background-color: hsl(var(--card) / 0.8);
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
.xcml-scope :is(.hover\:bg-muted:hover) {
|
|
2383
|
+
background-color: hsl(var(--muted));
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
.xcml-scope :is(.hover\:bg-muted\/30:hover) {
|
|
2387
|
+
background-color: hsl(var(--muted) / 0.3);
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
.xcml-scope :is(.hover\:bg-primary\/5:hover) {
|
|
2391
|
+
background-color: hsl(var(--primary) / 0.05);
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
.xcml-scope :is(.hover\:text-primary:hover) {
|
|
2395
|
+
color: hsl(var(--primary));
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
.xcml-scope :is(.hover\:underline:hover) {
|
|
2399
|
+
text-decoration-line: underline;
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
.xcml-scope :is(.hover\:opacity-100:hover) {
|
|
2403
|
+
opacity: 1;
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
.xcml-scope :is(.hover\:shadow-card:hover) {
|
|
2407
|
+
--tw-shadow: var(--shadow-card);
|
|
2408
|
+
--tw-shadow-colored: var(--shadow-card);
|
|
2409
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
.xcml-scope :is(.hover\:shadow-card-hover:hover) {
|
|
2413
|
+
--tw-shadow: var(--shadow-card-hover);
|
|
2414
|
+
--tw-shadow-colored: var(--shadow-card-hover);
|
|
2415
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
.xcml-scope :is(.hover\:shadow-md:hover) {
|
|
2419
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2420
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2421
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.xcml-scope :is(.hover\:shadow-sm:hover) {
|
|
2425
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
2426
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
2427
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
.xcml-scope :is(.hover\:shadow-card:hover) {
|
|
2431
|
+
--tw-shadow-color: hsl(var(--card));
|
|
2432
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
.xcml-scope :is(.hover\:shadow-primary\/40:hover) {
|
|
2436
|
+
--tw-shadow-color: hsl(var(--primary) / 0.4);
|
|
2437
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
.xcml-scope :is(.hover\:ease-in-out:hover) {
|
|
2441
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2442
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.xcml-scope :is(.group:hover .group-hover\:-translate-y-0) {
|
|
2446
|
+
--tw-translate-y: -0px;
|
|
2447
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.xcml-scope :is(.group:hover .group-hover\:-translate-y-0\.5) {
|
|
2451
|
+
--tw-translate-y: -0.125rem;
|
|
2452
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
.xcml-scope :is(.group:hover .group-hover\:scale-110) {
|
|
2456
|
+
--tw-scale-x: 1.1;
|
|
2457
|
+
--tw-scale-y: 1.1;
|
|
2458
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
.xcml-scope :is(.group:hover .group-hover\:scale-x-100) {
|
|
2462
|
+
--tw-scale-x: 1;
|
|
2463
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
.xcml-scope :is(.group:hover .group-hover\:bg-primary\/10) {
|
|
2467
|
+
background-color: hsl(var(--primary) / 0.1);
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
.xcml-scope :is(.group:hover .group-hover\:bg-primary\/20) {
|
|
2471
|
+
background-color: hsl(var(--primary) / 0.2);
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
.xcml-scope :is(.group:hover .group-hover\:from-primary) {
|
|
2475
|
+
--tw-gradient-from: hsl(var(--primary)) var(--tw-gradient-from-position);
|
|
2476
|
+
--tw-gradient-to: hsl(var(--primary) / 0) var(--tw-gradient-to-position);
|
|
2477
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
.xcml-scope :is(.group:hover .group-hover\:to-pink-500) {
|
|
2481
|
+
--tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
.xcml-scope :is(.group:hover .group-hover\:text-primary) {
|
|
2485
|
+
color: hsl(var(--primary));
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
.xcml-scope :is(.group:hover .group-hover\:opacity-100) {
|
|
2489
|
+
opacity: 1;
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.xcml-scope :is(.prose-headings\:text-foreground :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2493
|
+
color: hsl(var(--foreground));
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
.xcml-scope :is(.prose-p\:text-foreground :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2497
|
+
color: hsl(var(--foreground));
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
.xcml-scope :is(.prose-a\:text-primary :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2501
|
+
color: hsl(var(--primary));
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.xcml-scope :is(.prose-strong\:text-foreground :is(:where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2505
|
+
color: hsl(var(--foreground));
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
.xcml-scope :is(.prose-code\:rounded :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2509
|
+
border-radius: 0.25rem;
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
.xcml-scope :is(.prose-code\:bg-muted\/50 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2513
|
+
background-color: hsl(var(--muted) / 0.5);
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.xcml-scope :is(.prose-code\:px-1 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2517
|
+
padding-left: 0.25rem;
|
|
2518
|
+
padding-right: 0.25rem;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
.xcml-scope :is(.prose-code\:py-0 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2522
|
+
padding-top: 0px;
|
|
2523
|
+
padding-bottom: 0px;
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
.xcml-scope :is(.prose-code\:py-0\.5 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2527
|
+
padding-top: 0.125rem;
|
|
2528
|
+
padding-bottom: 0.125rem;
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
.xcml-scope :is(.prose-code\:text-foreground :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2532
|
+
color: hsl(var(--foreground));
|
|
2533
|
+
}
|
|
2534
|
+
|
|
2535
|
+
.xcml-scope :is(.prose-pre\:bg-muted\/50 :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2536
|
+
background-color: hsl(var(--muted) / 0.5);
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
.xcml-scope :is(.prose-pre\:text-foreground :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2540
|
+
color: hsl(var(--foreground));
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
.xcml-scope :is(.prose-li\:text-foreground :is(:where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2544
|
+
color: hsl(var(--foreground));
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2547
|
+
.xcml-scope :is(.prose-th\:text-foreground :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2548
|
+
color: hsl(var(--foreground));
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
.xcml-scope :is(.prose-td\:text-foreground :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *)))) {
|
|
2552
|
+
color: hsl(var(--foreground));
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
@media (min-width: 768px) {
|
|
2556
|
+
.xcml-scope :is(.md\:grid-cols-3) {
|
|
2557
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
.xcml-scope :is(.md\:grid-cols-4) {
|
|
2561
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
.xcml-scope :is(.md\:grid-cols-5) {
|
|
2565
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2568
|
+
.xcml-scope :is(.md\:grid-cols-6) {
|
|
2569
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
.xcml-scope :is(.\[\&_\.ant-table-container\]\:\!w-full .ant-table-container) {
|
|
2574
|
+
width: 100% !important;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.xcml-scope :is(.\[\&_\.ant-table\]\:\!w-full .ant-table) {
|
|
2578
|
+
width: 100% !important;
|
|
2579
|
+
}
|