daisyui 0.0.0-insiders.3.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.
@@ -0,0 +1,1146 @@
1
+ .alert {
2
+ display: flex;
3
+ width: 100%;
4
+ flex-direction: column;
5
+ align-items: center;
6
+ justify-content: space-between;
7
+ gap: 1rem
8
+ }
9
+ .alert > :not([hidden]) ~ :not([hidden]) {
10
+ --tw-space-y-reverse: 0;
11
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
12
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse))
13
+ }
14
+ @media (min-width: 768px) {
15
+ .alert {
16
+ flex-direction: row
17
+ }
18
+ .alert > :not([hidden]) ~ :not([hidden]) {
19
+ --tw-space-y-reverse: 0;
20
+ margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
21
+ margin-bottom: calc(0px * var(--tw-space-y-reverse))
22
+ }
23
+ }
24
+ .alert > :where(*) {
25
+ display: flex;
26
+ align-items: center;
27
+ gap: 0.5rem
28
+ }
29
+ .artboard {
30
+ width: 100%
31
+ }
32
+ .avatar {
33
+ position: relative;
34
+ display: inline-flex
35
+ }
36
+ .avatar > div {
37
+ display: block;
38
+ aspect-ratio: 1 / 1;
39
+ overflow: hidden
40
+ }
41
+ .avatar img {
42
+ height: 100%;
43
+ width: 100%;
44
+ object-fit: cover
45
+ }
46
+ .avatar.placeholder > div {
47
+ display: flex;
48
+ align-items: center;
49
+ justify-content: center
50
+ }
51
+ .badge {
52
+ display: inline-flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
56
+ transition-duration: 200ms;
57
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
58
+ height: 1.25rem;
59
+ font-size: 0.875rem;
60
+ line-height: 1.25rem;
61
+ width: fit-content;
62
+ padding-left: 0.563rem;
63
+ padding-right: 0.563rem
64
+ }
65
+ .btm-nav {
66
+ position: fixed;
67
+ bottom: 0px;
68
+ left: 0px;
69
+ right: 0px;
70
+ display: flex;
71
+ width: 100%;
72
+ flex-direction: row;
73
+ align-items: center;
74
+ justify-content: space-around;
75
+ padding-bottom: env(safe-area-inset-bottom)
76
+ }
77
+ .btm-nav>* {
78
+ position: relative;
79
+ display: flex;
80
+ height: 100%;
81
+ flex-basis: 100%;
82
+ cursor: pointer;
83
+ flex-direction: column;
84
+ align-items: center;
85
+ justify-content: center;
86
+ gap: 0.25rem
87
+ }
88
+ .breadcrumbs {
89
+ max-width: 100%;
90
+ overflow-x: auto
91
+ }
92
+ .breadcrumbs > ul,.breadcrumbs > ol {
93
+ display: flex;
94
+ align-items: center;
95
+ white-space: nowrap;
96
+ min-height: min-content
97
+ }
98
+ .breadcrumbs > ul > li, .breadcrumbs > ol > li {
99
+ display: flex;
100
+ align-items: center
101
+ }
102
+ .breadcrumbs > ul > li > a, .breadcrumbs > ol > li > a {
103
+ display: flex;
104
+ cursor: pointer;
105
+ align-items: center
106
+ }
107
+ .breadcrumbs > ul > li > a:hover, .breadcrumbs > ol > li > a:hover {
108
+ text-decoration-line: underline
109
+ }
110
+ .btn {
111
+ display: inline-flex;
112
+ flex-shrink: 0;
113
+ cursor: pointer;
114
+ user-select: none;
115
+ flex-wrap: wrap;
116
+ align-items: center;
117
+ justify-content: center;
118
+ border-color: transparent;
119
+ text-align: center;
120
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
121
+ transition-duration: 200ms;
122
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
123
+ border-radius: var(--rounded-btn, 0.5rem);
124
+ height: 3rem;
125
+ padding-left: 1rem;
126
+ padding-right: 1rem;
127
+ font-size: 0.875rem;
128
+ line-height: 1.25rem;
129
+ min-height: 3rem;
130
+ line-height: 1em;
131
+ }
132
+
133
+ /* disabled */
134
+
135
+ .btn-disabled,
136
+ .btn[disabled] {
137
+ pointer-events: none;
138
+ }
139
+
140
+ /* shapes */
141
+
142
+ .btn-square {
143
+ height: 3rem;
144
+ width: 3rem;
145
+ padding: 0px;
146
+ }
147
+
148
+ .btn-circle {
149
+ height: 3rem;
150
+ width: 3rem;
151
+ border-radius: 9999px;
152
+ padding: 0px;
153
+ }
154
+
155
+ /* group */
156
+
157
+ .btn-group {
158
+ display: inline-flex;
159
+ }
160
+
161
+ .btn-group > input[type="radio"].btn {
162
+ appearance: none;
163
+ }
164
+
165
+ .btn-group > input[type="radio"].btn:before {
166
+ content: attr(data-title);
167
+ }
168
+ .card {
169
+ position: relative;
170
+ display: flex;
171
+ flex-direction: column
172
+ }
173
+ .card:focus {
174
+ outline: 2px solid transparent;
175
+ outline-offset: 2px
176
+ }
177
+ .card-body {
178
+ display: flex;
179
+ flex: 1 1 auto;
180
+ flex-direction: column
181
+ }
182
+ .card-body :where(p) {
183
+ flex-grow: 1
184
+ }
185
+ .card-actions {
186
+ display: flex;
187
+ flex-wrap: wrap;
188
+ align-items: flex-start;
189
+ gap: 0.5rem
190
+ }
191
+ .card figure {
192
+ display: flex;
193
+ align-items: center;
194
+ justify-content: center
195
+ }
196
+ .card.image-full {
197
+ display: grid
198
+ }
199
+ .card.image-full:before {
200
+ position: relative;
201
+ content: ""
202
+ }
203
+ .card.image-full:before,
204
+ .card.image-full > * {
205
+ grid-column-start: 1;
206
+ grid-row-start: 1
207
+ }
208
+ .card.image-full > figure img {
209
+ height: 100%;
210
+ object-fit: cover
211
+ }
212
+ .card.image-full > .card-body {
213
+ position: relative
214
+ }
215
+ .carousel {
216
+ display: flex;
217
+ overflow-x: scroll;
218
+ scroll-snap-type: x mandatory;
219
+ scroll-behavior: smooth;
220
+ }
221
+ .carousel-vertical {
222
+ flex-direction: column;
223
+ overflow-y: scroll;
224
+ scroll-snap-type: y mandatory;
225
+ }
226
+ .carousel-item {
227
+ box-sizing: content-box;
228
+ display: flex;
229
+ flex: none;
230
+ scroll-snap-align: start;
231
+ }
232
+ .carousel-center .carousel-item {
233
+ scroll-snap-align: center;
234
+ }
235
+ .carousel-end .carousel-item {
236
+ scroll-snap-align: end;
237
+ }
238
+ .chat {
239
+ display: grid;
240
+ grid-template-columns: repeat(2, minmax(0, 1fr));
241
+ column-gap: 0.75rem;
242
+ padding-top: 0.25rem;
243
+ padding-bottom: 0.25rem;
244
+ }
245
+ .chat-image {
246
+ grid-row: span 2 / span 2;
247
+ align-self: flex-end;
248
+ }
249
+ .chat-header {
250
+ grid-row-start: 1;
251
+ font-size: 0.875rem;
252
+ line-height: 1.25rem;
253
+ }
254
+ .chat-footer {
255
+ grid-row-start: 3;
256
+ font-size: 0.875rem;
257
+ line-height: 1.25rem;
258
+ }
259
+ .chat-bubble {
260
+ position: relative;
261
+ display: block;
262
+ width: fit-content;
263
+ padding-left: 1rem;
264
+ padding-right: 1rem;
265
+ padding-top: 0.5rem;
266
+ padding-bottom: 0.5rem;
267
+ max-width: 90%;
268
+ }
269
+ .chat-bubble:before {
270
+ position: absolute;
271
+ bottom: 0px;
272
+ height: 0.75rem;
273
+ width: 0.75rem;
274
+ background-color: inherit;
275
+ content: "";
276
+ -webkit-mask-size: contain;
277
+ mask-size: contain;
278
+ -webkit-mask-repeat: no-repeat;
279
+ mask-repeat: no-repeat;
280
+ -webkit-mask-position: center;
281
+ mask-position: center;
282
+ }
283
+ .chat-start {
284
+ place-items: start;
285
+ grid-template-columns: auto 1fr;
286
+ }
287
+ .chat-start .chat-header {
288
+ grid-column-start: 2;
289
+ }
290
+ .chat-start .chat-footer {
291
+ grid-column-start: 2;
292
+ }
293
+ .chat-start .chat-image {
294
+ grid-column-start: 1;
295
+ }
296
+ .chat-start .chat-bubble {
297
+ grid-column-start: 2;
298
+ }
299
+ .chat-start .chat-bubble:before {
300
+ -webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
301
+ mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
302
+ }
303
+ [dir="rtl"] .chat-start .chat-bubble:before {
304
+ -webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
305
+ mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
306
+ }
307
+ .chat-end {
308
+ place-items: end;
309
+ grid-template-columns: 1fr auto;
310
+ }
311
+ .chat-end .chat-header {
312
+ grid-column-start: 1;
313
+ }
314
+ .chat-end .chat-footer {
315
+ grid-column-start: 1;
316
+ }
317
+ .chat-end .chat-image {
318
+ grid-column-start: 2;
319
+ }
320
+ .chat-end .chat-bubble {
321
+ grid-column-start: 1;
322
+ }
323
+ .chat-end .chat-bubble:before {
324
+ -webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
325
+ mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");
326
+ }
327
+ [dir="rtl"] .chat-end .chat-bubble:before {
328
+ -webkit-mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
329
+ mask-image: url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");
330
+ }
331
+ .checkbox {
332
+ flex-shrink: 0
333
+ }
334
+ .collapse.collapse {
335
+ visibility: visible;
336
+ }
337
+ .collapse {
338
+ position: relative;
339
+ display: grid;
340
+ overflow: hidden;
341
+ grid-template-rows: 1fr auto;
342
+ }
343
+ .collapse-title,
344
+ .collapse > input[type="checkbox"],
345
+ .collapse-content {
346
+ grid-column-start: 1;
347
+ grid-row-start: 1;
348
+ }
349
+ .collapse > input[type="checkbox"] {
350
+ appearance: none;
351
+ opacity: 0;
352
+ }
353
+ .collapse-content {
354
+ grid-row-start: 2;
355
+ overflow: hidden;
356
+ max-height: 0px;
357
+ }
358
+ .collapse-open .collapse-content,
359
+ .collapse:focus:not(.collapse-close) .collapse-content,
360
+ .collapse:not(.collapse-close)
361
+ input[type="checkbox"]:checked
362
+ ~ .collapse-content {
363
+ max-height: none;
364
+ }
365
+ :root .countdown {
366
+ line-height: 1em;
367
+ }
368
+ .countdown {
369
+ display: inline-flex;
370
+ }
371
+ .countdown > * {
372
+ height: 1em;
373
+ display: inline-block;
374
+ overflow-y: hidden;
375
+ }
376
+ .countdown > *:before {
377
+ position: relative;
378
+ content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
379
+ white-space: pre;
380
+ top: calc(var(--value) * -1em);
381
+ }
382
+ .divider {
383
+ display: flex;
384
+ flex-direction: row;
385
+ align-items: center;
386
+ align-self: stretch;
387
+ }
388
+ .divider:before,
389
+ .divider:after {
390
+ content: "";
391
+ flex-grow: 1;
392
+ height: 0.125rem;
393
+ width: 100%;
394
+ }
395
+ .drawer {
396
+ position: relative;
397
+ display: grid;
398
+ grid-auto-columns: max-content auto;
399
+ }
400
+ .drawer-content {
401
+ grid-column-start: 2;
402
+ grid-row-start: 1;
403
+ }
404
+ .drawer-side {
405
+ pointer-events: none;
406
+ visibility: hidden;
407
+ position: fixed;
408
+ top: 0px;
409
+ left: 0px;
410
+ grid-column-start: 1;
411
+ grid-row-start: 1;
412
+ display: grid;
413
+ width: 100%;
414
+ grid-template-columns: repeat(1, minmax(0, 1fr));
415
+ grid-template-rows: repeat(1, minmax(0, 1fr));
416
+ align-items: flex-start;
417
+ justify-items: start;
418
+ overflow-y: auto;
419
+ overscroll-behavior: contain;
420
+ height: 100vh;
421
+ height: 100dvh;
422
+ scrollbar-width: none;
423
+ }
424
+ .drawer-side::-webkit-scrollbar {
425
+ display: none;
426
+ }
427
+ .drawer-side > *:not(.drawer-overlay) {
428
+ transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
429
+ transform: translateX(-100%);
430
+ }
431
+ [dir="rtl"] .drawer-side > *:not(.drawer-overlay) {
432
+ transform: translateX(100%);
433
+ }
434
+ .drawer-toggle {
435
+ position: fixed;
436
+ height: 0px;
437
+ width: 0px;
438
+ appearance: none;
439
+ opacity: 0;
440
+ }
441
+ .drawer-toggle:checked ~ .drawer-side {
442
+ pointer-events: auto;
443
+ visibility: visible;
444
+ }
445
+ .drawer-toggle:checked ~ .drawer-side > * {
446
+ grid-column-start: 1;
447
+ grid-row-start: 1;
448
+ }
449
+ .drawer-toggle:checked ~ .drawer-side > *:not(.drawer-overlay) {
450
+ transform: translateX(0%);
451
+ }
452
+ .drawer-toggle:checked ~ .drawer-side > .drawer-overlay {
453
+ position: sticky;
454
+ top: 0px;
455
+ place-self: stretch;
456
+ }
457
+ .drawer-end {
458
+ grid-auto-columns: auto max-content;
459
+ }
460
+ .drawer-end .drawer-toggle ~ .drawer-content {
461
+ grid-column-start: 1;
462
+ }
463
+ .drawer-end .drawer-toggle ~ .drawer-side {
464
+ justify-items: end;
465
+ }
466
+ .drawer-end .drawer-toggle ~ .drawer-side > *:not(.drawer-overlay) {
467
+ transform: translateX(100%);
468
+ }
469
+ [dir="rtl"] .drawer-end .drawer-toggle ~ .drawer-side > *:not(.drawer-overlay) {
470
+ transform: translateX(-100%);
471
+ }
472
+ .drawer-end .drawer-toggle:checked ~ .drawer-side > *:not(.drawer-overlay) {
473
+ transform: translateX(0%);
474
+ }
475
+ .dropdown {
476
+ position: relative;
477
+ display: inline-block
478
+ }
479
+ .dropdown > *:focus {
480
+ outline: 2px solid transparent;
481
+ outline-offset: 2px
482
+ }
483
+ .dropdown .dropdown-content {
484
+ visibility: hidden;
485
+ position: absolute;
486
+ z-index: 50;
487
+ opacity: 0
488
+ }
489
+ .dropdown-end .dropdown-content {
490
+ right: 0px
491
+ }
492
+ .dropdown-left .dropdown-content {
493
+ top: 0px;
494
+ right: 100%;
495
+ bottom: auto
496
+ }
497
+ .dropdown-right .dropdown-content {
498
+ left: 100%;
499
+ top: 0px;
500
+ bottom: auto
501
+ }
502
+ .dropdown-bottom .dropdown-content {
503
+ bottom: auto;
504
+ top: 100%
505
+ }
506
+ .dropdown-top .dropdown-content {
507
+ bottom: 100%;
508
+ top: auto
509
+ }
510
+ .dropdown-end.dropdown-right .dropdown-content {
511
+ bottom: 0px;
512
+ top: auto
513
+ }
514
+ .dropdown-end.dropdown-left .dropdown-content {
515
+ bottom: 0px;
516
+ top: auto
517
+ }
518
+ .dropdown.dropdown-open .dropdown-content,
519
+ .dropdown.dropdown-hover:hover .dropdown-content,
520
+ .dropdown:not(.dropdown-hover):focus .dropdown-content,
521
+ .dropdown:not(.dropdown-hover):focus-within .dropdown-content {
522
+ visibility: visible;
523
+ opacity: 1
524
+ }
525
+ .file-input {
526
+ height: 3rem;
527
+ flex-shrink: 1;
528
+ padding-right: 1rem;
529
+ font-size: 0.875rem;
530
+ line-height: 1.25rem;
531
+ line-height: 2
532
+ }
533
+ .file-input::file-selector-button {
534
+ margin-right: 1rem;
535
+ display: inline-flex;
536
+ height: 2.875rem;
537
+ min-height: 2.875rem;
538
+ flex-shrink: 0;
539
+ cursor: pointer;
540
+ user-select: none;
541
+ flex-wrap: wrap;
542
+ align-items: center;
543
+ justify-content: center;
544
+ padding-left: 1rem;
545
+ padding-right: 1rem;
546
+ text-align: center;
547
+ font-size: 0.875rem;
548
+ line-height: 1.25rem;
549
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
550
+ transition-duration: 200ms;
551
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
552
+ line-height: 1em
553
+ }
554
+ .footer {
555
+ display: grid;
556
+ width: 100%;
557
+ grid-auto-flow: row;
558
+ place-items: start;
559
+ }
560
+ .footer > * {
561
+ display: grid;
562
+ place-items: start;
563
+ }
564
+ .footer-center {
565
+ place-items: center;
566
+ text-align: center;
567
+ }
568
+ .footer-center > * {
569
+ place-items: center;
570
+ }
571
+ @media (min-width: 48rem) {
572
+ .footer {
573
+ grid-auto-flow: column;
574
+ }
575
+ .footer-center {
576
+ grid-auto-flow: row dense;
577
+ }
578
+ }
579
+ .form-control {
580
+ display: flex;
581
+ flex-direction: column
582
+ }
583
+ .label {
584
+ display: flex;
585
+ user-select: none;
586
+ align-items: center;
587
+ justify-content: space-between
588
+ }
589
+ .hero {
590
+ display: grid;
591
+ width: 100%;
592
+ place-items: center;
593
+ background-size: cover;
594
+ background-position: center
595
+ }
596
+ .hero > * {
597
+ grid-column-start: 1;
598
+ grid-row-start: 1
599
+ }
600
+ .hero-overlay {
601
+ grid-column-start: 1;
602
+ grid-row-start: 1;
603
+ height: 100%;
604
+ width: 100%
605
+ }
606
+ .hero-content {
607
+ z-index: 0;
608
+ display: flex;
609
+ align-items: center;
610
+ justify-content: center
611
+ }
612
+ .indicator {
613
+ position: relative;
614
+ display: inline-flex;
615
+ width: max-content;
616
+ }
617
+ .indicator :where(.indicator-item) {
618
+ z-index: 1;
619
+ position: absolute;
620
+ 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));
621
+ white-space: nowrap;
622
+ }
623
+ .input {
624
+ flex-shrink: 1;
625
+ height: 3rem;
626
+ padding-left: 1rem;
627
+ padding-right: 1rem;
628
+ font-size: 0.875rem;
629
+ line-height: 1.25rem;
630
+ line-height: 2;
631
+ }
632
+ .input-group {
633
+ display: flex;
634
+ width: 100%;
635
+ align-items: stretch;
636
+ }
637
+ .input-group > .input {
638
+ isolation: isolate;
639
+ }
640
+ .input-group > *,
641
+ .input-group > .input,
642
+ .input-group > .textarea,
643
+ .input-group > .select {
644
+ border-radius: 0px;
645
+ }
646
+ .input-group-md {
647
+ font-size: 0.875rem;
648
+ line-height: 1.25rem;
649
+ line-height: 2;
650
+ }
651
+ .input-group-lg {
652
+ font-size: 1.125rem;
653
+ line-height: 1.75rem;
654
+ line-height: 2;
655
+ }
656
+ .input-group-sm {
657
+ font-size: 0.875rem;
658
+ line-height: 2rem;
659
+ }
660
+ .input-group-xs {
661
+ font-size: 0.75rem;
662
+ line-height: 1rem;
663
+ line-height: 1.625;
664
+ }
665
+ .input-group :where(span) {
666
+ display: flex;
667
+ align-items: center;
668
+ --tw-bg-opacity: 1;
669
+ background-color: hsl(var(--b3, var(--b2)) / var(--tw-bg-opacity));
670
+ padding-left: 1rem;
671
+ padding-right: 1rem;
672
+ }
673
+ .input-group > :first-child {
674
+ border-top-left-radius: var(--rounded-btn, 0.5rem);
675
+ border-top-right-radius: 0;
676
+ border-bottom-left-radius: var(--rounded-btn, 0.5rem);
677
+ border-bottom-right-radius: 0;
678
+ }
679
+ .input-group > :last-child {
680
+ border-top-left-radius: 0;
681
+ border-top-right-radius: var(--rounded-btn, 0.5rem);
682
+ border-bottom-left-radius: 0;
683
+ border-bottom-right-radius: var(--rounded-btn, 0.5rem);
684
+ }
685
+ .input-group-vertical {
686
+ flex-direction: column;
687
+ }
688
+ .input-group-vertical :first-child {
689
+ border-top-left-radius: var(--rounded-btn, 0.5rem);
690
+ border-top-right-radius: var(--rounded-btn, 0.5rem);
691
+ border-bottom-left-radius: 0;
692
+ border-bottom-right-radius: 0;
693
+ }
694
+ .input-group-vertical :last-child {
695
+ border-top-left-radius: 0;
696
+ border-top-right-radius: 0;
697
+ border-bottom-left-radius: var(--rounded-btn, 0.5rem);
698
+ border-bottom-right-radius: var(--rounded-btn, 0.5rem);
699
+ }
700
+ .join {
701
+ display: inline-flex;
702
+ align-items: stretch;
703
+ }
704
+ .join * {
705
+ border-radius: inherit;
706
+ }
707
+ .join :where(.join-item) {
708
+ border-top-right-radius: 0;
709
+ border-bottom-right-radius: 0;
710
+ border-bottom-left-radius: 0;
711
+ border-top-left-radius: 0;
712
+ }
713
+ .join .join-item:not(:first-child):not(:last-child),
714
+ .join *:not(:first-child):not(:last-child) .join-item {
715
+ border-top-right-radius: 0;
716
+ border-bottom-right-radius: 0;
717
+ border-bottom-left-radius: 0;
718
+ border-top-left-radius: 0;
719
+ }
720
+ .join .join-item:first-child:not(:last-child),
721
+ .join *:first-child:not(:last-child) .join-item {
722
+ border-top-right-radius: 0;
723
+ border-bottom-right-radius: 0;
724
+ }
725
+ .join :where(.join-item:first-child:not(:last-child)),
726
+ .join :where(*:first-child:not(:last-child) .join-item) {
727
+ border-bottom-left-radius: inherit;
728
+ border-top-left-radius: inherit;
729
+ }
730
+ .join .join-item:last-child:not(:first-child),
731
+ .join *:last-child:not(:first-child) .join-item {
732
+ border-bottom-left-radius: 0;
733
+ border-top-left-radius: 0;
734
+ }
735
+ .join :where(.join-item:last-child:not(:first-child)),
736
+ .join :where(*:last-child:not(:first-child) .join-item) {
737
+ border-top-right-radius: inherit;
738
+ border-bottom-right-radius: inherit;
739
+ }
740
+ .kbd {
741
+ display: inline-flex;
742
+ align-items: center;
743
+ justify-content: center
744
+ }
745
+ .link {
746
+ cursor: pointer;
747
+ text-decoration-line: underline
748
+ }
749
+ .link-hover {
750
+ text-decoration-line: none
751
+ }
752
+ .link-hover:hover {
753
+ text-decoration-line: underline
754
+ }
755
+ .mask {
756
+ -webkit-mask-size: contain;
757
+ mask-size: contain;
758
+ -webkit-mask-repeat: no-repeat;
759
+ mask-repeat: no-repeat;
760
+ -webkit-mask-position: center;
761
+ mask-position: center;
762
+ }
763
+ .mask-half-1 {
764
+ -webkit-mask-size: 200%;
765
+ mask-size: 200%;
766
+ -webkit-mask-position: left;
767
+ mask-position: left;
768
+ }
769
+ .mask-half-2 {
770
+ -webkit-mask-size: 200%;
771
+ mask-size: 200%;
772
+ -webkit-mask-position: right;
773
+ mask-position: right;
774
+ }
775
+ .menu {
776
+ display: flex;
777
+ flex-direction: column;
778
+ flex-wrap: wrap;
779
+ font-size: 0.875rem;
780
+ line-height: 1.25rem
781
+ }
782
+ .menu :where(li ul) {
783
+ position: relative;
784
+ white-space: nowrap
785
+ }
786
+ .menu :where(li:not(.menu-title) > *:not(ul):not(details):not(.menu-title)),
787
+ .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
788
+ display: grid;
789
+ grid-auto-flow: column;
790
+ align-content: flex-start;
791
+ align-items: center;
792
+ gap: 0.5rem;
793
+ grid-auto-columns: max-content auto max-content;
794
+ user-select: none
795
+ }
796
+ .menu li.disabled {
797
+ cursor: not-allowed;
798
+ user-select: none
799
+ }
800
+ .menu :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
801
+ display: none
802
+ }
803
+ :where(.menu li) {
804
+ position: relative;
805
+ display: flex;
806
+ flex-shrink: 0;
807
+ flex-direction: column;
808
+ flex-wrap: wrap;
809
+ align-items: stretch
810
+ }
811
+ .mockup-code {
812
+ position: relative;
813
+ overflow: hidden;
814
+ overflow-x: auto;
815
+ }
816
+ .mockup-code pre[data-prefix]:before {
817
+ content: attr(data-prefix);
818
+ display: inline-block;
819
+ text-align: right;
820
+ }
821
+ .mockup-window {
822
+ position: relative;
823
+ overflow: hidden;
824
+ overflow-x: auto;
825
+ }
826
+ .mockup-window pre[data-prefix]:before {
827
+ content: attr(data-prefix);
828
+ display: inline-block;
829
+ text-align: right;
830
+ }
831
+ .modal {
832
+ /* @apply pointer-events-none invisible fixed inset-0 flex justify-center opacity-0; */
833
+ pointer-events: none;
834
+ position: fixed;
835
+ top: 0px;
836
+ right: 0px;
837
+ bottom: 0px;
838
+ left: 0px;
839
+ margin: 0px;
840
+ display: grid;
841
+ height: 100%;
842
+ max-height: none;
843
+ width: 100%;
844
+ max-width: none;
845
+ justify-items: center;
846
+ padding: 0px;
847
+ opacity: 0;
848
+ overscroll-behavior: contain;
849
+ z-index: 999;
850
+ }
851
+ .modal-scroll {
852
+ overscroll-behavior: auto;
853
+ }
854
+ :where(.modal) {
855
+ align-items: center;
856
+ }
857
+ .modal-box {
858
+ max-height: calc(100vh - 5em);
859
+ }
860
+ .modal-open,
861
+ .modal:target,
862
+ .modal-toggle:checked + .modal,
863
+ .modal[open] {
864
+ pointer-events: auto;
865
+ visibility: visible;
866
+ opacity: 1;
867
+ }
868
+ .modal-action {
869
+ display: flex;
870
+ }
871
+ .modal-toggle {
872
+ position: fixed;
873
+ height: 0px;
874
+ width: 0px;
875
+ appearance: none;
876
+ opacity: 0;
877
+ }
878
+ :root:has(:is(.modal-open, .modal:target, .modal-toggle:checked + .modal, .modal[open])) {
879
+ overflow: hidden;
880
+ }
881
+ .navbar {
882
+ display: flex;
883
+ align-items: center;
884
+ }
885
+ :where(.navbar > *) {
886
+ display: inline-flex;
887
+ align-items: center;
888
+ }
889
+ .navbar-start {
890
+ width: 50%;
891
+ justify-content: flex-start;
892
+ }
893
+ .navbar-center {
894
+ flex-shrink: 0;
895
+ }
896
+ .navbar-end {
897
+ width: 50%;
898
+ justify-content: flex-end;
899
+ }
900
+ .progress {
901
+ position: relative;
902
+ width: 100%;
903
+ appearance: none;
904
+ overflow: hidden
905
+ }
906
+ .radial-progress {
907
+ position: relative;
908
+ display: inline-grid;
909
+ height: var(--size);
910
+ width: var(--size);
911
+ place-content: center;
912
+ border-radius: 9999px;
913
+ background-color: transparent;
914
+ vertical-align: middle;
915
+ box-sizing: content-box;
916
+ }
917
+ .radial-progress::-moz-progress-bar {
918
+ appearance: none;
919
+ background-color: transparent;
920
+ }
921
+ .radial-progress::-webkit-progress-value {
922
+ appearance: none;
923
+ background-color: transparent;
924
+ }
925
+ .radial-progress::-webkit-progress-bar {
926
+ appearance: none;
927
+ background-color: transparent;
928
+ }
929
+ .radial-progress:before,
930
+ .radial-progress:after {
931
+ position: absolute;
932
+ border-radius: 9999px;
933
+ content: "";
934
+ }
935
+ .radial-progress:before {
936
+ top: 0px;
937
+ right: 0px;
938
+ bottom: 0px;
939
+ left: 0px;
940
+ background: radial-gradient(farthest-side, currentColor 98%, #0000) top/var(--thickness) var(--thickness) no-repeat, conic-gradient(currentColor calc(var(--value) * 1%), #0000 0);
941
+ -webkit-mask: radial-gradient(farthest-side, #0000 calc(99% - var(--thickness)), #000 calc(100% - var(--thickness)));
942
+ mask: radial-gradient(farthest-side, #0000 calc(99% - var(--thickness)), #000 calc(100% - var(--thickness)));
943
+ }
944
+ .radial-progress:after {
945
+ inset: calc(50% - var(--thickness) / 2);
946
+ transform: rotate(calc(var(--value) * 3.6deg - 90deg)) translate(calc(var(--size) / 2 - 50%));
947
+ }
948
+ .radio {
949
+ flex-shrink: 0
950
+ }
951
+ .range {
952
+ height: 1.5rem;
953
+ width: 100%;
954
+ cursor: pointer;
955
+ }
956
+ .range:focus {
957
+ outline: none;
958
+ }
959
+ .rating {
960
+ position: relative;
961
+ display: inline-flex
962
+ }
963
+ .rating :where(input) {
964
+ cursor: pointer;
965
+ border-radius: 0px
966
+ }
967
+ .select {
968
+ display: inline-flex;
969
+ flex-shrink: 0;
970
+ cursor: pointer;
971
+ user-select: none;
972
+ appearance: none;
973
+ height: 3rem;
974
+ padding-left: 1rem;
975
+ padding-right: 2.5rem;
976
+ font-size: 0.875rem;
977
+ line-height: 1.25rem;
978
+ line-height: 2;
979
+ min-height: 3rem
980
+
981
+ /* disabled */
982
+ /* &-disabled,
983
+ &[disabled] {
984
+ @apply pointer-events-none;
985
+ } */
986
+ }
987
+ /* multiple */
988
+ .select[multiple] {
989
+ height: auto
990
+ }
991
+ .stack {
992
+ display: inline-grid;
993
+ }
994
+ .stack > * {
995
+ grid-column-start: 1;
996
+ grid-row-start: 1;
997
+ transform: translateY(10%) scale(0.9);
998
+ z-index: 1;
999
+ }
1000
+ .stack > *:nth-child(2) {
1001
+ transform: translateY(5%) scale(0.95);
1002
+ z-index: 2;
1003
+ }
1004
+ .stack > *:nth-child(1) {
1005
+ transform: translateY(0) scale(1);
1006
+ z-index: 3;
1007
+ }
1008
+ .stats {
1009
+ display: inline-grid
1010
+ }
1011
+ :where(.stats) {
1012
+ grid-auto-flow: column
1013
+ }
1014
+ .stat {
1015
+ display: inline-grid;
1016
+ width: 100%;
1017
+ grid-template-columns: repeat(1, 1fr)
1018
+ }
1019
+ .stat-figure {
1020
+ grid-column-start: 2;
1021
+ grid-row: span 3 / span 3;
1022
+ grid-row-start: 1;
1023
+ place-self: center;
1024
+ justify-self: end
1025
+ }
1026
+ .stat-title {
1027
+ grid-column-start: 1;
1028
+ white-space: nowrap
1029
+ }
1030
+ .stat-value {
1031
+ grid-column-start: 1;
1032
+ white-space: nowrap
1033
+ }
1034
+ .stat-desc {
1035
+ grid-column-start: 1;
1036
+ white-space: nowrap
1037
+ }
1038
+ .stat-actions {
1039
+ grid-column-start: 1;
1040
+ white-space: nowrap
1041
+ }
1042
+ /* .stats.grid-flow-row {
1043
+ @apply auto-rows-fr;
1044
+ } */
1045
+ .steps {
1046
+ display: inline-grid;
1047
+ grid-auto-flow: column;
1048
+ overflow: hidden;
1049
+ overflow-x: auto;
1050
+ counter-reset: step;
1051
+ grid-auto-columns: 1fr
1052
+ }
1053
+ .steps .step {
1054
+ display: grid;
1055
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1056
+ grid-template-rows: repeat(2, minmax(0, 1fr));
1057
+ place-items: center;
1058
+ text-align: center
1059
+ }
1060
+ .swap {
1061
+
1062
+ position: relative;
1063
+
1064
+ display: inline-grid;
1065
+
1066
+ user-select: none;
1067
+
1068
+ place-content: center
1069
+ }
1070
+
1071
+ .swap > * {
1072
+
1073
+ grid-column-start: 1;
1074
+
1075
+ grid-row-start: 1
1076
+ }
1077
+
1078
+ .swap input {
1079
+
1080
+ appearance: none
1081
+ }
1082
+
1083
+ .swap .swap-on,
1084
+ .swap .swap-indeterminate,
1085
+ .swap input:indeterminate ~ .swap-on {
1086
+
1087
+ opacity: 0
1088
+ }
1089
+
1090
+ .swap input:checked ~ .swap-off,
1091
+ .swap.swap-active .swap-off,
1092
+ .swap input:indeterminate ~ .swap-off {
1093
+
1094
+ opacity: 0
1095
+ }
1096
+
1097
+ .swap input:checked ~ .swap-on,
1098
+ .swap-active .swap-on,
1099
+ .swap input:indeterminate ~ .swap-indeterminate {
1100
+
1101
+ opacity: 1
1102
+ }
1103
+ .tabs {
1104
+ display: flex;
1105
+ flex-wrap: wrap;
1106
+ align-items: flex-end
1107
+ }
1108
+ .tab {
1109
+ position: relative;
1110
+ display: inline-flex;
1111
+ cursor: pointer;
1112
+ user-select: none;
1113
+ flex-wrap: wrap;
1114
+ align-items: center;
1115
+ justify-content: center;
1116
+ text-align: center;
1117
+ height: 2rem;
1118
+ font-size: 0.875rem;
1119
+ line-height: 1.25rem;
1120
+ line-height: 2;
1121
+ --tab-padding: 1rem
1122
+ }
1123
+ .table {
1124
+ position: relative
1125
+ }
1126
+ .textarea {
1127
+ flex-shrink: 1;
1128
+ min-height: 3rem;
1129
+ padding-top: 0.5rem;
1130
+ padding-bottom: 0.5rem;
1131
+ padding-left: 1rem;
1132
+ padding-right: 1rem;
1133
+ font-size: 0.875rem;
1134
+ line-height: 1.25rem;
1135
+ line-height: 2
1136
+ }
1137
+ .toast {
1138
+ position: fixed;
1139
+ display: flex;
1140
+ min-width: fit-content;
1141
+ flex-direction: column;
1142
+ white-space: nowrap
1143
+ }
1144
+ .toggle {
1145
+ flex-shrink: 0
1146
+ }