qt-ui-kit 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/dist/index.css ADDED
@@ -0,0 +1,958 @@
1
+ /* src/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans: var(--font-geist-sans);
8
+ --font-mono: var(--font-geist-mono);
9
+ --color-gray-100: oklch(96.7% 0.003 264.542);
10
+ --color-gray-400: oklch(70.7% 0.022 261.325);
11
+ --color-gray-700: oklch(37.3% 0.034 259.733);
12
+ --color-gray-900: oklch(21% 0.034 264.665);
13
+ --color-neutral-900: oklch(20.5% 0 0);
14
+ --color-black: #000;
15
+ --color-white: #fff;
16
+ --spacing: 0.25rem;
17
+ --text-xs: 0.75rem;
18
+ --text-xs--line-height: calc(1 / 0.75);
19
+ --text-sm: 0.875rem;
20
+ --text-sm--line-height: calc(1.25 / 0.875);
21
+ --font-weight-normal: 400;
22
+ --font-weight-medium: 500;
23
+ --font-weight-bold: 700;
24
+ --radius-md: 0.375rem;
25
+ --radius-lg: 0.5rem;
26
+ --radius-xl: 0.75rem;
27
+ --radius-2xl: 1rem;
28
+ --radius-3xl: 1.5rem;
29
+ --default-font-family: var(--font-sans);
30
+ --default-mono-font-family: var(--font-mono);
31
+ --color-neutral-1: #1D1D1F;
32
+ --color-neutral-6: #F5F5F5;
33
+ --color-qtneutral-100: #FAFAFC;
34
+ --color-qtneutral-200: #F5F5F8;
35
+ --color-qtneutral-300: #F3F2F8;
36
+ --color-qtneutral-500: #CDCDCD;
37
+ --color-qtneutral-400: #EAE9F0;
38
+ --color-qtneutral-700: #82818E;
39
+ --color-qtneutral-900: #1D1D1F;
40
+ --color-qtpurple-300: #D8D7FF;
41
+ --color-qtpurple-200: #EFEEFF;
42
+ --color-qtpurple-500: #6558FD;
43
+ --color-qtgreen-300: #D2F8B6;
44
+ --color-qtgreen-200: #E8FE99;
45
+ --color-qtgreen-50: #F1FEE8;
46
+ --color-qtred-400: #FF8578;
47
+ --color-qtred-50: #FFECEA;
48
+ --color-qtorange-300: #FFD991;
49
+ --color-qtorange-50: #FFF5E1;
50
+ }
51
+ }
52
+ @layer base {
53
+ *,
54
+ ::after,
55
+ ::before,
56
+ ::backdrop,
57
+ ::file-selector-button {
58
+ box-sizing: border-box;
59
+ margin: 0;
60
+ padding: 0;
61
+ border: 0 solid;
62
+ }
63
+ html,
64
+ :host {
65
+ line-height: 1.5;
66
+ -webkit-text-size-adjust: 100%;
67
+ -moz-tab-size: 4;
68
+ -o-tab-size: 4;
69
+ tab-size: 4;
70
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
71
+ font-feature-settings: var(--default-font-feature-settings, normal);
72
+ font-variation-settings: var(--default-font-variation-settings, normal);
73
+ -webkit-tap-highlight-color: transparent;
74
+ }
75
+ hr {
76
+ height: 0;
77
+ color: inherit;
78
+ border-top-width: 1px;
79
+ }
80
+ abbr:where([title]) {
81
+ -webkit-text-decoration: underline dotted;
82
+ text-decoration: underline dotted;
83
+ }
84
+ h1,
85
+ h2,
86
+ h3,
87
+ h4,
88
+ h5,
89
+ h6 {
90
+ font-size: inherit;
91
+ font-weight: inherit;
92
+ }
93
+ a {
94
+ color: inherit;
95
+ -webkit-text-decoration: inherit;
96
+ text-decoration: inherit;
97
+ }
98
+ b,
99
+ strong {
100
+ font-weight: bolder;
101
+ }
102
+ code,
103
+ kbd,
104
+ samp,
105
+ pre {
106
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
107
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
108
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
109
+ font-size: 1em;
110
+ }
111
+ small {
112
+ font-size: 80%;
113
+ }
114
+ sub,
115
+ sup {
116
+ font-size: 75%;
117
+ line-height: 0;
118
+ position: relative;
119
+ vertical-align: baseline;
120
+ }
121
+ sub {
122
+ bottom: -0.25em;
123
+ }
124
+ sup {
125
+ top: -0.5em;
126
+ }
127
+ table {
128
+ text-indent: 0;
129
+ border-color: inherit;
130
+ border-collapse: collapse;
131
+ }
132
+ :-moz-focusring {
133
+ outline: auto;
134
+ }
135
+ progress {
136
+ vertical-align: baseline;
137
+ }
138
+ summary {
139
+ display: list-item;
140
+ }
141
+ ol,
142
+ ul,
143
+ menu {
144
+ list-style: none;
145
+ }
146
+ img,
147
+ svg,
148
+ video,
149
+ canvas,
150
+ audio,
151
+ iframe,
152
+ embed,
153
+ object {
154
+ display: block;
155
+ vertical-align: middle;
156
+ }
157
+ img,
158
+ video {
159
+ max-width: 100%;
160
+ height: auto;
161
+ }
162
+ button,
163
+ input,
164
+ select,
165
+ optgroup,
166
+ textarea,
167
+ ::file-selector-button {
168
+ font: inherit;
169
+ font-feature-settings: inherit;
170
+ font-variation-settings: inherit;
171
+ letter-spacing: inherit;
172
+ color: inherit;
173
+ border-radius: 0;
174
+ background-color: transparent;
175
+ opacity: 1;
176
+ }
177
+ :where(select:is([multiple], [size])) optgroup {
178
+ font-weight: bolder;
179
+ }
180
+ :where(select:is([multiple], [size])) optgroup option {
181
+ padding-inline-start: 20px;
182
+ }
183
+ ::file-selector-button {
184
+ margin-inline-end: 4px;
185
+ }
186
+ ::-moz-placeholder {
187
+ opacity: 1;
188
+ }
189
+ ::placeholder {
190
+ opacity: 1;
191
+ }
192
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
193
+ ::-moz-placeholder {
194
+ color: currentcolor;
195
+ @supports (color: color-mix(in lab, red, red)) {
196
+ color: color-mix(in oklab, currentcolor 50%, transparent);
197
+ }
198
+ }
199
+ ::placeholder {
200
+ color: currentcolor;
201
+ @supports (color: color-mix(in lab, red, red)) {
202
+ color: color-mix(in oklab, currentcolor 50%, transparent);
203
+ }
204
+ }
205
+ }
206
+ textarea {
207
+ resize: vertical;
208
+ }
209
+ ::-webkit-search-decoration {
210
+ -webkit-appearance: none;
211
+ }
212
+ ::-webkit-date-and-time-value {
213
+ min-height: 1lh;
214
+ text-align: inherit;
215
+ }
216
+ ::-webkit-datetime-edit {
217
+ display: inline-flex;
218
+ }
219
+ ::-webkit-datetime-edit-fields-wrapper {
220
+ padding: 0;
221
+ }
222
+ ::-webkit-datetime-edit,
223
+ ::-webkit-datetime-edit-year-field,
224
+ ::-webkit-datetime-edit-month-field,
225
+ ::-webkit-datetime-edit-day-field,
226
+ ::-webkit-datetime-edit-hour-field,
227
+ ::-webkit-datetime-edit-minute-field,
228
+ ::-webkit-datetime-edit-second-field,
229
+ ::-webkit-datetime-edit-millisecond-field,
230
+ ::-webkit-datetime-edit-meridiem-field {
231
+ padding-block: 0;
232
+ }
233
+ :-moz-ui-invalid {
234
+ box-shadow: none;
235
+ }
236
+ button,
237
+ input:where([type=button], [type=reset], [type=submit]),
238
+ ::file-selector-button {
239
+ -webkit-appearance: button;
240
+ -moz-appearance: button;
241
+ appearance: button;
242
+ }
243
+ ::-webkit-inner-spin-button,
244
+ ::-webkit-outer-spin-button {
245
+ height: auto;
246
+ }
247
+ [hidden]:where(:not([hidden=until-found])) {
248
+ display: none !important;
249
+ }
250
+ }
251
+ @layer utilities {
252
+ .col-span-2 {
253
+ grid-column: span 2 / span 2;
254
+ }
255
+ .m-1 {
256
+ margin: calc(var(--spacing) * 1);
257
+ }
258
+ .mt-2 {
259
+ margin-top: calc(var(--spacing) * 2);
260
+ }
261
+ .mb-2 {
262
+ margin-bottom: calc(var(--spacing) * 2);
263
+ }
264
+ .line-clamp-3 {
265
+ overflow: hidden;
266
+ display: -webkit-box;
267
+ -webkit-box-orient: vertical;
268
+ -webkit-line-clamp: 3;
269
+ }
270
+ .line-clamp-none {
271
+ overflow: visible;
272
+ display: block;
273
+ -webkit-box-orient: horizontal;
274
+ -webkit-line-clamp: unset;
275
+ }
276
+ .flex {
277
+ display: flex;
278
+ }
279
+ .grid {
280
+ display: grid;
281
+ }
282
+ .h-\[17px\] {
283
+ height: 17px;
284
+ }
285
+ .h-\[18px\] {
286
+ height: 18px;
287
+ }
288
+ .h-\[24px\] {
289
+ height: 24px;
290
+ }
291
+ .h-\[28\.8px\] {
292
+ height: 28.8px;
293
+ }
294
+ .h-\[32px\] {
295
+ height: 32px;
296
+ }
297
+ .h-\[36px\] {
298
+ height: 36px;
299
+ }
300
+ .h-\[40px\] {
301
+ height: 40px;
302
+ }
303
+ .h-\[44px\] {
304
+ height: 44px;
305
+ }
306
+ .h-\[136px\] {
307
+ height: 136px;
308
+ }
309
+ .h-dvh {
310
+ height: 100dvh;
311
+ }
312
+ .h-full {
313
+ height: 100%;
314
+ }
315
+ .h-min {
316
+ height: -moz-min-content;
317
+ height: min-content;
318
+ }
319
+ .max-h-\[950px\] {
320
+ max-height: 950px;
321
+ }
322
+ .w-\[24px\] {
323
+ width: 24px;
324
+ }
325
+ .w-\[28\.8px\] {
326
+ width: 28.8px;
327
+ }
328
+ .w-\[32px\] {
329
+ width: 32px;
330
+ }
331
+ .w-\[36px\] {
332
+ width: 36px;
333
+ }
334
+ .w-\[44px\] {
335
+ width: 44px;
336
+ }
337
+ .w-\[66px\] {
338
+ width: 66px;
339
+ }
340
+ .w-\[309px\] {
341
+ width: 309px;
342
+ }
343
+ .w-\[409px\] {
344
+ width: 409px;
345
+ }
346
+ .w-full {
347
+ width: 100%;
348
+ }
349
+ .w-max {
350
+ width: -moz-max-content;
351
+ width: max-content;
352
+ }
353
+ .w-min {
354
+ width: -moz-min-content;
355
+ width: min-content;
356
+ }
357
+ .max-w-\[765px\] {
358
+ max-width: 765px;
359
+ }
360
+ .max-w-full {
361
+ max-width: 100%;
362
+ }
363
+ .min-w-\[40px\] {
364
+ min-width: 40px;
365
+ }
366
+ .flex-1 {
367
+ flex: 1;
368
+ }
369
+ .flex-none {
370
+ flex: none;
371
+ }
372
+ .transform {
373
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
374
+ }
375
+ .grid-cols-1 {
376
+ grid-template-columns: repeat(1, minmax(0, 1fr));
377
+ }
378
+ .grid-cols-2 {
379
+ grid-template-columns: repeat(2, minmax(0, 1fr));
380
+ }
381
+ .grid-cols-3 {
382
+ grid-template-columns: repeat(3, minmax(0, 1fr));
383
+ }
384
+ .grid-cols-4 {
385
+ grid-template-columns: repeat(4, minmax(0, 1fr));
386
+ }
387
+ .grid-cols-5 {
388
+ grid-template-columns: repeat(5, minmax(0, 1fr));
389
+ }
390
+ .grid-cols-7 {
391
+ grid-template-columns: repeat(7, minmax(0, 1fr));
392
+ }
393
+ .grid-cols-13 {
394
+ grid-template-columns: repeat(13, minmax(0, 1fr));
395
+ }
396
+ .grid-cols-14 {
397
+ grid-template-columns: repeat(14, minmax(0, 1fr));
398
+ }
399
+ .flex-col {
400
+ flex-direction: column;
401
+ }
402
+ .flex-wrap {
403
+ flex-wrap: wrap;
404
+ }
405
+ .place-content-between {
406
+ place-content: space-between;
407
+ }
408
+ .place-content-center {
409
+ place-content: center;
410
+ }
411
+ .place-items-center {
412
+ place-items: center;
413
+ }
414
+ .items-center {
415
+ align-items: center;
416
+ }
417
+ .gap-0\.5 {
418
+ gap: calc(var(--spacing) * 0.5);
419
+ }
420
+ .gap-1 {
421
+ gap: calc(var(--spacing) * 1);
422
+ }
423
+ .gap-2 {
424
+ gap: calc(var(--spacing) * 2);
425
+ }
426
+ .gap-4 {
427
+ gap: calc(var(--spacing) * 4);
428
+ }
429
+ .gap-8 {
430
+ gap: calc(var(--spacing) * 8);
431
+ }
432
+ .gap-\[4px\] {
433
+ gap: 4px;
434
+ }
435
+ .gap-\[40px\] {
436
+ gap: 40px;
437
+ }
438
+ .space-y-3 {
439
+ :where(& > :not(:last-child)) {
440
+ --tw-space-y-reverse: 0;
441
+ margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
442
+ margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
443
+ }
444
+ }
445
+ .overflow-auto {
446
+ overflow: auto;
447
+ }
448
+ .rounded-2xl {
449
+ border-radius: var(--radius-2xl);
450
+ }
451
+ .rounded-3xl {
452
+ border-radius: var(--radius-3xl);
453
+ }
454
+ .rounded-full {
455
+ border-radius: calc(infinity * 1px);
456
+ }
457
+ .rounded-lg {
458
+ border-radius: var(--radius-lg);
459
+ }
460
+ .rounded-xl {
461
+ border-radius: var(--radius-xl);
462
+ }
463
+ .rounded-t-2xl {
464
+ border-top-left-radius: var(--radius-2xl);
465
+ border-top-right-radius: var(--radius-2xl);
466
+ }
467
+ .rounded-t-3xl {
468
+ border-top-left-radius: var(--radius-3xl);
469
+ border-top-right-radius: var(--radius-3xl);
470
+ }
471
+ .rounded-t-md {
472
+ border-top-left-radius: var(--radius-md);
473
+ border-top-right-radius: var(--radius-md);
474
+ }
475
+ .rounded-b-2xl {
476
+ border-bottom-right-radius: var(--radius-2xl);
477
+ border-bottom-left-radius: var(--radius-2xl);
478
+ }
479
+ .rounded-br-3xl {
480
+ border-bottom-right-radius: var(--radius-3xl);
481
+ }
482
+ .rounded-br-md {
483
+ border-bottom-right-radius: var(--radius-md);
484
+ }
485
+ .rounded-bl-3xl {
486
+ border-bottom-left-radius: var(--radius-3xl);
487
+ }
488
+ .rounded-bl-md {
489
+ border-bottom-left-radius: var(--radius-md);
490
+ }
491
+ .border-0 {
492
+ border-style: var(--tw-border-style);
493
+ border-width: 0px;
494
+ }
495
+ .border-2 {
496
+ border-style: var(--tw-border-style);
497
+ border-width: 2px;
498
+ }
499
+ .border-\[2px\] {
500
+ border-style: var(--tw-border-style);
501
+ border-width: 2px;
502
+ }
503
+ .border-\[3px\] {
504
+ border-style: var(--tw-border-style);
505
+ border-width: 3px;
506
+ }
507
+ .border-t-\[2px\] {
508
+ border-top-style: var(--tw-border-style);
509
+ border-top-width: 2px;
510
+ }
511
+ .border-b-\[2px\] {
512
+ border-bottom-style: var(--tw-border-style);
513
+ border-bottom-width: 2px;
514
+ }
515
+ .border-black {
516
+ border-color: var(--color-black);
517
+ }
518
+ .border-neutral-6 {
519
+ border-color: var(--color-neutral-6);
520
+ }
521
+ .border-qtgreen-300 {
522
+ border-color: var(--color-qtgreen-300);
523
+ }
524
+ .border-qtneutral-400 {
525
+ border-color: var(--color-qtneutral-400);
526
+ }
527
+ .border-qtneutral-500 {
528
+ border-color: var(--color-qtneutral-500);
529
+ }
530
+ .border-qtorange-300 {
531
+ border-color: var(--color-qtorange-300);
532
+ }
533
+ .border-qtpurple-200 {
534
+ border-color: var(--color-qtpurple-200);
535
+ }
536
+ .border-qtpurple-300 {
537
+ border-color: var(--color-qtpurple-300);
538
+ }
539
+ .border-qtpurple-500 {
540
+ border-color: var(--color-qtpurple-500);
541
+ }
542
+ .border-qtred-400 {
543
+ border-color: var(--color-qtred-400);
544
+ }
545
+ .bg-gray-100 {
546
+ background-color: var(--color-gray-100);
547
+ }
548
+ .bg-neutral-6 {
549
+ background-color: var(--color-neutral-6);
550
+ }
551
+ .bg-qtgreen-50 {
552
+ background-color: var(--color-qtgreen-50);
553
+ }
554
+ .bg-qtneutral-100 {
555
+ background-color: var(--color-qtneutral-100);
556
+ }
557
+ .bg-qtneutral-200 {
558
+ background-color: var(--color-qtneutral-200);
559
+ }
560
+ .bg-qtneutral-300 {
561
+ background-color: var(--color-qtneutral-300);
562
+ }
563
+ .bg-qtneutral-500 {
564
+ background-color: var(--color-qtneutral-500);
565
+ }
566
+ .bg-qtorange-50 {
567
+ background-color: var(--color-qtorange-50);
568
+ }
569
+ .bg-qtpurple-200 {
570
+ background-color: var(--color-qtpurple-200);
571
+ }
572
+ .bg-qtpurple-500 {
573
+ background-color: var(--color-qtpurple-500);
574
+ }
575
+ .bg-qtred-50 {
576
+ background-color: var(--color-qtred-50);
577
+ }
578
+ .bg-transparent {
579
+ background-color: transparent;
580
+ }
581
+ .bg-white {
582
+ background-color: var(--color-white);
583
+ }
584
+ .object-contain {
585
+ -o-object-fit: contain;
586
+ object-fit: contain;
587
+ }
588
+ .p-0 {
589
+ padding: calc(var(--spacing) * 0);
590
+ }
591
+ .p-4 {
592
+ padding: calc(var(--spacing) * 4);
593
+ }
594
+ .p-\[45px\] {
595
+ padding: 45px;
596
+ }
597
+ .px-2 {
598
+ padding-inline: calc(var(--spacing) * 2);
599
+ }
600
+ .px-3 {
601
+ padding-inline: calc(var(--spacing) * 3);
602
+ }
603
+ .px-4 {
604
+ padding-inline: calc(var(--spacing) * 4);
605
+ }
606
+ .py-0\.5 {
607
+ padding-block: calc(var(--spacing) * 0.5);
608
+ }
609
+ .py-1 {
610
+ padding-block: calc(var(--spacing) * 1);
611
+ }
612
+ .py-2 {
613
+ padding-block: calc(var(--spacing) * 2);
614
+ }
615
+ .py-4 {
616
+ padding-block: calc(var(--spacing) * 4);
617
+ }
618
+ .py-12 {
619
+ padding-block: calc(var(--spacing) * 12);
620
+ }
621
+ .pr-2 {
622
+ padding-right: calc(var(--spacing) * 2);
623
+ }
624
+ .pr-8 {
625
+ padding-right: calc(var(--spacing) * 8);
626
+ }
627
+ .pl-4 {
628
+ padding-left: calc(var(--spacing) * 4);
629
+ }
630
+ .pl-8 {
631
+ padding-left: calc(var(--spacing) * 8);
632
+ }
633
+ .text-sm {
634
+ font-size: var(--text-sm);
635
+ line-height: var(--tw-leading, var(--text-sm--line-height));
636
+ }
637
+ .text-xs {
638
+ font-size: var(--text-xs);
639
+ line-height: var(--tw-leading, var(--text-xs--line-height));
640
+ }
641
+ .text-\[0\.7rem\] {
642
+ font-size: 0.7rem;
643
+ }
644
+ .text-\[14px\] {
645
+ font-size: 14px;
646
+ }
647
+ .leading-\[120\%\] {
648
+ --tw-leading: 120%;
649
+ line-height: 120%;
650
+ }
651
+ .leading-\[130\%\] {
652
+ --tw-leading: 130%;
653
+ line-height: 130%;
654
+ }
655
+ .font-bold {
656
+ --tw-font-weight: var(--font-weight-bold);
657
+ font-weight: var(--font-weight-bold);
658
+ }
659
+ .font-medium {
660
+ --tw-font-weight: var(--font-weight-medium);
661
+ font-weight: var(--font-weight-medium);
662
+ }
663
+ .font-normal {
664
+ --tw-font-weight: var(--font-weight-normal);
665
+ font-weight: var(--font-weight-normal);
666
+ }
667
+ .break-words {
668
+ overflow-wrap: break-word;
669
+ }
670
+ .text-gray-700 {
671
+ color: var(--color-gray-700);
672
+ }
673
+ .text-gray-900 {
674
+ color: var(--color-gray-900);
675
+ }
676
+ .text-neutral-1 {
677
+ color: var(--color-neutral-1);
678
+ }
679
+ .text-neutral-900 {
680
+ color: var(--color-neutral-900);
681
+ }
682
+ .text-qtneutral-200 {
683
+ color: var(--color-qtneutral-200);
684
+ }
685
+ .text-qtneutral-500 {
686
+ color: var(--color-qtneutral-500);
687
+ }
688
+ .text-qtneutral-700 {
689
+ color: var(--color-qtneutral-700);
690
+ }
691
+ .text-qtneutral-900 {
692
+ color: var(--color-qtneutral-900);
693
+ }
694
+ .text-qtpurple-500 {
695
+ color: var(--color-qtpurple-500);
696
+ }
697
+ .text-white {
698
+ color: var(--color-white);
699
+ }
700
+ .grayscale {
701
+ --tw-grayscale: grayscale(100%);
702
+ 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,);
703
+ }
704
+ .outline-none {
705
+ --tw-outline-style: none;
706
+ outline-style: none;
707
+ }
708
+ .select-none {
709
+ -webkit-user-select: none;
710
+ -moz-user-select: none;
711
+ user-select: none;
712
+ }
713
+ .placeholder\:text-gray-400 {
714
+ &::-moz-placeholder {
715
+ color: var(--color-gray-400);
716
+ }
717
+ &::placeholder {
718
+ color: var(--color-gray-400);
719
+ }
720
+ }
721
+ .hover\:border-2 {
722
+ &:hover {
723
+ @media (hover: hover) {
724
+ border-style: var(--tw-border-style);
725
+ border-width: 2px;
726
+ }
727
+ }
728
+ }
729
+ .hover\:border-qtneutral-500 {
730
+ &:hover {
731
+ @media (hover: hover) {
732
+ border-color: var(--color-qtneutral-500);
733
+ }
734
+ }
735
+ }
736
+ .hover\:border-qtpurple-500 {
737
+ &:hover {
738
+ @media (hover: hover) {
739
+ border-color: var(--color-qtpurple-500);
740
+ }
741
+ }
742
+ }
743
+ .hover\:bg-qtgreen-200 {
744
+ &:hover {
745
+ @media (hover: hover) {
746
+ background-color: var(--color-qtgreen-200);
747
+ }
748
+ }
749
+ }
750
+ .hover\:bg-qtneutral-200 {
751
+ &:hover {
752
+ @media (hover: hover) {
753
+ background-color: var(--color-qtneutral-200);
754
+ }
755
+ }
756
+ }
757
+ .hover\:grayscale-0 {
758
+ &:hover {
759
+ @media (hover: hover) {
760
+ --tw-grayscale: grayscale(0%);
761
+ 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,);
762
+ }
763
+ }
764
+ }
765
+ }
766
+ @import url(https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&family=Inter:wght@400;500;700&display=swap);
767
+ :root {
768
+ --font-sans: "Inter", sans-serif;
769
+ }
770
+ .label-3 {
771
+ font-family: Inter;
772
+ font-weight: 500;
773
+ font-size: 12px;
774
+ line-height: 120%;
775
+ letter-spacing: 0%;
776
+ text-align: right;
777
+ }
778
+ .label-3-bold {
779
+ font-family: Rubik;
780
+ font-weight: 500;
781
+ font-size: 12px;
782
+ line-height: 120%;
783
+ letter-spacing: 0%;
784
+ }
785
+ .body {
786
+ font-family: Inter;
787
+ font-weight: 400;
788
+ font-size: 16px;
789
+ line-height: 140%;
790
+ letter-spacing: 0%;
791
+ }
792
+ .body-bold {
793
+ font-family: Inter;
794
+ font-weight: 600;
795
+ font-size: 16px;
796
+ line-height: 140%;
797
+ letter-spacing: 0%;
798
+ }
799
+ .body-small {
800
+ font-family: Inter;
801
+ font-weight: 400;
802
+ font-size: 14px;
803
+ line-height: 130%;
804
+ letter-spacing: 0%;
805
+ color: var(--color-qtneutral-900);
806
+ }
807
+ .body-small-bold {
808
+ font-family: Inter;
809
+ font-weight: 600;
810
+ font-size: 14px;
811
+ line-height: 120%;
812
+ letter-spacing: 0%;
813
+ color: var(--color-qtneutral-900);
814
+ }
815
+ .body-medium {
816
+ font-family: Inter;
817
+ font-weight: 400;
818
+ font-size: 14px;
819
+ line-height: 140%;
820
+ letter-spacing: 0%;
821
+ color: var(--color-qtneutral-900);
822
+ }
823
+ .title-2-bold {
824
+ font-family: Inter;
825
+ font-weight: 700;
826
+ font-size: 14px;
827
+ line-height: 120%;
828
+ letter-spacing: 4%;
829
+ text-transform: uppercase;
830
+ }
831
+ .qt-link {
832
+ font-family: Inter;
833
+ font-weight: 500;
834
+ font-size: 12px;
835
+ line-height: 140%;
836
+ letter-spacing: 0%;
837
+ text-align: right;
838
+ text-decoration: underline;
839
+ text-decoration-style: solid;
840
+ text-decoration-thickness: 0%;
841
+ }
842
+ .debug {
843
+ border: 2px solid red;
844
+ }
845
+ .debug-2 {
846
+ border: 2px solid green;
847
+ }
848
+ .qt-drop-shadow-100 {
849
+ box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
850
+ }
851
+ .checkbox-shadow {
852
+ box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.15);
853
+ }
854
+ .checkbox-inset {
855
+ box-shadow: 4px 4px 2px 0px rgba(0, 0, 0, 0.15) inset;
856
+ }
857
+ .preview-card-shadow:hover {
858
+ box-shadow: 8px 8px 8px 0px rgba(29, 29, 31, 0.15);
859
+ }
860
+ .navbar-shadow {
861
+ box-shadow: 8px 8px 12px 0px #00000026;
862
+ }
863
+ .bg-test {
864
+ background-color: #ffffff;
865
+ opacity: 1;
866
+ background-image:
867
+ linear-gradient(#e6e6e6 2px, transparent 2px),
868
+ linear-gradient(
869
+ 90deg,
870
+ #e6e6e6 2px,
871
+ transparent 2px),
872
+ linear-gradient(#e6e6e6 1px, transparent 1px),
873
+ linear-gradient(
874
+ 90deg,
875
+ #e6e6e6 1px,
876
+ #ffffff 1px);
877
+ background-size:
878
+ 50px 50px,
879
+ 50px 50px,
880
+ 10px 10px,
881
+ 10px 10px;
882
+ background-position:
883
+ -2px -2px,
884
+ -2px -2px,
885
+ -1px -1px,
886
+ -1px -1px;
887
+ }
888
+ .tests {
889
+ transition: all 5s linear;
890
+ }
891
+ .markdown ul {
892
+ list-style-type: disc;
893
+ padding-left: 1.5rem;
894
+ }
895
+ .markdown ol {
896
+ list-style-type: decimal;
897
+ padding-left: 1.5rem;
898
+ }
899
+ .markdown a {
900
+ text-decoration: underline;
901
+ }
902
+ .no-defaults {
903
+ all: unset;
904
+ }
905
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
906
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
907
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
908
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
909
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
910
+ @property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
911
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
912
+ @property --tw-leading { syntax: "*"; inherits: false; }
913
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
914
+ @property --tw-blur { syntax: "*"; inherits: false; }
915
+ @property --tw-brightness { syntax: "*"; inherits: false; }
916
+ @property --tw-contrast { syntax: "*"; inherits: false; }
917
+ @property --tw-grayscale { syntax: "*"; inherits: false; }
918
+ @property --tw-hue-rotate { syntax: "*"; inherits: false; }
919
+ @property --tw-invert { syntax: "*"; inherits: false; }
920
+ @property --tw-opacity { syntax: "*"; inherits: false; }
921
+ @property --tw-saturate { syntax: "*"; inherits: false; }
922
+ @property --tw-sepia { syntax: "*"; inherits: false; }
923
+ @property --tw-drop-shadow { syntax: "*"; inherits: false; }
924
+ @property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
925
+ @property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
926
+ @property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
927
+ @layer properties {
928
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
929
+ *,
930
+ ::before,
931
+ ::after,
932
+ ::backdrop {
933
+ --tw-rotate-x: initial;
934
+ --tw-rotate-y: initial;
935
+ --tw-rotate-z: initial;
936
+ --tw-skew-x: initial;
937
+ --tw-skew-y: initial;
938
+ --tw-space-y-reverse: 0;
939
+ --tw-border-style: solid;
940
+ --tw-leading: initial;
941
+ --tw-font-weight: initial;
942
+ --tw-blur: initial;
943
+ --tw-brightness: initial;
944
+ --tw-contrast: initial;
945
+ --tw-grayscale: initial;
946
+ --tw-hue-rotate: initial;
947
+ --tw-invert: initial;
948
+ --tw-opacity: initial;
949
+ --tw-saturate: initial;
950
+ --tw-sepia: initial;
951
+ --tw-drop-shadow: initial;
952
+ --tw-drop-shadow-color: initial;
953
+ --tw-drop-shadow-alpha: 100%;
954
+ --tw-drop-shadow-size: initial;
955
+ }
956
+ }
957
+ }
958
+ /*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */