@howssatoshi/quantumcss 1.0.2 → 1.2.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 +42 -432
- package/dist/quantum.css +1086 -394
- package/dist/quantum.min.css +4162 -1
- package/package.json +3 -2
- package/src/cli.js +53 -0
- package/src/defaults.js +35 -166
- package/src/generator.js +199 -131
- package/src/styles/quantum-animations.css +73 -0
- package/src/styles/quantum-components.css +102 -32
- package/src/styles/quantum.css +76 -10
- package/src/styles/starlight-ui.css +295 -60
package/dist/quantum.css
CHANGED
|
@@ -1,207 +1,724 @@
|
|
|
1
|
-
/* Quantum CSS
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
img { display: block; max-width: 100%; height: auto; }
|
|
6
|
-
button { cursor: pointer; background: transparent; padding: 0; color: inherit; font: inherit; }
|
|
1
|
+
/* Quantum CSS JIT Output */
|
|
2
|
+
.p-12 {
|
|
3
|
+
padding: 3rem;
|
|
4
|
+
}
|
|
7
5
|
|
|
8
|
-
.
|
|
6
|
+
.max-w-4xl {
|
|
7
|
+
max-width: 4xl;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.mx-auto {
|
|
11
|
+
margin-left: auto;
|
|
12
|
+
margin-right: auto;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.space-y-12 > * + * {
|
|
16
|
+
margin-top: 3rem;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.text-4xl {
|
|
20
|
+
font-size: 2.5rem;
|
|
21
|
+
line-height: 1.2;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.space-y-4 > * + * {
|
|
25
|
+
margin-top: 1rem;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.text-xl {
|
|
29
|
+
font-size: 1.25rem;
|
|
30
|
+
line-height: 1.2;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.flex {
|
|
34
|
+
display: flex;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.gap-4 {
|
|
38
|
+
gap: 1rem;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.btn-primary {
|
|
42
|
+
background-color: #2563eb;
|
|
43
|
+
color: #ffffff;
|
|
44
|
+
padding-left: 1.5rem;
|
|
45
|
+
padding-right: 1.5rem;
|
|
46
|
+
padding-top: 0.5rem;
|
|
47
|
+
padding-bottom: 0.5rem;
|
|
48
|
+
border-radius: 0.5rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.btn-primary:hover {
|
|
52
|
+
background-color: #1d4ed8;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.btn-secondary {
|
|
56
|
+
background-color: #64748b;
|
|
57
|
+
color: #ffffff;
|
|
58
|
+
padding-left: 1.5rem;
|
|
59
|
+
padding-right: 1.5rem;
|
|
60
|
+
padding-top: 0.5rem;
|
|
61
|
+
padding-bottom: 0.5rem;
|
|
62
|
+
border-radius: 0.5rem;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.btn-secondary:hover {
|
|
66
|
+
background-color: #475569;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.card-premium {
|
|
70
|
+
background-color: #ffffff;
|
|
71
|
+
padding: 2rem;
|
|
72
|
+
border-radius: 1rem;
|
|
73
|
+
border-color: #f1f5f9;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.card-premium:hover {
|
|
77
|
+
transform: scale(1.05);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.max-w-sm {
|
|
81
|
+
max-width: sm;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.text-2xl {
|
|
85
|
+
font-size: 1.5rem;
|
|
86
|
+
line-height: 1.2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.mb-4 {
|
|
90
|
+
margin-bottom: 1rem;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.p-10 {
|
|
94
|
+
padding: 2.5rem;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.space-y-8 > * + * {
|
|
98
|
+
margin-top: 2rem;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.bg-black {
|
|
102
|
+
background-color: #000000;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.text-white {
|
|
106
|
+
color: #ffffff;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.top-0 {
|
|
110
|
+
top: 0px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.z-50 {
|
|
114
|
+
z-index: 50;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.glass {
|
|
118
|
+
background-color: rgba(255, 255, 255, 0.03);
|
|
119
|
+
backdrop-filter: blur(16px);
|
|
120
|
+
-webkit-backdrop-filter: blur(16px);
|
|
121
|
+
border-width: 1px;
|
|
122
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.p-4 {
|
|
126
|
+
padding: 1rem;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.mb-8 {
|
|
130
|
+
margin-bottom: 2rem;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.ml-4 {
|
|
134
|
+
margin-left: 1rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.mt-8 {
|
|
138
|
+
margin-top: 2rem;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.grid {
|
|
142
|
+
display: grid;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.grid-cols-1 {
|
|
146
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.bg-blue-500 {
|
|
150
|
+
background-color: #3b82f6;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.bg-red-500 {
|
|
154
|
+
background-color: #ef4444;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.input-starlight {
|
|
158
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
159
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
160
|
+
color: inherit;
|
|
161
|
+
border-radius: 0.75rem;
|
|
162
|
+
padding: 0 1rem;
|
|
163
|
+
appearance: none;
|
|
164
|
+
transition: all 0.2s ease;
|
|
165
|
+
height: 3rem;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.textarea-starlight {
|
|
169
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
170
|
+
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
171
|
+
color: inherit;
|
|
172
|
+
border-radius: 0.75rem;
|
|
173
|
+
padding: 1rem;
|
|
174
|
+
appearance: none;
|
|
175
|
+
transition: all 0.2s ease;
|
|
176
|
+
min-height: 8rem;
|
|
177
|
+
width: 100%;
|
|
9
178
|
display: block;
|
|
10
179
|
}
|
|
11
180
|
|
|
12
|
-
.
|
|
13
|
-
|
|
181
|
+
.bg-green-500 {
|
|
182
|
+
background-color: #10b981;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.mt-4 {
|
|
186
|
+
margin-top: 1rem;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.p-8 {
|
|
190
|
+
padding: 2rem;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.bg-starlight-deep {
|
|
194
|
+
background-color: #08081a;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.min-h-screen {
|
|
198
|
+
min-height: screen;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.max-w-144 {
|
|
202
|
+
max-width: 36rem;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.mb-20 {
|
|
206
|
+
margin-bottom: 5rem;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.pt-16 {
|
|
210
|
+
padding-top: 4rem;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.text-6xl {
|
|
214
|
+
font-size: 4rem;
|
|
215
|
+
line-height: 1.2;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.mb-6 {
|
|
219
|
+
margin-bottom: 1.5rem;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.text-gradient-starlight {
|
|
223
|
+
background: linear-gradient(to right, #ffb38a, #00d4ff);
|
|
224
|
+
-webkit-background-clip: text;
|
|
225
|
+
-webkit-text-fill-color: transparent;
|
|
226
|
+
display: inline-block;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.max-w-prose {
|
|
230
|
+
max-width: prose;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.mb-10 {
|
|
234
|
+
margin-bottom: 2.5rem;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.justify-center {
|
|
238
|
+
justify-content: center;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.gap-6 {
|
|
242
|
+
gap: 1.5rem;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.bg-starlight {
|
|
246
|
+
background: linear-gradient(135deg, #ffb38a 0%, #00d4ff 100%);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.text-black {
|
|
250
|
+
color: #000000;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.px-10 {
|
|
254
|
+
padding-left: 2.5rem;
|
|
255
|
+
padding-right: 2.5rem;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.py-4 {
|
|
259
|
+
padding-top: 1rem;
|
|
260
|
+
padding-bottom: 1rem;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.rounded-full {
|
|
264
|
+
border-radius: 9999px;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.glow-blue {
|
|
268
|
+
box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.scale-105 {
|
|
272
|
+
transform: scale(1.05);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.hover\:bg-white:hover {
|
|
276
|
+
background-color: #ffffff;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.border-none {
|
|
280
|
+
border-width: 0;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.px-12 {
|
|
284
|
+
padding-left: 3rem;
|
|
285
|
+
padding-right: 3rem;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.border-2 {
|
|
289
|
+
border-width: 2px;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.border-white {
|
|
293
|
+
border-color: #ffffff;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.text-sm {
|
|
297
|
+
font-size: 0.875rem;
|
|
298
|
+
line-height: 1.5;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.text-starlight {
|
|
302
|
+
color: #00d4ff;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.gap-10 {
|
|
306
|
+
gap: 2.5rem;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.rounded-2xl {
|
|
310
|
+
border-radius: 1rem;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.bg-white {
|
|
314
|
+
background-color: #ffffff;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.rounded-xl {
|
|
318
|
+
border-radius: 0.75rem;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.w-full {
|
|
322
|
+
width: 100%;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.py-3 {
|
|
326
|
+
padding-top: 0.75rem;
|
|
327
|
+
padding-bottom: 0.75rem;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.rounded-3xl {
|
|
331
|
+
border-radius: 1.5rem;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.text-lg {
|
|
335
|
+
font-size: 1.125rem;
|
|
336
|
+
line-height: 1.5;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.flex-col {
|
|
340
|
+
flex-direction: column;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.px-6 {
|
|
344
|
+
padding-left: 1.5rem;
|
|
345
|
+
padding-right: 1.5rem;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.focus\:border-starlight:focus {
|
|
349
|
+
border-color: #00d4ff;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.hover\:scale-105:hover {
|
|
353
|
+
transform: scale(1.05);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.mt-32 {
|
|
357
|
+
margin-top: 8rem;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.pt-10 {
|
|
361
|
+
padding-top: 2.5rem;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.border-t {
|
|
365
|
+
border-top-width: undefinedpx;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.border-b {
|
|
369
|
+
border-bottom-width: undefinedpx;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.border-slate-100 {
|
|
373
|
+
border-color: #f1f5f9;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.py-2 {
|
|
377
|
+
padding-top: 0.5rem;
|
|
378
|
+
padding-bottom: 0.5rem;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.bg-slate-50 {
|
|
382
|
+
background-color: #f8fafc;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.justify-between {
|
|
386
|
+
justify-content: space-between;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.items-center {
|
|
390
|
+
align-items: center;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.text-slate-500 {
|
|
394
|
+
color: #64748b;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.hover\:text-slate-900:hover {
|
|
398
|
+
color: #0f172a;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.border-slate-900 {
|
|
402
|
+
border-color: #0f172a;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.border-b-4 {
|
|
406
|
+
border-bottom-width: 4px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.py-6 {
|
|
410
|
+
padding-top: 1.5rem;
|
|
411
|
+
padding-bottom: 1.5rem;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.text-blue-600 {
|
|
415
|
+
color: #2563eb;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.gap-8 {
|
|
419
|
+
gap: 2rem;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.text-xs {
|
|
423
|
+
font-size: 0.75rem;
|
|
424
|
+
line-height: 1.5;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.border-b-2 {
|
|
428
|
+
border-bottom-width: 2px;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.border-transparent {
|
|
432
|
+
border-color: transparent;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.hover\:border-blue-600:hover {
|
|
436
|
+
border-color: #2563eb;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.transition-colors {
|
|
440
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.p-2 {
|
|
444
|
+
padding: 0.5rem;
|
|
14
445
|
}
|
|
15
446
|
|
|
16
|
-
.
|
|
17
|
-
|
|
447
|
+
.hover\:bg-slate-100:hover {
|
|
448
|
+
background-color: #f1f5f9;
|
|
18
449
|
}
|
|
19
450
|
|
|
20
|
-
.
|
|
21
|
-
|
|
451
|
+
.w-5 {
|
|
452
|
+
width: 1.25rem;
|
|
22
453
|
}
|
|
23
454
|
|
|
24
|
-
.
|
|
25
|
-
|
|
455
|
+
.h-5 {
|
|
456
|
+
height: 1.25rem;
|
|
26
457
|
}
|
|
27
458
|
|
|
28
|
-
.
|
|
29
|
-
|
|
459
|
+
.bg-slate-900 {
|
|
460
|
+
background-color: #0f172a;
|
|
30
461
|
}
|
|
31
462
|
|
|
32
|
-
.
|
|
33
|
-
|
|
463
|
+
.rounded {
|
|
464
|
+
border-radius: 0.375rem;
|
|
34
465
|
}
|
|
35
466
|
|
|
36
|
-
.
|
|
37
|
-
|
|
467
|
+
.bg-blue-600 {
|
|
468
|
+
background-color: #2563eb;
|
|
38
469
|
}
|
|
39
470
|
|
|
40
|
-
.
|
|
41
|
-
|
|
471
|
+
.overflow-hidden {
|
|
472
|
+
overflow: hidden;
|
|
42
473
|
}
|
|
43
474
|
|
|
44
475
|
.inline-block {
|
|
45
476
|
display: inline-block;
|
|
46
477
|
}
|
|
47
478
|
|
|
48
|
-
.
|
|
49
|
-
|
|
479
|
+
.py-12 {
|
|
480
|
+
padding-top: 3rem;
|
|
481
|
+
padding-bottom: 3rem;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.px-3 {
|
|
485
|
+
padding-left: 0.75rem;
|
|
486
|
+
padding-right: 0.75rem;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.py-1 {
|
|
490
|
+
padding-top: 0.25rem;
|
|
491
|
+
padding-bottom: 0.25rem;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.text-5xl {
|
|
495
|
+
font-size: 3rem;
|
|
496
|
+
line-height: 1.2;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.text-slate-300 {
|
|
500
|
+
color: #cbd5e1;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.max-w-2xl {
|
|
504
|
+
max-width: 2xl;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.gap-12 {
|
|
508
|
+
gap: 3rem;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.aspect-video {
|
|
512
|
+
aspect-ratio: 16 / 9;
|
|
513
|
+
width: 100%;
|
|
514
|
+
height: auto;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.bg-slate-100 {
|
|
518
|
+
background-color: #f1f5f9;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.rounded-lg {
|
|
522
|
+
border-radius: 0.5rem;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.h-full {
|
|
526
|
+
height: 100%;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.group:hover .group-hover\:scale-105 {
|
|
530
|
+
transform: scale(1.05);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.transition-transform {
|
|
534
|
+
transition-property: transform;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.pb-2 {
|
|
538
|
+
padding-bottom: 0.5rem;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.space-y-6 > * + * {
|
|
542
|
+
margin-top: 1.5rem;
|
|
50
543
|
}
|
|
51
544
|
|
|
52
545
|
.items-start {
|
|
53
546
|
align-items: flex-start;
|
|
54
547
|
}
|
|
55
548
|
|
|
56
|
-
.
|
|
57
|
-
|
|
549
|
+
.text-slate-100 {
|
|
550
|
+
color: #f1f5f9;
|
|
58
551
|
}
|
|
59
552
|
|
|
60
|
-
.
|
|
61
|
-
|
|
553
|
+
.group:hover .group-hover\:text-blue-100 {
|
|
554
|
+
color: #dbeafe;
|
|
62
555
|
}
|
|
63
556
|
|
|
64
|
-
.
|
|
65
|
-
|
|
557
|
+
.group:hover .group-hover\:text-blue-600 {
|
|
558
|
+
color: #2563eb;
|
|
66
559
|
}
|
|
67
560
|
|
|
68
|
-
.
|
|
69
|
-
|
|
561
|
+
.text-slate-400 {
|
|
562
|
+
color: #94a3b8;
|
|
70
563
|
}
|
|
71
564
|
|
|
72
|
-
.
|
|
73
|
-
|
|
565
|
+
.mt-1 {
|
|
566
|
+
margin-top: 0.25rem;
|
|
74
567
|
}
|
|
75
568
|
|
|
76
|
-
.
|
|
77
|
-
|
|
569
|
+
.p-6 {
|
|
570
|
+
padding: 1.5rem;
|
|
78
571
|
}
|
|
79
572
|
|
|
80
|
-
.
|
|
81
|
-
|
|
573
|
+
.border-slate-200 {
|
|
574
|
+
border-color: #e2e8f0;
|
|
82
575
|
}
|
|
83
576
|
|
|
84
|
-
.
|
|
85
|
-
|
|
577
|
+
.p-3 {
|
|
578
|
+
padding: 0.75rem;
|
|
86
579
|
}
|
|
87
580
|
|
|
88
|
-
.
|
|
89
|
-
|
|
581
|
+
.focus\:border-blue-600:focus {
|
|
582
|
+
border-color: #2563eb;
|
|
90
583
|
}
|
|
91
584
|
|
|
92
|
-
.
|
|
93
|
-
|
|
585
|
+
.py-20 {
|
|
586
|
+
padding-top: 5rem;
|
|
587
|
+
padding-bottom: 5rem;
|
|
94
588
|
}
|
|
95
589
|
|
|
96
|
-
.
|
|
97
|
-
|
|
590
|
+
.mt-24 {
|
|
591
|
+
margin-top: 6rem;
|
|
98
592
|
}
|
|
99
593
|
|
|
100
|
-
.
|
|
101
|
-
|
|
594
|
+
.border-slate-800 {
|
|
595
|
+
border-color: #1e293b;
|
|
102
596
|
}
|
|
103
597
|
|
|
104
|
-
.
|
|
105
|
-
|
|
598
|
+
.pb-16 {
|
|
599
|
+
padding-bottom: 4rem;
|
|
106
600
|
}
|
|
107
601
|
|
|
108
|
-
.
|
|
109
|
-
|
|
602
|
+
.col-span-1 {
|
|
603
|
+
grid-column: span 1 / span 1;
|
|
110
604
|
}
|
|
111
605
|
|
|
112
|
-
.
|
|
113
|
-
font-
|
|
606
|
+
.text-3xl {
|
|
607
|
+
font-size: 2rem;
|
|
608
|
+
line-height: 1.2;
|
|
114
609
|
}
|
|
115
610
|
|
|
116
|
-
.
|
|
117
|
-
|
|
611
|
+
.max-w-md {
|
|
612
|
+
max-width: md;
|
|
118
613
|
}
|
|
119
614
|
|
|
120
|
-
.
|
|
121
|
-
|
|
615
|
+
.space-y-3 > * + * {
|
|
616
|
+
margin-top: 0.75rem;
|
|
122
617
|
}
|
|
123
618
|
|
|
124
|
-
.
|
|
125
|
-
|
|
619
|
+
.p-0 {
|
|
620
|
+
padding: 0px;
|
|
126
621
|
}
|
|
127
622
|
|
|
128
|
-
.
|
|
129
|
-
|
|
623
|
+
.hover\:text-blue-600:hover {
|
|
624
|
+
color: #2563eb;
|
|
130
625
|
}
|
|
131
626
|
|
|
132
|
-
.
|
|
133
|
-
|
|
627
|
+
.pt-12 {
|
|
628
|
+
padding-top: 3rem;
|
|
134
629
|
}
|
|
135
630
|
|
|
136
|
-
.text-
|
|
137
|
-
|
|
631
|
+
.text-slate-600 {
|
|
632
|
+
color: #475569;
|
|
138
633
|
}
|
|
139
634
|
|
|
140
|
-
.
|
|
141
|
-
|
|
635
|
+
.w-6 {
|
|
636
|
+
width: 1.5rem;
|
|
142
637
|
}
|
|
143
638
|
|
|
144
|
-
.
|
|
145
|
-
|
|
639
|
+
.h-6 {
|
|
640
|
+
height: 1.5rem;
|
|
146
641
|
}
|
|
147
642
|
|
|
148
|
-
.
|
|
149
|
-
|
|
643
|
+
.max-w-6xl {
|
|
644
|
+
max-width: 6xl;
|
|
150
645
|
}
|
|
151
646
|
|
|
152
|
-
.
|
|
153
|
-
|
|
647
|
+
.mb-12 {
|
|
648
|
+
margin-bottom: 3rem;
|
|
154
649
|
}
|
|
155
650
|
|
|
156
|
-
.
|
|
157
|
-
|
|
651
|
+
.mb-2 {
|
|
652
|
+
margin-bottom: 0.5rem;
|
|
158
653
|
}
|
|
159
654
|
|
|
160
|
-
.
|
|
161
|
-
|
|
655
|
+
.w-24 {
|
|
656
|
+
width: 6rem;
|
|
162
657
|
}
|
|
163
658
|
|
|
164
|
-
.
|
|
165
|
-
|
|
659
|
+
.text-base {
|
|
660
|
+
font-size: 1rem;
|
|
661
|
+
line-height: 1.5;
|
|
166
662
|
}
|
|
167
663
|
|
|
168
|
-
.
|
|
169
|
-
|
|
664
|
+
.w-20 {
|
|
665
|
+
width: 5rem;
|
|
170
666
|
}
|
|
171
667
|
|
|
172
|
-
.
|
|
173
|
-
|
|
668
|
+
.h-20 {
|
|
669
|
+
height: 5rem;
|
|
174
670
|
}
|
|
175
671
|
|
|
176
|
-
.
|
|
177
|
-
|
|
672
|
+
.bg-blue-100 {
|
|
673
|
+
background-color: #dbeafe;
|
|
178
674
|
}
|
|
179
675
|
|
|
180
|
-
.
|
|
181
|
-
|
|
676
|
+
.border-blue-200 {
|
|
677
|
+
border-color: #bfdbfe;
|
|
182
678
|
}
|
|
183
679
|
|
|
184
|
-
.
|
|
185
|
-
|
|
186
|
-
backdrop-filter: blur(16px);
|
|
187
|
-
-webkit-backdrop-filter: blur(16px);
|
|
188
|
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
189
|
-
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
|
|
680
|
+
.w-32 {
|
|
681
|
+
width: 8rem;
|
|
190
682
|
}
|
|
191
683
|
|
|
192
|
-
.
|
|
193
|
-
|
|
684
|
+
.h-32 {
|
|
685
|
+
height: 8rem;
|
|
194
686
|
}
|
|
195
687
|
|
|
196
|
-
.
|
|
197
|
-
|
|
688
|
+
.w-16 {
|
|
689
|
+
width: 4rem;
|
|
198
690
|
}
|
|
199
691
|
|
|
200
|
-
.
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
692
|
+
.h-16 {
|
|
693
|
+
height: 4rem;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.bg-orange-500 {
|
|
697
|
+
background-color: #f97316;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.h-48 {
|
|
701
|
+
height: 12rem;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.w-4 {
|
|
705
|
+
width: 1rem;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.h-4 {
|
|
709
|
+
height: 1rem;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.bg-slate-500\/10 {
|
|
713
|
+
background-color: rgba(100, 116, 139, 0.1);
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.bg-black\/20 {
|
|
717
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.border-white\/20 {
|
|
721
|
+
border-color: rgba(255, 255, 255, 0.2);
|
|
205
722
|
}
|
|
206
723
|
|
|
207
724
|
.btn-starlight {
|
|
@@ -220,487 +737,577 @@ button { cursor: pointer; background: transparent; padding: 0; color: inherit; f
|
|
|
220
737
|
cursor: pointer;
|
|
221
738
|
}
|
|
222
739
|
|
|
223
|
-
.
|
|
740
|
+
.mt-20 {
|
|
741
|
+
margin-top: 5rem;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.pt-8 {
|
|
745
|
+
padding-top: 2rem;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.border-white\/10 {
|
|
749
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.hidden {
|
|
753
|
+
display: none;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.block {
|
|
757
|
+
display: block;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.h-14 {
|
|
761
|
+
height: 3.5rem;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.pb-12 {
|
|
765
|
+
padding-bottom: 3rem;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.max-w-3xl {
|
|
769
|
+
max-width: 3xl;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.text-muted {
|
|
773
|
+
color: var(--text-muted);
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.gap-3 {
|
|
777
|
+
gap: 0.75rem;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.checkbox-starlight {
|
|
781
|
+
appearance: none;
|
|
782
|
+
width: 1.25rem;
|
|
783
|
+
height: 1.25rem;
|
|
224
784
|
background: rgba(255, 255, 255, 0.05);
|
|
225
|
-
|
|
226
|
-
border:
|
|
227
|
-
|
|
785
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
786
|
+
border-radius: 0.375rem;
|
|
787
|
+
cursor: pointer;
|
|
228
788
|
transition: all 0.2s ease;
|
|
229
|
-
|
|
230
|
-
padding: 0 1.5rem;
|
|
789
|
+
position: relative;
|
|
231
790
|
display: inline-flex;
|
|
232
791
|
align-items: center;
|
|
233
792
|
justify-content: center;
|
|
234
|
-
border-radius: 0.75rem;
|
|
235
|
-
cursor: pointer;
|
|
236
793
|
}
|
|
237
794
|
|
|
238
|
-
.
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
795
|
+
.mt-6 {
|
|
796
|
+
margin-top: 1.5rem;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.w-3\/4 {
|
|
800
|
+
width: 75.00%;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.h-12 {
|
|
804
|
+
height: 3rem;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.w-1\/2 {
|
|
808
|
+
width: 50.00%;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.px-8 {
|
|
812
|
+
padding-left: 2rem;
|
|
813
|
+
padding-right: 2rem;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.hover\:text-starlight:hover {
|
|
817
|
+
color: #00d4ff;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.py-2.5 {
|
|
821
|
+
padding-top: 2.5;
|
|
822
|
+
padding-bottom: 2.5;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.gap-1.5 {
|
|
826
|
+
gap: 1.5;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.h-0.5 {
|
|
830
|
+
height: 0.5;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.bg-starlight-deep\/98 {
|
|
834
|
+
background-color: rgba(8, 8, 26, 0.98);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.z-40 {
|
|
838
|
+
z-index: 40;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.max-w-\[1200px] {
|
|
842
|
+
max-width: 1200px;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.hover\:bg-starlight:hover {
|
|
846
|
+
background: linear-gradient(135deg, #ffb38a 0%, #00d4ff 100%);
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.py-24 {
|
|
850
|
+
padding-top: 6rem;
|
|
851
|
+
padding-bottom: 6rem;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.items-end {
|
|
855
|
+
align-items: flex-end;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
.border-starlight {
|
|
859
|
+
border-color: #00d4ff;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.pb-1 {
|
|
863
|
+
padding-bottom: 0.25rem;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
.hover\:text-white:hover {
|
|
867
|
+
color: #ffffff;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.hover\:border-white:hover {
|
|
871
|
+
border-color: #ffffff;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.duration-500 {
|
|
875
|
+
transition-duration: 500ms;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.gap-2 {
|
|
879
|
+
gap: 0.5rem;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.mb-32 {
|
|
883
|
+
margin-bottom: 8rem;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.p-16 {
|
|
887
|
+
padding: 4rem;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.grid-cols-2 {
|
|
891
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.mb-16 {
|
|
895
|
+
margin-bottom: 4rem;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.col-span-2 {
|
|
899
|
+
grid-column: span 2 / span 2;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.max-w-160 {
|
|
903
|
+
max-width: 160;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.pb-8 {
|
|
907
|
+
padding-bottom: 2rem;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.hover\:bg-black:hover {
|
|
911
|
+
background-color: #000000;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.bg-blue-50 {
|
|
915
|
+
background-color: #eff6ff;
|
|
251
916
|
}
|
|
252
917
|
|
|
253
|
-
.
|
|
254
|
-
|
|
255
|
-
width: 1.25rem;
|
|
256
|
-
height: 1.25rem;
|
|
257
|
-
background: rgba(255, 255, 255, 0.05);
|
|
258
|
-
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
259
|
-
border-radius: 0.375rem;
|
|
260
|
-
cursor: pointer;
|
|
261
|
-
transition: all 0.2s ease;
|
|
262
|
-
position: relative;
|
|
263
|
-
display: inline-flex;
|
|
264
|
-
align-items: center;
|
|
265
|
-
justify-content: center;
|
|
918
|
+
.w-1\/4 {
|
|
919
|
+
width: 25.00%;
|
|
266
920
|
}
|
|
267
921
|
|
|
268
|
-
.
|
|
269
|
-
|
|
270
|
-
width: 1.25rem;
|
|
271
|
-
height: 1.25rem;
|
|
272
|
-
background: rgba(255, 255, 255, 0.05);
|
|
273
|
-
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
274
|
-
border-radius: 50%;
|
|
275
|
-
cursor: pointer;
|
|
276
|
-
transition: all 0.2s ease;
|
|
277
|
-
position: relative;
|
|
278
|
-
display: inline-flex;
|
|
279
|
-
align-items: center;
|
|
280
|
-
justify-content: center;
|
|
922
|
+
.max-w-128 {
|
|
923
|
+
max-width: 32rem;
|
|
281
924
|
}
|
|
282
925
|
|
|
283
|
-
.
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
left: 0;
|
|
287
|
-
width: 100vw;
|
|
288
|
-
height: 100vh;
|
|
289
|
-
background: rgba(0, 0, 0, 0.6);
|
|
290
|
-
backdrop-filter: blur(12px);
|
|
291
|
-
display: flex;
|
|
292
|
-
align-items: center;
|
|
293
|
-
justify-content: center;
|
|
294
|
-
z-index: 400;
|
|
926
|
+
.px-4 {
|
|
927
|
+
padding-left: 1rem;
|
|
928
|
+
padding-right: 1rem;
|
|
295
929
|
}
|
|
296
930
|
|
|
297
|
-
.
|
|
298
|
-
|
|
299
|
-
backdrop-filter: blur(20px);
|
|
300
|
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
301
|
-
border-radius: 1.5rem;
|
|
302
|
-
width: 90%;
|
|
303
|
-
max-width: 600px;
|
|
304
|
-
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
305
|
-
overflow: hidden;
|
|
306
|
-
position: relative;
|
|
931
|
+
.text-primary {
|
|
932
|
+
color: #3b82f6;
|
|
307
933
|
}
|
|
308
934
|
|
|
309
|
-
.
|
|
310
|
-
|
|
311
|
-
backdrop-filter: blur(20px);
|
|
312
|
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
313
|
-
border-radius: 1rem;
|
|
314
|
-
padding: 0.5rem;
|
|
315
|
-
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
|
|
316
|
-
min-width: 200px;
|
|
317
|
-
z-index: 600;
|
|
318
|
-
margin-top: 0.5rem;
|
|
935
|
+
.left-0 {
|
|
936
|
+
left: 0px;
|
|
319
937
|
}
|
|
320
938
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
color: rgba(255,255,255,0.7);
|
|
324
|
-
border-radius: 0.625rem;
|
|
325
|
-
display: block;
|
|
326
|
-
width: 100%;
|
|
327
|
-
text-align: left;
|
|
328
|
-
transition: all 0.2s;
|
|
329
|
-
cursor: pointer;
|
|
330
|
-
font-size: 0.875rem;
|
|
939
|
+
.-z-10 {
|
|
940
|
+
z-index: -10;
|
|
331
941
|
}
|
|
332
942
|
|
|
333
|
-
.
|
|
334
|
-
|
|
335
|
-
bottom: 125%;
|
|
336
|
-
left: 50%;
|
|
337
|
-
transform: translateX(-50%);
|
|
338
|
-
padding: 0.5rem 0.75rem;
|
|
339
|
-
background-color: rgba(10, 10, 30, 0.98);
|
|
340
|
-
backdrop-filter: blur(12px);
|
|
341
|
-
border: 1px solid rgba(0, 212, 255, 0.3);
|
|
342
|
-
border-radius: 0.5rem;
|
|
343
|
-
color: #f1f5f9;
|
|
344
|
-
font-size: 0.75rem;
|
|
345
|
-
white-space: nowrap;
|
|
346
|
-
pointer-events: none;
|
|
347
|
-
opacity: 0;
|
|
348
|
-
transition: all 0.2s ease;
|
|
349
|
-
z-index: 800;
|
|
350
|
-
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
|
|
943
|
+
.h-24 {
|
|
944
|
+
height: 6rem;
|
|
351
945
|
}
|
|
352
946
|
|
|
353
|
-
.
|
|
354
|
-
|
|
355
|
-
background-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
|
|
356
|
-
background-size: 200% 100%;
|
|
357
|
-
background-repeat: no-repeat;
|
|
358
|
-
border-radius: 0.5rem;
|
|
359
|
-
width: 100%;
|
|
360
|
-
height: 1rem;
|
|
947
|
+
.w-8 {
|
|
948
|
+
width: 2rem;
|
|
361
949
|
}
|
|
362
950
|
|
|
363
|
-
.
|
|
364
|
-
|
|
951
|
+
.h-8 {
|
|
952
|
+
height: 2rem;
|
|
365
953
|
}
|
|
366
954
|
|
|
367
|
-
.
|
|
368
|
-
|
|
955
|
+
.hover\:text-primary:hover {
|
|
956
|
+
color: #3b82f6;
|
|
369
957
|
}
|
|
370
958
|
|
|
371
|
-
.
|
|
372
|
-
|
|
373
|
-
margin-right: auto;
|
|
959
|
+
.gap-16 {
|
|
960
|
+
gap: 4rem;
|
|
374
961
|
}
|
|
375
962
|
|
|
376
|
-
.
|
|
377
|
-
margin-
|
|
963
|
+
.space-y-16 > * + * {
|
|
964
|
+
margin-top: 4rem;
|
|
378
965
|
}
|
|
379
966
|
|
|
380
|
-
.
|
|
381
|
-
|
|
967
|
+
.text-secondary {
|
|
968
|
+
color: #64748b;
|
|
382
969
|
}
|
|
383
970
|
|
|
384
|
-
.
|
|
385
|
-
|
|
971
|
+
.pt-4 {
|
|
972
|
+
padding-top: 1rem;
|
|
386
973
|
}
|
|
387
974
|
|
|
388
|
-
.
|
|
389
|
-
|
|
975
|
+
.w-12 {
|
|
976
|
+
width: 3rem;
|
|
390
977
|
}
|
|
391
978
|
|
|
392
|
-
.
|
|
393
|
-
|
|
979
|
+
.border-primary\/30 {
|
|
980
|
+
border-color: rgba(59, 130, 246, 0.3);
|
|
394
981
|
}
|
|
395
982
|
|
|
396
|
-
.
|
|
397
|
-
|
|
983
|
+
.p-1 {
|
|
984
|
+
padding: 0.25rem;
|
|
398
985
|
}
|
|
399
986
|
|
|
400
|
-
.
|
|
401
|
-
|
|
987
|
+
.bg-black\/40 {
|
|
988
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
402
989
|
}
|
|
403
990
|
|
|
404
|
-
.
|
|
405
|
-
|
|
991
|
+
.max-w-none {
|
|
992
|
+
max-width: none;
|
|
406
993
|
}
|
|
407
994
|
|
|
408
|
-
.
|
|
409
|
-
|
|
995
|
+
.space-y-10 > * + * {
|
|
996
|
+
margin-top: 2.5rem;
|
|
410
997
|
}
|
|
411
998
|
|
|
412
|
-
.
|
|
413
|
-
|
|
414
|
-
padding-right: 2.5rem;
|
|
999
|
+
.w-2 {
|
|
1000
|
+
width: 0.5rem;
|
|
415
1001
|
}
|
|
416
1002
|
|
|
417
|
-
.
|
|
418
|
-
|
|
419
|
-
padding-bottom: 1rem;
|
|
1003
|
+
.h-10 {
|
|
1004
|
+
height: 2.5rem;
|
|
420
1005
|
}
|
|
421
1006
|
|
|
422
|
-
.
|
|
423
|
-
|
|
1007
|
+
.border-l-4 {
|
|
1008
|
+
border-left-width: 4px;
|
|
424
1009
|
}
|
|
425
1010
|
|
|
426
|
-
.
|
|
427
|
-
color: #
|
|
1011
|
+
.border-primary {
|
|
1012
|
+
border-color: #3b82f6;
|
|
428
1013
|
}
|
|
429
1014
|
|
|
430
|
-
.
|
|
431
|
-
|
|
1015
|
+
.bg-primary\/5 {
|
|
1016
|
+
background-color: rgba(59, 130, 246, 0.05);
|
|
432
1017
|
}
|
|
433
1018
|
|
|
434
|
-
.
|
|
435
|
-
|
|
1019
|
+
.bg-white\/5 {
|
|
1020
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
436
1021
|
}
|
|
437
1022
|
|
|
438
|
-
.
|
|
439
|
-
|
|
1023
|
+
.mt-12 {
|
|
1024
|
+
margin-top: 3rem;
|
|
440
1025
|
}
|
|
441
1026
|
|
|
442
|
-
.
|
|
443
|
-
|
|
1027
|
+
.mr-2 {
|
|
1028
|
+
margin-right: 0.5rem;
|
|
444
1029
|
}
|
|
445
1030
|
|
|
446
|
-
.
|
|
447
|
-
|
|
1031
|
+
.hover\:bg-white\/10:hover {
|
|
1032
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
448
1033
|
}
|
|
449
1034
|
|
|
450
|
-
.
|
|
451
|
-
|
|
1035
|
+
.border-white\/5 {
|
|
1036
|
+
border-color: rgba(255, 255, 255, 0.05);
|
|
452
1037
|
}
|
|
453
1038
|
|
|
454
|
-
.
|
|
455
|
-
|
|
1039
|
+
.hover\:bg-white\/5:hover {
|
|
1040
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
456
1041
|
}
|
|
457
1042
|
|
|
458
|
-
.
|
|
459
|
-
|
|
1043
|
+
.group:hover .group-hover\:text-primary {
|
|
1044
|
+
color: #3b82f6;
|
|
460
1045
|
}
|
|
461
1046
|
|
|
462
|
-
.
|
|
463
|
-
|
|
1047
|
+
.backdrop-blur-md {
|
|
1048
|
+
backdrop-filter: blur(12px);
|
|
1049
|
+
-webkit-backdrop-filter: blur(12px);
|
|
464
1050
|
}
|
|
465
1051
|
|
|
466
|
-
.
|
|
467
|
-
|
|
1052
|
+
.space-x-12 > * + * {
|
|
1053
|
+
margin-left: 3rem;
|
|
468
1054
|
}
|
|
469
1055
|
|
|
470
|
-
.py-
|
|
471
|
-
padding-top:
|
|
472
|
-
padding-bottom:
|
|
1056
|
+
.py-16 {
|
|
1057
|
+
padding-top: 4rem;
|
|
1058
|
+
padding-bottom: 4rem;
|
|
473
1059
|
}
|
|
474
1060
|
|
|
475
|
-
.
|
|
476
|
-
padding:
|
|
1061
|
+
.py-1.5 {
|
|
1062
|
+
padding-top: 1.5;
|
|
1063
|
+
padding-bottom: 1.5;
|
|
477
1064
|
}
|
|
478
1065
|
|
|
479
|
-
.rounded
|
|
480
|
-
border-radius:
|
|
1066
|
+
.rounded-\[2.5rem] {
|
|
1067
|
+
border-radius: 2.5rem;
|
|
481
1068
|
}
|
|
482
1069
|
|
|
483
|
-
.
|
|
484
|
-
|
|
1070
|
+
.max-w-5xl {
|
|
1071
|
+
max-width: 5xl;
|
|
485
1072
|
}
|
|
486
1073
|
|
|
487
|
-
.
|
|
488
|
-
|
|
1074
|
+
.flex-1 {
|
|
1075
|
+
flex: 1 1 0%;
|
|
489
1076
|
}
|
|
490
1077
|
|
|
491
|
-
.
|
|
492
|
-
|
|
1078
|
+
.mb-3 {
|
|
1079
|
+
margin-bottom: 0.75rem;
|
|
493
1080
|
}
|
|
494
1081
|
|
|
495
|
-
.
|
|
496
|
-
|
|
497
|
-
padding-right: 1.5rem;
|
|
1082
|
+
.bg-transparent {
|
|
1083
|
+
background-color: transparent;
|
|
498
1084
|
}
|
|
499
1085
|
|
|
500
|
-
.
|
|
501
|
-
|
|
1086
|
+
.placeholder\:text-white\/10:placeholder {
|
|
1087
|
+
color: rgba(255, 255, 255, 0.1);
|
|
502
1088
|
}
|
|
503
1089
|
|
|
504
|
-
.
|
|
505
|
-
|
|
1090
|
+
.border-l {
|
|
1091
|
+
border-left-width: undefinedpx;
|
|
506
1092
|
}
|
|
507
1093
|
|
|
508
|
-
.
|
|
509
|
-
padding-
|
|
1094
|
+
.px-16 {
|
|
1095
|
+
padding-left: 4rem;
|
|
1096
|
+
padding-right: 4rem;
|
|
510
1097
|
}
|
|
511
1098
|
|
|
512
|
-
.
|
|
513
|
-
|
|
1099
|
+
.h-auto {
|
|
1100
|
+
height: auto;
|
|
514
1101
|
}
|
|
515
1102
|
|
|
516
|
-
.
|
|
517
|
-
|
|
1103
|
+
.hover\:glow-blue:hover {
|
|
1104
|
+
box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
|
|
518
1105
|
}
|
|
519
1106
|
|
|
520
|
-
.
|
|
521
|
-
|
|
1107
|
+
.text-orange-600 {
|
|
1108
|
+
color: #ea580c;
|
|
522
1109
|
}
|
|
523
1110
|
|
|
524
|
-
.
|
|
525
|
-
|
|
1111
|
+
.transition-all {
|
|
1112
|
+
transition-property: all;
|
|
526
1113
|
}
|
|
527
1114
|
|
|
528
|
-
.
|
|
529
|
-
|
|
530
|
-
padding-right: 2rem;
|
|
1115
|
+
.h-80 {
|
|
1116
|
+
height: 80;
|
|
531
1117
|
}
|
|
532
1118
|
|
|
533
|
-
.
|
|
534
|
-
|
|
1119
|
+
.group:hover .group-hover\:scale-110 {
|
|
1120
|
+
transform: scale(1.1);
|
|
535
1121
|
}
|
|
536
1122
|
|
|
537
|
-
.
|
|
538
|
-
|
|
1123
|
+
.duration-700 {
|
|
1124
|
+
transition-duration: 700ms;
|
|
539
1125
|
}
|
|
540
1126
|
|
|
541
|
-
.
|
|
542
|
-
|
|
1127
|
+
.z-10 {
|
|
1128
|
+
z-index: 10;
|
|
543
1129
|
}
|
|
544
1130
|
|
|
545
|
-
.
|
|
546
|
-
|
|
1131
|
+
.bottom-8 {
|
|
1132
|
+
bottom: 2rem;
|
|
547
1133
|
}
|
|
548
1134
|
|
|
549
|
-
.
|
|
550
|
-
|
|
1135
|
+
.left-8 {
|
|
1136
|
+
left: 2rem;
|
|
551
1137
|
}
|
|
552
1138
|
|
|
553
|
-
.
|
|
554
|
-
|
|
1139
|
+
.z-20 {
|
|
1140
|
+
z-index: 20;
|
|
555
1141
|
}
|
|
556
1142
|
|
|
557
|
-
.
|
|
558
|
-
|
|
1143
|
+
.bg-blue-600\/20 {
|
|
1144
|
+
background-color: rgba(37, 99, 235, 0.2);
|
|
559
1145
|
}
|
|
560
1146
|
|
|
561
|
-
.
|
|
562
|
-
|
|
1147
|
+
.ml-2 {
|
|
1148
|
+
margin-left: 0.5rem;
|
|
563
1149
|
}
|
|
564
1150
|
|
|
565
|
-
.
|
|
566
|
-
|
|
1151
|
+
.hover\:text-black:hover {
|
|
1152
|
+
color: #000000;
|
|
567
1153
|
}
|
|
568
1154
|
|
|
569
|
-
.
|
|
570
|
-
|
|
1155
|
+
.bg-orange-600\/20 {
|
|
1156
|
+
background-color: rgba(234, 88, 12, 0.2);
|
|
571
1157
|
}
|
|
572
1158
|
|
|
573
|
-
.
|
|
574
|
-
|
|
1159
|
+
.rounded-\[3rem] {
|
|
1160
|
+
border-radius: 3rem;
|
|
575
1161
|
}
|
|
576
1162
|
|
|
577
|
-
.
|
|
578
|
-
|
|
1163
|
+
.max-w-xl {
|
|
1164
|
+
max-width: xl;
|
|
579
1165
|
}
|
|
580
1166
|
|
|
581
|
-
.text-
|
|
582
|
-
color:
|
|
1167
|
+
.placeholder\:text-white\/20:placeholder {
|
|
1168
|
+
color: rgba(255, 255, 255, 0.2);
|
|
583
1169
|
}
|
|
584
1170
|
|
|
585
|
-
.
|
|
586
|
-
margin-
|
|
1171
|
+
.space-x-6 > * + * {
|
|
1172
|
+
margin-left: 1.5rem;
|
|
587
1173
|
}
|
|
588
1174
|
|
|
589
|
-
.
|
|
590
|
-
|
|
1175
|
+
.bg-white\/80 {
|
|
1176
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
591
1177
|
}
|
|
592
1178
|
|
|
593
|
-
.
|
|
594
|
-
|
|
1179
|
+
.max-w-\[1440px] {
|
|
1180
|
+
max-width: 1440px;
|
|
595
1181
|
}
|
|
596
1182
|
|
|
597
|
-
.text-
|
|
598
|
-
|
|
1183
|
+
.text-slate-900 {
|
|
1184
|
+
color: #0f172a;
|
|
599
1185
|
}
|
|
600
1186
|
|
|
601
|
-
.
|
|
602
|
-
|
|
1187
|
+
.hover\:text-orange-600:hover {
|
|
1188
|
+
color: #ea580c;
|
|
603
1189
|
}
|
|
604
1190
|
|
|
605
|
-
.
|
|
606
|
-
|
|
607
|
-
padding-bottom: 0.5rem;
|
|
1191
|
+
.hover\:bg-slate-200:hover {
|
|
1192
|
+
background-color: #e2e8f0;
|
|
608
1193
|
}
|
|
609
1194
|
|
|
610
|
-
.
|
|
611
|
-
|
|
1195
|
+
.right-0 {
|
|
1196
|
+
right: 0px;
|
|
612
1197
|
}
|
|
613
1198
|
|
|
614
|
-
.
|
|
615
|
-
color: #
|
|
1199
|
+
.bg-orange-600 {
|
|
1200
|
+
background-color: #ea580c;
|
|
616
1201
|
}
|
|
617
1202
|
|
|
618
|
-
.
|
|
619
|
-
|
|
1203
|
+
.min-w-56 {
|
|
1204
|
+
min-width: 56;
|
|
620
1205
|
}
|
|
621
1206
|
|
|
622
|
-
.
|
|
623
|
-
|
|
1207
|
+
.flex-shrink-0 {
|
|
1208
|
+
flex-shrink: 0;
|
|
624
1209
|
}
|
|
625
1210
|
|
|
626
|
-
.
|
|
627
|
-
|
|
1211
|
+
.space-x-4 > * + * {
|
|
1212
|
+
margin-left: 1rem;
|
|
628
1213
|
}
|
|
629
1214
|
|
|
630
|
-
.
|
|
631
|
-
|
|
1215
|
+
.group:hover .group-hover\:text-slate-900 {
|
|
1216
|
+
color: #0f172a;
|
|
632
1217
|
}
|
|
633
1218
|
|
|
634
|
-
.
|
|
635
|
-
|
|
1219
|
+
.w-10 {
|
|
1220
|
+
width: 2.5rem;
|
|
636
1221
|
}
|
|
637
1222
|
|
|
638
|
-
.
|
|
639
|
-
|
|
1223
|
+
.hover\:scale-110:hover {
|
|
1224
|
+
transform: scale(1.1);
|
|
640
1225
|
}
|
|
641
1226
|
|
|
642
|
-
.
|
|
643
|
-
|
|
1227
|
+
.min-w-0 {
|
|
1228
|
+
min-width: 0;
|
|
644
1229
|
}
|
|
645
1230
|
|
|
646
|
-
.
|
|
647
|
-
|
|
1231
|
+
.gap-x-8 {
|
|
1232
|
+
column-gap: 2rem;
|
|
648
1233
|
}
|
|
649
1234
|
|
|
650
|
-
.
|
|
651
|
-
|
|
1235
|
+
.gap-y-16 {
|
|
1236
|
+
row-gap: 4rem;
|
|
652
1237
|
}
|
|
653
1238
|
|
|
654
|
-
.
|
|
655
|
-
|
|
1239
|
+
.aspect-\[3\/4] {
|
|
1240
|
+
aspect-ratio: 3 / 4;
|
|
1241
|
+
width: 100%;
|
|
1242
|
+
height: auto;
|
|
656
1243
|
}
|
|
657
1244
|
|
|
658
|
-
.
|
|
659
|
-
|
|
1245
|
+
.top-4 {
|
|
1246
|
+
top: 1rem;
|
|
660
1247
|
}
|
|
661
1248
|
|
|
662
|
-
.
|
|
663
|
-
|
|
1249
|
+
.left-4 {
|
|
1250
|
+
left: 1rem;
|
|
664
1251
|
}
|
|
665
1252
|
|
|
666
|
-
.
|
|
667
|
-
|
|
1253
|
+
.space-y-2 > * + * {
|
|
1254
|
+
margin-top: 0.5rem;
|
|
668
1255
|
}
|
|
669
1256
|
|
|
670
|
-
.
|
|
671
|
-
|
|
1257
|
+
.bottom-4 {
|
|
1258
|
+
bottom: 1rem;
|
|
672
1259
|
}
|
|
673
1260
|
|
|
674
|
-
.
|
|
675
|
-
|
|
1261
|
+
.duration-300 {
|
|
1262
|
+
transition-duration: 300ms;
|
|
676
1263
|
}
|
|
677
1264
|
|
|
678
|
-
.
|
|
679
|
-
|
|
1265
|
+
.px-1 {
|
|
1266
|
+
padding-left: 0.25rem;
|
|
1267
|
+
padding-right: 0.25rem;
|
|
680
1268
|
}
|
|
681
1269
|
|
|
682
|
-
.
|
|
683
|
-
|
|
1270
|
+
.bg-slate-900\/80 {
|
|
1271
|
+
background-color: rgba(15, 23, 42, 0.8);
|
|
684
1272
|
}
|
|
685
1273
|
|
|
686
|
-
.
|
|
687
|
-
color: #
|
|
1274
|
+
.hover\:border-slate-900:hover {
|
|
1275
|
+
border-color: #0f172a;
|
|
688
1276
|
}
|
|
689
1277
|
|
|
690
|
-
.
|
|
691
|
-
|
|
692
|
-
padding-right: 1rem;
|
|
1278
|
+
.text-slate-200 {
|
|
1279
|
+
color: #e2e8f0;
|
|
693
1280
|
}
|
|
694
1281
|
|
|
695
|
-
.
|
|
696
|
-
|
|
1282
|
+
.bg-slate-950 {
|
|
1283
|
+
background-color: #020617;
|
|
697
1284
|
}
|
|
698
1285
|
|
|
699
|
-
.
|
|
700
|
-
|
|
1286
|
+
.placeholder\:text-slate-600:placeholder {
|
|
1287
|
+
color: #475569;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
@media (min-width: 640px) {
|
|
1291
|
+
.sm\:flex-row {
|
|
1292
|
+
flex-direction: row;
|
|
1293
|
+
}
|
|
701
1294
|
}
|
|
702
1295
|
|
|
703
1296
|
@media (min-width: 768px) {
|
|
1297
|
+
.md\:btn-primary {
|
|
1298
|
+
background-color: #2563eb;
|
|
1299
|
+
color: #ffffff;
|
|
1300
|
+
padding-left: 1.5rem;
|
|
1301
|
+
padding-right: 1.5rem;
|
|
1302
|
+
padding-top: 0.5rem;
|
|
1303
|
+
padding-bottom: 0.5rem;
|
|
1304
|
+
border-radius: 0.5rem;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.md\:btn-primary:hover {
|
|
1308
|
+
background-color: #1d4ed8;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
704
1311
|
.md\:grid-cols-2 {
|
|
705
1312
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
706
1313
|
}
|
|
@@ -713,21 +1320,106 @@ button { cursor: pointer; background: transparent; padding: 0; color: inherit; f
|
|
|
713
1320
|
width: 80;
|
|
714
1321
|
}
|
|
715
1322
|
|
|
1323
|
+
.md\:grid-cols-4 {
|
|
1324
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.md\:col-span-2 {
|
|
1328
|
+
grid-column: span 2 / span 2;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.md\:grid-cols-3 {
|
|
1332
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.md\:flex {
|
|
1336
|
+
display: flex;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
.md\:hidden {
|
|
1340
|
+
display: none;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.md\:w-96 {
|
|
1344
|
+
width: 96;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.md\:col-span-1 {
|
|
1348
|
+
grid-column: span 1 / span 1;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
716
1351
|
.md\:text-5xl {
|
|
717
|
-
font-size:
|
|
1352
|
+
font-size: 3rem;
|
|
1353
|
+
line-height: 1.2;
|
|
718
1354
|
}
|
|
719
1355
|
|
|
720
1356
|
.md\:text-lg {
|
|
721
1357
|
font-size: 1.125rem;
|
|
1358
|
+
line-height: 1.5;
|
|
722
1359
|
}
|
|
723
1360
|
|
|
724
1361
|
.md\:w-1\/2 {
|
|
725
1362
|
width: 50.00%;
|
|
726
1363
|
}
|
|
1364
|
+
|
|
1365
|
+
.md\:block {
|
|
1366
|
+
display: block;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.md\:h-full {
|
|
1370
|
+
height: 100%;
|
|
1371
|
+
}
|
|
727
1372
|
}
|
|
728
1373
|
|
|
729
1374
|
@media (min-width: 1024px) {
|
|
1375
|
+
.lg\:grid-cols-12 {
|
|
1376
|
+
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.lg\:col-span-8 {
|
|
1380
|
+
grid-column: span 8 / span 8;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.lg\:col-span-4 {
|
|
1384
|
+
grid-column: span 4 / span 4;
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.lg\:grid-cols-3 {
|
|
1388
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1389
|
+
}
|
|
1390
|
+
|
|
730
1391
|
.lg\:grid-cols-4 {
|
|
731
1392
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
732
1393
|
}
|
|
1394
|
+
|
|
1395
|
+
.lg\:flex {
|
|
1396
|
+
display: flex;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
.lg\:flex-row {
|
|
1400
|
+
flex-direction: row;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.lg\:w-64 {
|
|
1404
|
+
width: 16rem;
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
.lg\:col-span-2 {
|
|
1408
|
+
grid-column: span 2 / span 2;
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
@media (min-width: 1280px) {
|
|
1413
|
+
.xl\:grid-cols-4 {
|
|
1414
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1415
|
+
}
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
@media (prefers-color-scheme: dark) {
|
|
1419
|
+
.card-premium {
|
|
1420
|
+
background-color: rgba(255, 255, 255, 0.05);
|
|
1421
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
1422
|
+
backdrop-filter: blur(12px);
|
|
1423
|
+
-webkit-backdrop-filter: blur(12px);
|
|
1424
|
+
}
|
|
733
1425
|
}
|