@macroui/macroui 1.0.31 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +27 -193
- package/dist/base.js +1 -0
- package/dist/{macroui.css → full.css} +0 -9014
- package/dist/index.d.ts +122 -0
- package/dist/index.js +149 -0
- package/dist/styled.css +5192 -0
- package/dist/styled.js +1 -0
- package/dist/themes.css +2118 -0
- package/dist/unstyled.css +1330 -0
- package/dist/unstyled.js +1 -0
- package/dist/utilities-styled.js +1 -0
- package/dist/utilities-unstyled.js +1 -0
- package/dist/utilities.js +1 -0
- package/package.json +30 -66
- package/src/base/properties.css +5 -0
- package/src/base/reset.css +130 -0
- package/src/base/rootcolor.css +9 -0
- package/src/base/rootscrollgutter.css +21 -0
- package/src/base/rootscrolllock.css +4 -0
- package/src/base/scrollbar.css +3 -0
- package/src/base/svg.css +3 -0
- package/src/components/alert.css +126 -0
- package/src/components/avatar.css +60 -0
- package/src/components/badge.css +151 -0
- package/src/components/breadcrumbs.css +40 -0
- package/src/components/button.css +362 -0
- package/src/components/calendar.css +549 -0
- package/src/components/card.css +203 -0
- package/src/components/carousel.css +59 -0
- package/src/components/chat.css +157 -0
- package/src/components/checkbox.css +174 -0
- package/src/components/collapse.css +302 -0
- package/src/components/countdown.css +56 -0
- package/src/components/diff.css +93 -0
- package/src/components/divider.css +148 -0
- package/src/components/dock.css +123 -0
- package/src/components/drawer.css +166 -0
- package/src/components/dropdown.css +247 -0
- package/src/components/fab.css +139 -0
- package/src/components/fieldset.css +23 -0
- package/src/components/fileinput.css +265 -0
- package/src/components/filter.css +42 -0
- package/src/components/footer.css +45 -0
- package/src/components/hero.css +21 -0
- package/src/components/hover3d.css +128 -0
- package/src/components/hovergallery.css +87 -0
- package/src/components/indicator.css +76 -0
- package/src/components/input.css +263 -0
- package/src/components/kbd.css +49 -0
- package/src/components/label.css +101 -0
- package/src/components/link.css +116 -0
- package/src/components/list.css +58 -0
- package/src/components/loading.css +76 -0
- package/src/components/mask.css +108 -0
- package/src/components/menu.css +298 -0
- package/src/components/mockup.css +150 -0
- package/src/components/modal.css +182 -0
- package/src/components/navbar.css +36 -0
- package/src/components/progress.css +108 -0
- package/src/components/radialprogress.css +39 -0
- package/src/components/radio.css +158 -0
- package/src/components/range.css +186 -0
- package/src/components/rating.css +114 -0
- package/src/components/select.css +284 -0
- package/src/components/skeleton.css +41 -0
- package/src/components/stack.css +80 -0
- package/src/components/stat.css +73 -0
- package/src/components/status.css +92 -0
- package/src/components/steps.css +168 -0
- package/src/components/swap.css +94 -0
- package/src/components/tab.css +557 -0
- package/src/components/table.css +126 -0
- package/src/components/textarea.css +179 -0
- package/src/components/textrotate.css +71 -0
- package/src/components/timeline.css +250 -0
- package/src/components/toast.css +68 -0
- package/src/components/toggle.css +239 -0
- package/src/components/tooltip.css +203 -0
- package/src/components/validator.css +47 -0
- package/src/themes/abyss.css +29 -0
- package/src/themes/acid.css +29 -0
- package/src/themes/aqua.css +29 -0
- package/src/themes/autumn.css +29 -0
- package/src/themes/black.css +29 -0
- package/src/themes/bumblebee.css +29 -0
- package/src/themes/business.css +29 -0
- package/src/themes/caramellatte.css +29 -0
- package/src/themes/cmyk.css +29 -0
- package/src/themes/coffee.css +29 -0
- package/src/themes/corporate.css +29 -0
- package/src/themes/cupcake.css +29 -0
- package/src/themes/cyberpunk.css +29 -0
- package/src/themes/dark.css +29 -0
- package/src/themes/dim.css +29 -0
- package/src/themes/dracula.css +29 -0
- package/src/themes/emerald.css +29 -0
- package/src/themes/fantasy.css +29 -0
- package/src/themes/forest.css +29 -0
- package/src/themes/garden.css +29 -0
- package/src/themes/halloween.css +29 -0
- package/src/themes/lemonade.css +29 -0
- package/src/themes/light.css +29 -0
- package/src/themes/lofi.css +29 -0
- package/src/themes/luxury.css +29 -0
- package/src/themes/night.css +29 -0
- package/src/themes/nord.css +29 -0
- package/src/themes/pastel.css +29 -0
- package/src/themes/retro.css +29 -0
- package/src/themes/silk.css +29 -0
- package/src/themes/sunset.css +29 -0
- package/src/themes/synthwave.css +29 -0
- package/src/themes/valentine.css +29 -0
- package/src/themes/winter.css +29 -0
- package/src/themes/wireframe.css +29 -0
- package/src/utilities/glass.css +20 -0
- package/src/utilities/join.css +207 -0
- package/src/utilities/radius.css +119 -0
- package/src/utilities/typography.css +31 -0
- package/dist/index.cjs.js +0 -19742
- package/dist/index.es.js +0 -19564
|
@@ -0,0 +1,1330 @@
|
|
|
1
|
+
.alert {
|
|
2
|
+
display: grid;
|
|
3
|
+
width: 100%;
|
|
4
|
+
grid-auto-flow: row;
|
|
5
|
+
align-content: flex-start;
|
|
6
|
+
align-items: center;
|
|
7
|
+
justify-items: center;
|
|
8
|
+
gap: 1rem;
|
|
9
|
+
text-align: center
|
|
10
|
+
}
|
|
11
|
+
@media (min-width: 640px) {
|
|
12
|
+
.alert {
|
|
13
|
+
grid-auto-flow: column;
|
|
14
|
+
grid-template-columns: auto minmax(auto,1fr);
|
|
15
|
+
justify-items: start;
|
|
16
|
+
text-align: start
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.artboard {
|
|
20
|
+
width: 100%
|
|
21
|
+
}
|
|
22
|
+
.avatar {
|
|
23
|
+
position: relative;
|
|
24
|
+
display: inline-flex
|
|
25
|
+
}
|
|
26
|
+
.avatar > div {
|
|
27
|
+
display: block;
|
|
28
|
+
aspect-ratio: 1 / 1;
|
|
29
|
+
overflow: hidden
|
|
30
|
+
}
|
|
31
|
+
.avatar img {
|
|
32
|
+
height: 100%;
|
|
33
|
+
width: 100%;
|
|
34
|
+
object-fit: cover
|
|
35
|
+
}
|
|
36
|
+
.avatar.placeholder > div {
|
|
37
|
+
display: flex;
|
|
38
|
+
align-items: center;
|
|
39
|
+
justify-content: center
|
|
40
|
+
}
|
|
41
|
+
.badge {
|
|
42
|
+
display: inline-flex;
|
|
43
|
+
align-items: center;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
46
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
47
|
+
transition-duration: 200ms;
|
|
48
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
49
|
+
height: 1.25rem;
|
|
50
|
+
font-size: 0.875rem;
|
|
51
|
+
line-height: 1.25rem;
|
|
52
|
+
width: fit-content;
|
|
53
|
+
padding-left: 0.563rem;
|
|
54
|
+
padding-right: 0.563rem
|
|
55
|
+
}
|
|
56
|
+
.btm-nav {
|
|
57
|
+
position: fixed;
|
|
58
|
+
bottom: 0px;
|
|
59
|
+
left: 0px;
|
|
60
|
+
right: 0px;
|
|
61
|
+
display: flex;
|
|
62
|
+
width: 100%;
|
|
63
|
+
flex-direction: row;
|
|
64
|
+
align-items: center;
|
|
65
|
+
justify-content: space-around;
|
|
66
|
+
padding-bottom: env(safe-area-inset-bottom)
|
|
67
|
+
}
|
|
68
|
+
.btm-nav > * {
|
|
69
|
+
position: relative;
|
|
70
|
+
display: flex;
|
|
71
|
+
height: 100%;
|
|
72
|
+
flex-basis: 100%;
|
|
73
|
+
cursor: pointer;
|
|
74
|
+
flex-direction: column;
|
|
75
|
+
align-items: center;
|
|
76
|
+
justify-content: center;
|
|
77
|
+
gap: 0.25rem
|
|
78
|
+
}
|
|
79
|
+
.breadcrumbs {
|
|
80
|
+
max-width: 100%;
|
|
81
|
+
overflow-x: auto
|
|
82
|
+
}
|
|
83
|
+
.breadcrumbs > ul,
|
|
84
|
+
.breadcrumbs > ol {
|
|
85
|
+
display: flex;
|
|
86
|
+
align-items: center;
|
|
87
|
+
white-space: nowrap;
|
|
88
|
+
min-height: min-content
|
|
89
|
+
}
|
|
90
|
+
.breadcrumbs > ul > li, .breadcrumbs > ol > li {
|
|
91
|
+
display: flex;
|
|
92
|
+
align-items: center
|
|
93
|
+
}
|
|
94
|
+
.breadcrumbs > ul > li > a, .breadcrumbs > ol > li > a {
|
|
95
|
+
display: flex;
|
|
96
|
+
cursor: pointer;
|
|
97
|
+
align-items: center
|
|
98
|
+
}
|
|
99
|
+
@media(hover:hover) {
|
|
100
|
+
.breadcrumbs > ul > li > a:hover, .breadcrumbs > ol > li > a:hover {
|
|
101
|
+
text-decoration-line: underline
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
.btn {
|
|
105
|
+
display: inline-flex;
|
|
106
|
+
height: 3rem;
|
|
107
|
+
min-height: 3rem;
|
|
108
|
+
flex-shrink: 0;
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
user-select: none;
|
|
111
|
+
flex-wrap: wrap;
|
|
112
|
+
align-items: center;
|
|
113
|
+
justify-content: center;
|
|
114
|
+
border-radius: var(--rounded-btn, 0.5rem);
|
|
115
|
+
border-color: transparent;
|
|
116
|
+
padding-left: 1rem;
|
|
117
|
+
padding-right: 1rem;
|
|
118
|
+
text-align: center;
|
|
119
|
+
font-size: 0.875rem;
|
|
120
|
+
line-height: 1em
|
|
121
|
+
}
|
|
122
|
+
/* disabled */
|
|
123
|
+
.btn-disabled,
|
|
124
|
+
.btn[disabled],
|
|
125
|
+
.btn:disabled {
|
|
126
|
+
pointer-events: none
|
|
127
|
+
}
|
|
128
|
+
/* shapes */
|
|
129
|
+
.btn-square {
|
|
130
|
+
height: 3rem;
|
|
131
|
+
width: 3rem;
|
|
132
|
+
padding: 0px
|
|
133
|
+
}
|
|
134
|
+
.btn-circle {
|
|
135
|
+
height: 3rem;
|
|
136
|
+
width: 3rem;
|
|
137
|
+
border-radius: 9999px;
|
|
138
|
+
padding: 0px
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/* radio input and checkbox as button */
|
|
142
|
+
|
|
143
|
+
:where(.btn:is(input[type="checkbox"])),
|
|
144
|
+
:where(.btn:is(input[type="radio"])) {
|
|
145
|
+
width: auto;
|
|
146
|
+
appearance: none
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.btn:is(input[type="checkbox"]):after,
|
|
150
|
+
.btn:is(input[type="radio"]):after {
|
|
151
|
+
--tw-content: attr(aria-label);
|
|
152
|
+
content: var(--tw-content)
|
|
153
|
+
}
|
|
154
|
+
.card {
|
|
155
|
+
position: relative;
|
|
156
|
+
display: flex;
|
|
157
|
+
flex-direction: column
|
|
158
|
+
}
|
|
159
|
+
.card:focus {
|
|
160
|
+
outline: 2px solid transparent;
|
|
161
|
+
outline-offset: 2px
|
|
162
|
+
}
|
|
163
|
+
.card-body {
|
|
164
|
+
display: flex;
|
|
165
|
+
flex: 1 1 auto;
|
|
166
|
+
flex-direction: column
|
|
167
|
+
}
|
|
168
|
+
.card-body :where(p) {
|
|
169
|
+
flex-grow: 1
|
|
170
|
+
}
|
|
171
|
+
.card-actions {
|
|
172
|
+
display: flex;
|
|
173
|
+
flex-wrap: wrap;
|
|
174
|
+
align-items: flex-start;
|
|
175
|
+
gap: 0.5rem
|
|
176
|
+
}
|
|
177
|
+
.card figure {
|
|
178
|
+
display: flex;
|
|
179
|
+
align-items: center;
|
|
180
|
+
justify-content: center
|
|
181
|
+
}
|
|
182
|
+
.card.image-full {
|
|
183
|
+
display: grid
|
|
184
|
+
}
|
|
185
|
+
.card.image-full:before {
|
|
186
|
+
position: relative;
|
|
187
|
+
content: ""
|
|
188
|
+
}
|
|
189
|
+
.card.image-full:before,
|
|
190
|
+
.card.image-full > * {
|
|
191
|
+
grid-column-start: 1;
|
|
192
|
+
grid-row-start: 1
|
|
193
|
+
}
|
|
194
|
+
.card.image-full > figure img {
|
|
195
|
+
height: 100%;
|
|
196
|
+
object-fit: cover
|
|
197
|
+
}
|
|
198
|
+
.card.image-full > .card-body {
|
|
199
|
+
position: relative
|
|
200
|
+
}
|
|
201
|
+
.carousel {
|
|
202
|
+
display: inline-flex;
|
|
203
|
+
overflow-x: scroll;
|
|
204
|
+
scroll-snap-type: x mandatory;
|
|
205
|
+
scroll-behavior: smooth;
|
|
206
|
+
}
|
|
207
|
+
.carousel-vertical {
|
|
208
|
+
flex-direction: column;
|
|
209
|
+
overflow-y: scroll;
|
|
210
|
+
scroll-snap-type: y mandatory;
|
|
211
|
+
}
|
|
212
|
+
.carousel-item {
|
|
213
|
+
box-sizing: content-box;
|
|
214
|
+
display: flex;
|
|
215
|
+
flex: none;
|
|
216
|
+
scroll-snap-align: start;
|
|
217
|
+
}
|
|
218
|
+
.carousel-start .carousel-item {
|
|
219
|
+
scroll-snap-align: start;
|
|
220
|
+
}
|
|
221
|
+
.carousel-center .carousel-item {
|
|
222
|
+
scroll-snap-align: center;
|
|
223
|
+
}
|
|
224
|
+
.carousel-end .carousel-item {
|
|
225
|
+
scroll-snap-align: end;
|
|
226
|
+
}
|
|
227
|
+
.chat {
|
|
228
|
+
display: grid;
|
|
229
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
230
|
+
column-gap: 0.75rem;
|
|
231
|
+
padding-top: 0.25rem;
|
|
232
|
+
padding-bottom: 0.25rem;
|
|
233
|
+
}
|
|
234
|
+
.chat-image {
|
|
235
|
+
grid-row: span 2 / span 2;
|
|
236
|
+
align-self: flex-end;
|
|
237
|
+
}
|
|
238
|
+
.chat-header {
|
|
239
|
+
grid-row-start: 1;
|
|
240
|
+
font-size: 0.875rem;
|
|
241
|
+
line-height: 1.25rem;
|
|
242
|
+
}
|
|
243
|
+
.chat-footer {
|
|
244
|
+
grid-row-start: 3;
|
|
245
|
+
font-size: 0.875rem;
|
|
246
|
+
line-height: 1.25rem;
|
|
247
|
+
}
|
|
248
|
+
.chat-bubble {
|
|
249
|
+
position: relative;
|
|
250
|
+
display: block;
|
|
251
|
+
width: fit-content;
|
|
252
|
+
padding-left: 1rem;
|
|
253
|
+
padding-right: 1rem;
|
|
254
|
+
padding-top: 0.5rem;
|
|
255
|
+
padding-bottom: 0.5rem;
|
|
256
|
+
max-width: 90%;
|
|
257
|
+
}
|
|
258
|
+
.chat-bubble:before {
|
|
259
|
+
position: absolute;
|
|
260
|
+
bottom: 0px;
|
|
261
|
+
height: 0.75rem;
|
|
262
|
+
width: 0.75rem;
|
|
263
|
+
background-color: inherit;
|
|
264
|
+
content: "";
|
|
265
|
+
mask-size: contain;
|
|
266
|
+
mask-repeat: no-repeat;
|
|
267
|
+
mask-position: center;
|
|
268
|
+
}
|
|
269
|
+
.chat-start {
|
|
270
|
+
place-items: start;
|
|
271
|
+
grid-template-columns: auto 1fr;
|
|
272
|
+
}
|
|
273
|
+
.chat-start .chat-header {
|
|
274
|
+
grid-column-start: 2;
|
|
275
|
+
}
|
|
276
|
+
.chat-start .chat-footer {
|
|
277
|
+
grid-column-start: 2;
|
|
278
|
+
}
|
|
279
|
+
.chat-start .chat-image {
|
|
280
|
+
grid-column-start: 1;
|
|
281
|
+
}
|
|
282
|
+
.chat-start .chat-bubble {
|
|
283
|
+
grid-column-start: 2;
|
|
284
|
+
}
|
|
285
|
+
.chat-start .chat-bubble:before {
|
|
286
|
+
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");
|
|
287
|
+
}
|
|
288
|
+
[dir="rtl"] .chat-start .chat-bubble:before {
|
|
289
|
+
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");
|
|
290
|
+
}
|
|
291
|
+
.chat-end {
|
|
292
|
+
place-items: end;
|
|
293
|
+
grid-template-columns: 1fr auto;
|
|
294
|
+
}
|
|
295
|
+
.chat-end .chat-header {
|
|
296
|
+
grid-column-start: 1;
|
|
297
|
+
}
|
|
298
|
+
.chat-end .chat-footer {
|
|
299
|
+
grid-column-start: 1;
|
|
300
|
+
}
|
|
301
|
+
.chat-end .chat-image {
|
|
302
|
+
grid-column-start: 2;
|
|
303
|
+
}
|
|
304
|
+
.chat-end .chat-bubble {
|
|
305
|
+
grid-column-start: 1;
|
|
306
|
+
}
|
|
307
|
+
.chat-end .chat-bubble:before {
|
|
308
|
+
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");
|
|
309
|
+
}
|
|
310
|
+
[dir="rtl"] .chat-end .chat-bubble:before {
|
|
311
|
+
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");
|
|
312
|
+
}
|
|
313
|
+
.checkbox {
|
|
314
|
+
flex-shrink: 0
|
|
315
|
+
}
|
|
316
|
+
.collapse:not(td):not(tr):not(colgroup) {
|
|
317
|
+
visibility: visible;
|
|
318
|
+
}
|
|
319
|
+
.collapse {
|
|
320
|
+
position: relative;
|
|
321
|
+
display: grid;
|
|
322
|
+
overflow: hidden;
|
|
323
|
+
grid-template-rows: max-content 0fr;
|
|
324
|
+
transition: grid-template-rows 0.2s;
|
|
325
|
+
}
|
|
326
|
+
.collapse-title,
|
|
327
|
+
.collapse > input[type="checkbox"],
|
|
328
|
+
.collapse > input[type="radio"],
|
|
329
|
+
.collapse-content {
|
|
330
|
+
grid-column-start: 1;
|
|
331
|
+
grid-row-start: 1;
|
|
332
|
+
}
|
|
333
|
+
.collapse > input[type="checkbox"],
|
|
334
|
+
.collapse > input[type="radio"] {
|
|
335
|
+
appearance: none;
|
|
336
|
+
opacity: 0;
|
|
337
|
+
}
|
|
338
|
+
:where(.collapse > input[type="checkbox"]),
|
|
339
|
+
:where(.collapse > input[type="radio"]) {
|
|
340
|
+
height: 100%;
|
|
341
|
+
width: 100%;
|
|
342
|
+
}
|
|
343
|
+
.collapse-content {
|
|
344
|
+
visibility: hidden;
|
|
345
|
+
grid-column-start: 1;
|
|
346
|
+
grid-row-start: 2;
|
|
347
|
+
min-height: 0px;
|
|
348
|
+
transition: visibility 0.2s;
|
|
349
|
+
}
|
|
350
|
+
.collapse[open],
|
|
351
|
+
.collapse-open,
|
|
352
|
+
.collapse:focus:not(.collapse-close) {
|
|
353
|
+
grid-template-rows: max-content 1fr;
|
|
354
|
+
}
|
|
355
|
+
.collapse:not(.collapse-close):has(> input[type="checkbox"]:checked),
|
|
356
|
+
.collapse:not(.collapse-close):has(> input[type="radio"]:checked) {
|
|
357
|
+
grid-template-rows: max-content 1fr;
|
|
358
|
+
}
|
|
359
|
+
.collapse[open] > .collapse-content,
|
|
360
|
+
.collapse-open > .collapse-content,
|
|
361
|
+
.collapse:focus:not(.collapse-close) > .collapse-content,
|
|
362
|
+
.collapse:not(.collapse-close) > input[type="checkbox"]:checked ~ .collapse-content,
|
|
363
|
+
.collapse:not(.collapse-close) > input[type="radio"]:checked ~ .collapse-content {
|
|
364
|
+
visibility: visible;
|
|
365
|
+
min-height: fit-content;
|
|
366
|
+
}
|
|
367
|
+
:root .countdown {
|
|
368
|
+
line-height: 1em;
|
|
369
|
+
}
|
|
370
|
+
.countdown {
|
|
371
|
+
display: inline-flex;
|
|
372
|
+
}
|
|
373
|
+
.countdown > * {
|
|
374
|
+
height: 1em;
|
|
375
|
+
display: inline-block;
|
|
376
|
+
overflow-y: hidden;
|
|
377
|
+
}
|
|
378
|
+
.countdown > *:before {
|
|
379
|
+
position: relative;
|
|
380
|
+
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";
|
|
381
|
+
white-space: pre;
|
|
382
|
+
top: calc(var(--value) * -1em);
|
|
383
|
+
}
|
|
384
|
+
.diff {
|
|
385
|
+
position: relative;
|
|
386
|
+
display: grid;
|
|
387
|
+
width: 100%;
|
|
388
|
+
overflow: hidden;
|
|
389
|
+
direction: ltr;
|
|
390
|
+
container-type: inline-size;
|
|
391
|
+
grid-template-columns: auto 1fr
|
|
392
|
+
}
|
|
393
|
+
.diff-resizer {
|
|
394
|
+
position: relative;
|
|
395
|
+
top: 50%;
|
|
396
|
+
z-index: 1;
|
|
397
|
+
height: 3rem;
|
|
398
|
+
width: 25rem;
|
|
399
|
+
min-width: 1rem;
|
|
400
|
+
max-width: calc(100cqi - 1rem);
|
|
401
|
+
resize: horizontal;
|
|
402
|
+
overflow: hidden;
|
|
403
|
+
opacity: 0;
|
|
404
|
+
transform-origin: 100% 100%;
|
|
405
|
+
scale: 4;
|
|
406
|
+
translate: 1.5rem -1.5rem;
|
|
407
|
+
clip-path: inset(calc(100% - 0.75rem) 0 0 calc(100% - 0.75rem))
|
|
408
|
+
}
|
|
409
|
+
.diff-resizer,
|
|
410
|
+
.diff-item-1,
|
|
411
|
+
.diff-item-2 {
|
|
412
|
+
position: relative;
|
|
413
|
+
grid-column-start: 1;
|
|
414
|
+
grid-row-start: 1
|
|
415
|
+
}
|
|
416
|
+
.diff-item-1:after {
|
|
417
|
+
pointer-events: none;
|
|
418
|
+
position: absolute;
|
|
419
|
+
bottom: 0px;
|
|
420
|
+
right: 1px;
|
|
421
|
+
top: 50%;
|
|
422
|
+
z-index: 1;
|
|
423
|
+
height: 2rem;
|
|
424
|
+
width: 2rem;
|
|
425
|
+
--tw-content: '';
|
|
426
|
+
content: var(--tw-content);
|
|
427
|
+
translate: 50% -50%
|
|
428
|
+
}
|
|
429
|
+
.diff-item-2 {
|
|
430
|
+
overflow: hidden
|
|
431
|
+
}
|
|
432
|
+
.diff-item-1 > *,
|
|
433
|
+
.diff-item-2 > * {
|
|
434
|
+
pointer-events: none;
|
|
435
|
+
position: absolute;
|
|
436
|
+
bottom: 0px;
|
|
437
|
+
left: 0px;
|
|
438
|
+
top: 0px;
|
|
439
|
+
height: 100%;
|
|
440
|
+
width: 100cqi;
|
|
441
|
+
max-width: none;
|
|
442
|
+
object-fit: cover;
|
|
443
|
+
object-position: center
|
|
444
|
+
}
|
|
445
|
+
.divider {
|
|
446
|
+
display: flex;
|
|
447
|
+
flex-direction: row;
|
|
448
|
+
align-items: center;
|
|
449
|
+
align-self: stretch
|
|
450
|
+
}
|
|
451
|
+
.divider:before,
|
|
452
|
+
.divider:after {
|
|
453
|
+
height: 0.125rem;
|
|
454
|
+
width: 100%;
|
|
455
|
+
flex-grow: 1;
|
|
456
|
+
--tw-content: '';
|
|
457
|
+
content: var(--tw-content)
|
|
458
|
+
}
|
|
459
|
+
.divider-start:before {
|
|
460
|
+
display: none
|
|
461
|
+
}
|
|
462
|
+
.divider-end:after {
|
|
463
|
+
display: none
|
|
464
|
+
}
|
|
465
|
+
.drawer {
|
|
466
|
+
position: relative;
|
|
467
|
+
display: grid;
|
|
468
|
+
grid-auto-columns: max-content auto;
|
|
469
|
+
}
|
|
470
|
+
.drawer-content {
|
|
471
|
+
grid-column-start: 2;
|
|
472
|
+
grid-row-start: 1;
|
|
473
|
+
min-width: 0px;
|
|
474
|
+
}
|
|
475
|
+
.drawer-side {
|
|
476
|
+
pointer-events: none;
|
|
477
|
+
position: fixed;
|
|
478
|
+
inset-inline-start: 0px;
|
|
479
|
+
top: 0px;
|
|
480
|
+
grid-column-start: 1;
|
|
481
|
+
grid-row-start: 1;
|
|
482
|
+
display: grid;
|
|
483
|
+
width: 100%;
|
|
484
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
485
|
+
grid-template-rows: repeat(1, minmax(0, 1fr));
|
|
486
|
+
align-items: flex-start;
|
|
487
|
+
justify-items: start;
|
|
488
|
+
overflow-x: hidden;
|
|
489
|
+
overflow-y: hidden;
|
|
490
|
+
overscroll-behavior: contain;
|
|
491
|
+
height: 100vh;
|
|
492
|
+
height: 100dvh;
|
|
493
|
+
}
|
|
494
|
+
.drawer-side > .drawer-overlay {
|
|
495
|
+
position: sticky;
|
|
496
|
+
top: 0px;
|
|
497
|
+
place-self: stretch;
|
|
498
|
+
}
|
|
499
|
+
.drawer-side > * {
|
|
500
|
+
grid-column-start: 1;
|
|
501
|
+
grid-row-start: 1;
|
|
502
|
+
}
|
|
503
|
+
.drawer-side > *:not(.drawer-overlay) {
|
|
504
|
+
transition-property: transform;
|
|
505
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
506
|
+
transition-duration: 300ms;
|
|
507
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
508
|
+
will-change: transform;
|
|
509
|
+
transform: translateX(-100%);
|
|
510
|
+
}
|
|
511
|
+
[dir="rtl"] .drawer-side > *:not(.drawer-overlay) {
|
|
512
|
+
transform: translateX(100%);
|
|
513
|
+
}
|
|
514
|
+
.drawer-toggle {
|
|
515
|
+
position: fixed;
|
|
516
|
+
height: 0px;
|
|
517
|
+
width: 0px;
|
|
518
|
+
appearance: none;
|
|
519
|
+
opacity: 0;
|
|
520
|
+
}
|
|
521
|
+
.drawer-toggle:checked ~ .drawer-side {
|
|
522
|
+
pointer-events: auto;
|
|
523
|
+
visibility: visible;
|
|
524
|
+
overflow-y: auto;
|
|
525
|
+
}
|
|
526
|
+
.drawer-toggle:checked ~ .drawer-side > *:not(.drawer-overlay) {
|
|
527
|
+
transform: translateX(0%);
|
|
528
|
+
}
|
|
529
|
+
.drawer-end {
|
|
530
|
+
grid-auto-columns: auto max-content;
|
|
531
|
+
}
|
|
532
|
+
.drawer-end > .drawer-toggle ~ .drawer-content {
|
|
533
|
+
grid-column-start: 1;
|
|
534
|
+
}
|
|
535
|
+
.drawer-end > .drawer-toggle ~ .drawer-side {
|
|
536
|
+
grid-column-start: 2;
|
|
537
|
+
justify-items: end;
|
|
538
|
+
}
|
|
539
|
+
.drawer-end > .drawer-toggle ~ .drawer-side > *:not(.drawer-overlay) {
|
|
540
|
+
transform: translateX(100%);
|
|
541
|
+
}
|
|
542
|
+
[dir="rtl"] .drawer-end > .drawer-toggle ~ .drawer-side > *:not(.drawer-overlay) {
|
|
543
|
+
transform: translateX(-100%);
|
|
544
|
+
}
|
|
545
|
+
.drawer-end > .drawer-toggle:checked ~ .drawer-side > *:not(.drawer-overlay) {
|
|
546
|
+
transform: translateX(0%);
|
|
547
|
+
}
|
|
548
|
+
.dropdown {
|
|
549
|
+
position: relative;
|
|
550
|
+
display: inline-block
|
|
551
|
+
}
|
|
552
|
+
.dropdown > *:not(summary):focus {
|
|
553
|
+
outline: 2px solid transparent;
|
|
554
|
+
outline-offset: 2px
|
|
555
|
+
}
|
|
556
|
+
.dropdown .dropdown-content {
|
|
557
|
+
position: absolute
|
|
558
|
+
}
|
|
559
|
+
.dropdown:is(:not(details)) .dropdown-content {
|
|
560
|
+
visibility: hidden;
|
|
561
|
+
opacity: 0
|
|
562
|
+
}
|
|
563
|
+
.dropdown-end .dropdown-content {
|
|
564
|
+
inset-inline-end: 0px
|
|
565
|
+
}
|
|
566
|
+
.dropdown-left .dropdown-content {
|
|
567
|
+
bottom: auto;
|
|
568
|
+
inset-inline-end: 100%;
|
|
569
|
+
top: 0px
|
|
570
|
+
}
|
|
571
|
+
.dropdown-right .dropdown-content {
|
|
572
|
+
bottom: auto;
|
|
573
|
+
inset-inline-start: 100%;
|
|
574
|
+
top: 0px
|
|
575
|
+
}
|
|
576
|
+
.dropdown-bottom .dropdown-content {
|
|
577
|
+
bottom: auto;
|
|
578
|
+
top: 100%
|
|
579
|
+
}
|
|
580
|
+
.dropdown-top .dropdown-content {
|
|
581
|
+
bottom: 100%;
|
|
582
|
+
top: auto
|
|
583
|
+
}
|
|
584
|
+
.dropdown-end.dropdown-right .dropdown-content {
|
|
585
|
+
bottom: 0px;
|
|
586
|
+
top: auto
|
|
587
|
+
}
|
|
588
|
+
.dropdown-end.dropdown-left .dropdown-content {
|
|
589
|
+
bottom: 0px;
|
|
590
|
+
top: auto
|
|
591
|
+
}
|
|
592
|
+
.dropdown.dropdown-open .dropdown-content,
|
|
593
|
+
.dropdown:not(.dropdown-hover):focus .dropdown-content,
|
|
594
|
+
.dropdown:focus-within .dropdown-content {
|
|
595
|
+
visibility: visible;
|
|
596
|
+
opacity: 1
|
|
597
|
+
}
|
|
598
|
+
@media (hover: hover) {
|
|
599
|
+
.dropdown.dropdown-hover:hover .dropdown-content {
|
|
600
|
+
visibility: visible;
|
|
601
|
+
opacity: 1
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
.dropdown:is(details) summary::-webkit-details-marker {
|
|
605
|
+
display: none
|
|
606
|
+
}
|
|
607
|
+
.file-input {
|
|
608
|
+
height: 3rem;
|
|
609
|
+
flex-shrink: 1;
|
|
610
|
+
padding-inline-end: 1rem;
|
|
611
|
+
font-size: 0.875rem;
|
|
612
|
+
line-height: 1.25rem;
|
|
613
|
+
line-height: 2
|
|
614
|
+
}
|
|
615
|
+
.file-input::file-selector-button {
|
|
616
|
+
margin-inline-end: 1rem;
|
|
617
|
+
display: inline-flex;
|
|
618
|
+
height: 100%;
|
|
619
|
+
flex-shrink: 0;
|
|
620
|
+
cursor: pointer;
|
|
621
|
+
user-select: none;
|
|
622
|
+
flex-wrap: wrap;
|
|
623
|
+
align-items: center;
|
|
624
|
+
justify-content: center;
|
|
625
|
+
padding-left: 1rem;
|
|
626
|
+
padding-right: 1rem;
|
|
627
|
+
text-align: center;
|
|
628
|
+
font-size: 0.875rem;
|
|
629
|
+
line-height: 1.25rem;
|
|
630
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
631
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
632
|
+
transition-duration: 200ms;
|
|
633
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
634
|
+
line-height: 1em
|
|
635
|
+
}
|
|
636
|
+
.footer {
|
|
637
|
+
display: grid;
|
|
638
|
+
width: 100%;
|
|
639
|
+
grid-auto-flow: row;
|
|
640
|
+
place-items: start;
|
|
641
|
+
}
|
|
642
|
+
.footer > * {
|
|
643
|
+
display: grid;
|
|
644
|
+
place-items: start;
|
|
645
|
+
}
|
|
646
|
+
.footer-center {
|
|
647
|
+
place-items: center;
|
|
648
|
+
text-align: center;
|
|
649
|
+
}
|
|
650
|
+
.footer-center > * {
|
|
651
|
+
place-items: center;
|
|
652
|
+
}
|
|
653
|
+
@media (min-width: 48rem) {
|
|
654
|
+
.footer {
|
|
655
|
+
grid-auto-flow: column;
|
|
656
|
+
}
|
|
657
|
+
.footer-center {
|
|
658
|
+
grid-auto-flow: row dense;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
.form-control {
|
|
662
|
+
display: flex;
|
|
663
|
+
flex-direction: column
|
|
664
|
+
}
|
|
665
|
+
.label {
|
|
666
|
+
display: flex;
|
|
667
|
+
user-select: none;
|
|
668
|
+
align-items: center;
|
|
669
|
+
justify-content: space-between
|
|
670
|
+
}
|
|
671
|
+
.hero {
|
|
672
|
+
display: grid;
|
|
673
|
+
width: 100%;
|
|
674
|
+
place-items: center;
|
|
675
|
+
background-size: cover;
|
|
676
|
+
background-position: center
|
|
677
|
+
}
|
|
678
|
+
.hero > * {
|
|
679
|
+
grid-column-start: 1;
|
|
680
|
+
grid-row-start: 1
|
|
681
|
+
}
|
|
682
|
+
.hero-overlay {
|
|
683
|
+
grid-column-start: 1;
|
|
684
|
+
grid-row-start: 1;
|
|
685
|
+
height: 100%;
|
|
686
|
+
width: 100%
|
|
687
|
+
}
|
|
688
|
+
.hero-content {
|
|
689
|
+
z-index: 0;
|
|
690
|
+
display: flex;
|
|
691
|
+
align-items: center;
|
|
692
|
+
justify-content: center
|
|
693
|
+
}
|
|
694
|
+
.indicator {
|
|
695
|
+
position: relative;
|
|
696
|
+
display: inline-flex;
|
|
697
|
+
width: max-content;
|
|
698
|
+
}
|
|
699
|
+
.indicator :where(.indicator-item) {
|
|
700
|
+
z-index: 1;
|
|
701
|
+
position: absolute;
|
|
702
|
+
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));
|
|
703
|
+
white-space: nowrap;
|
|
704
|
+
}
|
|
705
|
+
.input {
|
|
706
|
+
flex-shrink: 1;
|
|
707
|
+
appearance: none;
|
|
708
|
+
height: 3rem;
|
|
709
|
+
padding-left: 1rem;
|
|
710
|
+
padding-right: 1rem;
|
|
711
|
+
font-size: 0.875rem;
|
|
712
|
+
line-height: 1.25rem;
|
|
713
|
+
line-height: 2
|
|
714
|
+
}
|
|
715
|
+
.input[type="number"]::-webkit-inner-spin-button,
|
|
716
|
+
.input-md[type="number"]::-webkit-inner-spin-button {
|
|
717
|
+
margin-top: -1rem;
|
|
718
|
+
margin-bottom: -1rem;
|
|
719
|
+
margin-inline-end: -1rem
|
|
720
|
+
}
|
|
721
|
+
.input-xs[type="number"]::-webkit-inner-spin-button {
|
|
722
|
+
margin-top: -0.25rem;
|
|
723
|
+
margin-bottom: -0.25rem;
|
|
724
|
+
margin-inline-end: -0px
|
|
725
|
+
}
|
|
726
|
+
.input-sm[type="number"]::-webkit-inner-spin-button {
|
|
727
|
+
margin-top: 0px;
|
|
728
|
+
margin-bottom: 0px;
|
|
729
|
+
margin-inline-end: -0px
|
|
730
|
+
}
|
|
731
|
+
.input-lg[type="number"]::-webkit-inner-spin-button {
|
|
732
|
+
margin-top: -1.5rem;
|
|
733
|
+
margin-bottom: -1.5rem;
|
|
734
|
+
margin-inline-end: -1.5rem
|
|
735
|
+
}
|
|
736
|
+
.join {
|
|
737
|
+
display: inline-flex;
|
|
738
|
+
align-items: stretch;
|
|
739
|
+
}
|
|
740
|
+
.join :where(.join-item) {
|
|
741
|
+
border-start-end-radius: 0;
|
|
742
|
+
border-end-end-radius: 0;
|
|
743
|
+
border-end-start-radius: 0;
|
|
744
|
+
border-start-start-radius: 0;
|
|
745
|
+
}
|
|
746
|
+
.join .join-item:not(:first-child):not(:last-child),
|
|
747
|
+
.join *:not(:first-child):not(:last-child) .join-item {
|
|
748
|
+
border-start-end-radius: 0;
|
|
749
|
+
border-end-end-radius: 0;
|
|
750
|
+
border-end-start-radius: 0;
|
|
751
|
+
border-start-start-radius: 0;
|
|
752
|
+
}
|
|
753
|
+
.join .join-item:first-child:not(:last-child),
|
|
754
|
+
.join *:first-child:not(:last-child) .join-item {
|
|
755
|
+
border-start-end-radius: 0;
|
|
756
|
+
border-end-end-radius: 0;
|
|
757
|
+
}
|
|
758
|
+
.join .dropdown .join-item:first-child:not(:last-child),
|
|
759
|
+
.join *:first-child:not(:last-child) .dropdown .join-item {
|
|
760
|
+
border-start-end-radius: inherit;
|
|
761
|
+
border-end-end-radius: inherit;
|
|
762
|
+
}
|
|
763
|
+
.join :where(.join-item:first-child:not(:last-child)),
|
|
764
|
+
.join :where(*:first-child:not(:last-child) .join-item) {
|
|
765
|
+
border-end-start-radius: inherit;
|
|
766
|
+
border-start-start-radius: inherit;
|
|
767
|
+
}
|
|
768
|
+
.join .join-item:last-child:not(:first-child),
|
|
769
|
+
.join *:last-child:not(:first-child) .join-item {
|
|
770
|
+
border-end-start-radius: 0;
|
|
771
|
+
border-start-start-radius: 0;
|
|
772
|
+
}
|
|
773
|
+
.join :where(.join-item:last-child:not(:first-child)),
|
|
774
|
+
.join :where(*:last-child:not(:first-child) .join-item) {
|
|
775
|
+
border-start-end-radius: inherit;
|
|
776
|
+
border-end-end-radius: inherit;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
@supports not selector(:has(*)) {
|
|
780
|
+
:where(.join *) {
|
|
781
|
+
border-radius: inherit;
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
@supports selector(:has(*)) {
|
|
786
|
+
:where(.join *:has(.join-item)) {
|
|
787
|
+
border-radius: inherit;
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
.kbd {
|
|
791
|
+
display: inline-flex;
|
|
792
|
+
align-items: center;
|
|
793
|
+
justify-content: center
|
|
794
|
+
}
|
|
795
|
+
.link {
|
|
796
|
+
cursor: pointer;
|
|
797
|
+
text-decoration-line: underline
|
|
798
|
+
}
|
|
799
|
+
.link-hover {
|
|
800
|
+
text-decoration-line: none
|
|
801
|
+
}
|
|
802
|
+
@media(hover:hover) {
|
|
803
|
+
.link-hover:hover {
|
|
804
|
+
text-decoration-line: underline
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
.mask {
|
|
808
|
+
mask-size: contain;
|
|
809
|
+
mask-repeat: no-repeat;
|
|
810
|
+
mask-position: center;
|
|
811
|
+
}
|
|
812
|
+
.mask-half-1 {
|
|
813
|
+
mask-size: 200%;
|
|
814
|
+
mask-position: left;
|
|
815
|
+
}
|
|
816
|
+
.mask-half-1:where([dir="rtl"], [dir="rtl"] *) {
|
|
817
|
+
mask-position: right;
|
|
818
|
+
}
|
|
819
|
+
.mask-half-2 {
|
|
820
|
+
mask-size: 200%;
|
|
821
|
+
mask-position: right;
|
|
822
|
+
}
|
|
823
|
+
.mask-half-2:where([dir="rtl"], [dir="rtl"] *) {
|
|
824
|
+
mask-position: left;
|
|
825
|
+
}
|
|
826
|
+
.menu {
|
|
827
|
+
display: flex;
|
|
828
|
+
flex-direction: column;
|
|
829
|
+
flex-wrap: wrap;
|
|
830
|
+
font-size: 0.875rem;
|
|
831
|
+
line-height: 1.25rem
|
|
832
|
+
}
|
|
833
|
+
.menu :where(li ul) {
|
|
834
|
+
position: relative;
|
|
835
|
+
white-space: nowrap
|
|
836
|
+
}
|
|
837
|
+
.menu :where(li:not(.menu-title) > *:not(ul, details, .menu-title, .btn)), .menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
|
|
838
|
+
display: grid;
|
|
839
|
+
grid-auto-flow: column;
|
|
840
|
+
align-content: flex-start;
|
|
841
|
+
align-items: center;
|
|
842
|
+
gap: 0.5rem;
|
|
843
|
+
grid-auto-columns: minmax(auto, max-content) auto max-content;
|
|
844
|
+
user-select: none
|
|
845
|
+
}
|
|
846
|
+
.menu li.disabled {
|
|
847
|
+
cursor: not-allowed;
|
|
848
|
+
user-select: none
|
|
849
|
+
}
|
|
850
|
+
.menu :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
|
|
851
|
+
display: none
|
|
852
|
+
}
|
|
853
|
+
:where(.menu li) {
|
|
854
|
+
position: relative;
|
|
855
|
+
display: flex;
|
|
856
|
+
flex-shrink: 0;
|
|
857
|
+
flex-direction: column;
|
|
858
|
+
flex-wrap: wrap;
|
|
859
|
+
align-items: stretch
|
|
860
|
+
}
|
|
861
|
+
:where(.menu li) .badge {
|
|
862
|
+
justify-self: end
|
|
863
|
+
}
|
|
864
|
+
.mockup-code {
|
|
865
|
+
position: relative;
|
|
866
|
+
overflow: hidden;
|
|
867
|
+
overflow-x: auto;
|
|
868
|
+
}
|
|
869
|
+
.mockup-code pre[data-prefix]:before {
|
|
870
|
+
content: attr(data-prefix);
|
|
871
|
+
display: inline-block;
|
|
872
|
+
text-align: right;
|
|
873
|
+
}
|
|
874
|
+
.mockup-window {
|
|
875
|
+
position: relative;
|
|
876
|
+
overflow: hidden;
|
|
877
|
+
overflow-x: auto;
|
|
878
|
+
}
|
|
879
|
+
.mockup-window pre[data-prefix]:before {
|
|
880
|
+
content: attr(data-prefix);
|
|
881
|
+
display: inline-block;
|
|
882
|
+
text-align: right;
|
|
883
|
+
}
|
|
884
|
+
.mockup-browser {
|
|
885
|
+
position: relative;
|
|
886
|
+
overflow: hidden;
|
|
887
|
+
overflow-x: auto;
|
|
888
|
+
}
|
|
889
|
+
.mockup-browser pre[data-prefix]:before {
|
|
890
|
+
content: attr(data-prefix);
|
|
891
|
+
display: inline-block;
|
|
892
|
+
text-align: right;
|
|
893
|
+
}
|
|
894
|
+
.modal {
|
|
895
|
+
/* @apply pointer-events-none invisible fixed inset-0 flex justify-center opacity-0; */
|
|
896
|
+
pointer-events: none;
|
|
897
|
+
position: fixed;
|
|
898
|
+
inset: 0px;
|
|
899
|
+
margin: 0px;
|
|
900
|
+
display: grid;
|
|
901
|
+
height: 100%;
|
|
902
|
+
max-height: none;
|
|
903
|
+
width: 100%;
|
|
904
|
+
max-width: none;
|
|
905
|
+
justify-items: center;
|
|
906
|
+
padding: 0px;
|
|
907
|
+
opacity: 0;
|
|
908
|
+
overscroll-behavior: contain;
|
|
909
|
+
z-index: 999;
|
|
910
|
+
}
|
|
911
|
+
.modal-scroll {
|
|
912
|
+
overscroll-behavior: auto;
|
|
913
|
+
}
|
|
914
|
+
:where(.modal) {
|
|
915
|
+
align-items: center;
|
|
916
|
+
}
|
|
917
|
+
.modal-box {
|
|
918
|
+
max-height: calc(100vh - 5em);
|
|
919
|
+
}
|
|
920
|
+
.modal-open,
|
|
921
|
+
.modal:target,
|
|
922
|
+
.modal-toggle:checked + .modal,
|
|
923
|
+
.modal[open] {
|
|
924
|
+
pointer-events: auto;
|
|
925
|
+
visibility: visible;
|
|
926
|
+
opacity: 1;
|
|
927
|
+
}
|
|
928
|
+
.modal-action {
|
|
929
|
+
display: flex;
|
|
930
|
+
}
|
|
931
|
+
.modal-toggle {
|
|
932
|
+
position: fixed;
|
|
933
|
+
height: 0px;
|
|
934
|
+
width: 0px;
|
|
935
|
+
appearance: none;
|
|
936
|
+
opacity: 0;
|
|
937
|
+
}
|
|
938
|
+
:root:has(:is(.modal-open, .modal:target, .modal-toggle:checked + .modal, .modal[open])) {
|
|
939
|
+
overflow: hidden;
|
|
940
|
+
scrollbar-gutter: stable;
|
|
941
|
+
}
|
|
942
|
+
.navbar {
|
|
943
|
+
display: flex;
|
|
944
|
+
align-items: center;
|
|
945
|
+
}
|
|
946
|
+
:where(.navbar > *:not(script, style)) {
|
|
947
|
+
display: inline-flex;
|
|
948
|
+
align-items: center;
|
|
949
|
+
}
|
|
950
|
+
.navbar-start {
|
|
951
|
+
width: 50%;
|
|
952
|
+
justify-content: flex-start;
|
|
953
|
+
}
|
|
954
|
+
.navbar-center {
|
|
955
|
+
flex-shrink: 0;
|
|
956
|
+
}
|
|
957
|
+
.navbar-end {
|
|
958
|
+
width: 50%;
|
|
959
|
+
justify-content: flex-end;
|
|
960
|
+
}
|
|
961
|
+
.progress {
|
|
962
|
+
position: relative;
|
|
963
|
+
width: 100%;
|
|
964
|
+
appearance: none;
|
|
965
|
+
overflow: hidden
|
|
966
|
+
}
|
|
967
|
+
.radial-progress {
|
|
968
|
+
position: relative;
|
|
969
|
+
display: inline-grid;
|
|
970
|
+
height: var(--size);
|
|
971
|
+
width: var(--size);
|
|
972
|
+
place-content: center;
|
|
973
|
+
border-radius: 9999px;
|
|
974
|
+
background-color: transparent;
|
|
975
|
+
vertical-align: middle;
|
|
976
|
+
box-sizing: content-box;
|
|
977
|
+
}
|
|
978
|
+
.radial-progress::-moz-progress-bar {
|
|
979
|
+
appearance: none;
|
|
980
|
+
background-color: transparent;
|
|
981
|
+
}
|
|
982
|
+
.radial-progress::-webkit-progress-value {
|
|
983
|
+
appearance: none;
|
|
984
|
+
background-color: transparent;
|
|
985
|
+
}
|
|
986
|
+
.radial-progress::-webkit-progress-bar {
|
|
987
|
+
appearance: none;
|
|
988
|
+
background-color: transparent;
|
|
989
|
+
}
|
|
990
|
+
.radial-progress:before,
|
|
991
|
+
.radial-progress:after {
|
|
992
|
+
position: absolute;
|
|
993
|
+
border-radius: 9999px;
|
|
994
|
+
content: "";
|
|
995
|
+
}
|
|
996
|
+
.radial-progress:before {
|
|
997
|
+
inset: 0px;
|
|
998
|
+
background:
|
|
999
|
+
radial-gradient(farthest-side, currentColor 98%, #0000) top/var(--thickness) var(--thickness)
|
|
1000
|
+
no-repeat,
|
|
1001
|
+
conic-gradient(currentColor calc(var(--value) * 1%), #0000 0);
|
|
1002
|
+
-webkit-mask: radial-gradient(
|
|
1003
|
+
farthest-side,
|
|
1004
|
+
#0000 calc(99% - var(--thickness)),
|
|
1005
|
+
#000 calc(100% - var(--thickness))
|
|
1006
|
+
);
|
|
1007
|
+
mask: radial-gradient(
|
|
1008
|
+
farthest-side,
|
|
1009
|
+
#0000 calc(99% - var(--thickness)),
|
|
1010
|
+
#000 calc(100% - var(--thickness))
|
|
1011
|
+
);
|
|
1012
|
+
}
|
|
1013
|
+
.radial-progress:after {
|
|
1014
|
+
inset: calc(50% - var(--thickness) / 2);
|
|
1015
|
+
transform: rotate(calc(var(--value) * 3.6deg - 90deg)) translate(calc(var(--size) / 2 - 50%));
|
|
1016
|
+
}
|
|
1017
|
+
.radio {
|
|
1018
|
+
flex-shrink: 0
|
|
1019
|
+
}
|
|
1020
|
+
.range {
|
|
1021
|
+
height: 1.5rem;
|
|
1022
|
+
width: 100%;
|
|
1023
|
+
cursor: pointer;
|
|
1024
|
+
}
|
|
1025
|
+
.range:focus {
|
|
1026
|
+
outline: none;
|
|
1027
|
+
}
|
|
1028
|
+
.rating {
|
|
1029
|
+
position: relative;
|
|
1030
|
+
display: inline-flex
|
|
1031
|
+
}
|
|
1032
|
+
.rating :where(input) {
|
|
1033
|
+
cursor: pointer;
|
|
1034
|
+
border-radius: 0px
|
|
1035
|
+
}
|
|
1036
|
+
.select {
|
|
1037
|
+
display: inline-flex;
|
|
1038
|
+
cursor: pointer;
|
|
1039
|
+
user-select: none;
|
|
1040
|
+
appearance: none;
|
|
1041
|
+
height: 3rem;
|
|
1042
|
+
min-height: 3rem;
|
|
1043
|
+
padding-inline-start: 1rem;
|
|
1044
|
+
padding-inline-end: 2.5rem;
|
|
1045
|
+
font-size: 0.875rem;
|
|
1046
|
+
line-height: 1.25rem;
|
|
1047
|
+
line-height: 2
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
/* disabled */
|
|
1051
|
+
/* &-disabled,
|
|
1052
|
+
&[disabled] {
|
|
1053
|
+
@apply pointer-events-none;
|
|
1054
|
+
} */
|
|
1055
|
+
/* multiple */
|
|
1056
|
+
.select[multiple] {
|
|
1057
|
+
height: auto
|
|
1058
|
+
}
|
|
1059
|
+
.stack {
|
|
1060
|
+
display: inline-grid;
|
|
1061
|
+
}
|
|
1062
|
+
.stack > * {
|
|
1063
|
+
grid-column-start: 1;
|
|
1064
|
+
grid-row-start: 1;
|
|
1065
|
+
transform: translateY(10%) scale(0.9);
|
|
1066
|
+
z-index: 1;
|
|
1067
|
+
}
|
|
1068
|
+
.stack > *:nth-child(2) {
|
|
1069
|
+
transform: translateY(5%) scale(0.95);
|
|
1070
|
+
z-index: 2;
|
|
1071
|
+
}
|
|
1072
|
+
.stack > *:nth-child(1) {
|
|
1073
|
+
transform: translateY(0) scale(1);
|
|
1074
|
+
z-index: 3;
|
|
1075
|
+
}
|
|
1076
|
+
.stats {
|
|
1077
|
+
display: inline-grid
|
|
1078
|
+
}
|
|
1079
|
+
:where(.stats) {
|
|
1080
|
+
grid-auto-flow: column
|
|
1081
|
+
}
|
|
1082
|
+
.stat {
|
|
1083
|
+
display: inline-grid;
|
|
1084
|
+
width: 100%;
|
|
1085
|
+
grid-template-columns: repeat(1, 1fr)
|
|
1086
|
+
}
|
|
1087
|
+
.stat-figure {
|
|
1088
|
+
grid-column-start: 2;
|
|
1089
|
+
grid-row: span 3 / span 3;
|
|
1090
|
+
grid-row-start: 1;
|
|
1091
|
+
place-self: center;
|
|
1092
|
+
justify-self: end
|
|
1093
|
+
}
|
|
1094
|
+
.stat-title {
|
|
1095
|
+
grid-column-start: 1;
|
|
1096
|
+
white-space: nowrap
|
|
1097
|
+
}
|
|
1098
|
+
.stat-value {
|
|
1099
|
+
grid-column-start: 1;
|
|
1100
|
+
white-space: nowrap
|
|
1101
|
+
}
|
|
1102
|
+
.stat-desc {
|
|
1103
|
+
grid-column-start: 1;
|
|
1104
|
+
white-space: nowrap
|
|
1105
|
+
}
|
|
1106
|
+
.stat-actions {
|
|
1107
|
+
grid-column-start: 1;
|
|
1108
|
+
white-space: nowrap
|
|
1109
|
+
}
|
|
1110
|
+
/* .stats.grid-flow-row {
|
|
1111
|
+
@apply auto-rows-fr;
|
|
1112
|
+
} */
|
|
1113
|
+
.steps {
|
|
1114
|
+
display: inline-grid;
|
|
1115
|
+
grid-auto-flow: column;
|
|
1116
|
+
overflow: hidden;
|
|
1117
|
+
overflow-x: auto;
|
|
1118
|
+
counter-reset: step;
|
|
1119
|
+
grid-auto-columns: 1fr
|
|
1120
|
+
}
|
|
1121
|
+
.steps .step {
|
|
1122
|
+
display: grid;
|
|
1123
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1124
|
+
grid-template-rows: repeat(2, minmax(0, 1fr));
|
|
1125
|
+
place-items: center;
|
|
1126
|
+
text-align: center
|
|
1127
|
+
}
|
|
1128
|
+
.swap {
|
|
1129
|
+
|
|
1130
|
+
position: relative;
|
|
1131
|
+
|
|
1132
|
+
display: inline-grid;
|
|
1133
|
+
|
|
1134
|
+
user-select: none;
|
|
1135
|
+
|
|
1136
|
+
place-content: center
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
.swap > * {
|
|
1140
|
+
|
|
1141
|
+
grid-column-start: 1;
|
|
1142
|
+
|
|
1143
|
+
grid-row-start: 1
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.swap input {
|
|
1147
|
+
|
|
1148
|
+
appearance: none
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.swap .swap-on,
|
|
1152
|
+
.swap .swap-indeterminate,
|
|
1153
|
+
.swap input:indeterminate ~ .swap-on {
|
|
1154
|
+
|
|
1155
|
+
opacity: 0
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.swap input:checked ~ .swap-off,
|
|
1159
|
+
.swap-active .swap-off,
|
|
1160
|
+
.swap input:indeterminate ~ .swap-off {
|
|
1161
|
+
|
|
1162
|
+
opacity: 0
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.swap input:checked ~ .swap-on,
|
|
1166
|
+
.swap-active .swap-on,
|
|
1167
|
+
.swap input:indeterminate ~ .swap-indeterminate {
|
|
1168
|
+
|
|
1169
|
+
opacity: 1
|
|
1170
|
+
}
|
|
1171
|
+
.tabs {
|
|
1172
|
+
display: grid;
|
|
1173
|
+
align-items: flex-end;
|
|
1174
|
+
}
|
|
1175
|
+
.tabs-lifted:has(.tab-content[class^="rounded-"])
|
|
1176
|
+
.tab:first-child:not(:is(.tab-active, [aria-selected="true"])), .tabs-lifted:has(.tab-content[class*=" rounded-"])
|
|
1177
|
+
.tab:first-child:not(:is(.tab-active, [aria-selected="true"])) {
|
|
1178
|
+
border-bottom-color: transparent;
|
|
1179
|
+
}
|
|
1180
|
+
.tab {
|
|
1181
|
+
position: relative;
|
|
1182
|
+
grid-row-start: 1;
|
|
1183
|
+
display: inline-flex;
|
|
1184
|
+
height: 2rem;
|
|
1185
|
+
cursor: pointer;
|
|
1186
|
+
user-select: none;
|
|
1187
|
+
appearance: none;
|
|
1188
|
+
flex-wrap: wrap;
|
|
1189
|
+
align-items: center;
|
|
1190
|
+
justify-content: center;
|
|
1191
|
+
text-align: center;
|
|
1192
|
+
font-size: 0.875rem;
|
|
1193
|
+
line-height: 1.25rem;
|
|
1194
|
+
line-height: 2;
|
|
1195
|
+
--tab-padding: 1rem;
|
|
1196
|
+
}
|
|
1197
|
+
.tab:is(input[type="radio"]) {
|
|
1198
|
+
width: auto;
|
|
1199
|
+
border-bottom-right-radius: 0px;
|
|
1200
|
+
border-bottom-left-radius: 0px;
|
|
1201
|
+
}
|
|
1202
|
+
.tab:is(input[type="radio"]):after {
|
|
1203
|
+
--tw-content: attr(aria-label);
|
|
1204
|
+
content: var(--tw-content);
|
|
1205
|
+
}
|
|
1206
|
+
.tab:not(input):empty {
|
|
1207
|
+
cursor: default;
|
|
1208
|
+
grid-column-start: span 9999;
|
|
1209
|
+
}
|
|
1210
|
+
.tab-content {
|
|
1211
|
+
grid-column-start: 1;
|
|
1212
|
+
grid-column-end: span 9999;
|
|
1213
|
+
grid-row-start: 2;
|
|
1214
|
+
margin-top: calc(var(--tab-border) * -1);
|
|
1215
|
+
display: none;
|
|
1216
|
+
border-color: transparent;
|
|
1217
|
+
border-width: var(--tab-border, 0);
|
|
1218
|
+
}
|
|
1219
|
+
:checked + .tab-content:nth-child(2),
|
|
1220
|
+
:is(.tab-active, [aria-selected="true"]) + .tab-content:nth-child(2) {
|
|
1221
|
+
border-start-start-radius: 0px;
|
|
1222
|
+
}
|
|
1223
|
+
input.tab:checked + .tab-content,
|
|
1224
|
+
:is(.tab-active, [aria-selected="true"]) + .tab-content {
|
|
1225
|
+
display: block;
|
|
1226
|
+
}
|
|
1227
|
+
.table {
|
|
1228
|
+
position: relative;
|
|
1229
|
+
width: 100%
|
|
1230
|
+
}
|
|
1231
|
+
.table :where(.table-pin-rows thead tr) {
|
|
1232
|
+
position: sticky;
|
|
1233
|
+
top: 0px;
|
|
1234
|
+
z-index: 1;
|
|
1235
|
+
--tw-bg-opacity: 1;
|
|
1236
|
+
background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))
|
|
1237
|
+
}
|
|
1238
|
+
.table :where(.table-pin-rows tfoot tr) {
|
|
1239
|
+
position: sticky;
|
|
1240
|
+
bottom: 0px;
|
|
1241
|
+
z-index: 1;
|
|
1242
|
+
--tw-bg-opacity: 1;
|
|
1243
|
+
background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))
|
|
1244
|
+
}
|
|
1245
|
+
.table :where(.table-pin-cols tr th) {
|
|
1246
|
+
position: sticky;
|
|
1247
|
+
left: 0px;
|
|
1248
|
+
right: 0px;
|
|
1249
|
+
--tw-bg-opacity: 1;
|
|
1250
|
+
background-color: var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))
|
|
1251
|
+
}
|
|
1252
|
+
.table-zebra tbody tr:nth-child(even) :where(.table-pin-cols tr th) {
|
|
1253
|
+
--tw-bg-opacity: 1;
|
|
1254
|
+
background-color: var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)))
|
|
1255
|
+
}
|
|
1256
|
+
.textarea {
|
|
1257
|
+
min-height: 3rem;
|
|
1258
|
+
flex-shrink: 1;
|
|
1259
|
+
padding-left: 1rem;
|
|
1260
|
+
padding-right: 1rem;
|
|
1261
|
+
padding-top: 0.5rem;
|
|
1262
|
+
padding-bottom: 0.5rem;
|
|
1263
|
+
font-size: 0.875rem;
|
|
1264
|
+
line-height: 1.25rem;
|
|
1265
|
+
line-height: 2
|
|
1266
|
+
}
|
|
1267
|
+
.timeline {
|
|
1268
|
+
position: relative;
|
|
1269
|
+
display: flex
|
|
1270
|
+
}
|
|
1271
|
+
:where(.timeline > li) {
|
|
1272
|
+
position: relative;
|
|
1273
|
+
display: grid;
|
|
1274
|
+
flex-shrink: 0;
|
|
1275
|
+
align-items: center;
|
|
1276
|
+
grid-template-rows: var(--timeline-row-start, minmax(0, 1fr)) auto var(
|
|
1277
|
+
--timeline-row-end,
|
|
1278
|
+
minmax(0, 1fr)
|
|
1279
|
+
);
|
|
1280
|
+
grid-template-columns: var(--timeline-col-start, minmax(0, 1fr)) auto var(
|
|
1281
|
+
--timeline-col-end,
|
|
1282
|
+
minmax(0, 1fr)
|
|
1283
|
+
)
|
|
1284
|
+
}
|
|
1285
|
+
.timeline > li > hr {
|
|
1286
|
+
width: 100%;
|
|
1287
|
+
border-width: 0px
|
|
1288
|
+
}
|
|
1289
|
+
:where(.timeline > li > hr):first-child {
|
|
1290
|
+
grid-column-start: 1;
|
|
1291
|
+
grid-row-start: 2
|
|
1292
|
+
}
|
|
1293
|
+
:where(.timeline > li > hr):last-child {
|
|
1294
|
+
grid-column-start: 3;
|
|
1295
|
+
grid-column-end: none;
|
|
1296
|
+
grid-row-start: 2;
|
|
1297
|
+
grid-row-end: auto
|
|
1298
|
+
}
|
|
1299
|
+
.timeline-start {
|
|
1300
|
+
grid-column-start: 1;
|
|
1301
|
+
grid-column-end: 4;
|
|
1302
|
+
grid-row-start: 1;
|
|
1303
|
+
grid-row-end: 2;
|
|
1304
|
+
margin: 0.25rem;
|
|
1305
|
+
align-self: flex-end;
|
|
1306
|
+
justify-self: center
|
|
1307
|
+
}
|
|
1308
|
+
.timeline-middle {
|
|
1309
|
+
grid-column-start: 2;
|
|
1310
|
+
grid-row-start: 2
|
|
1311
|
+
}
|
|
1312
|
+
.timeline-end {
|
|
1313
|
+
grid-column-start: 1;
|
|
1314
|
+
grid-column-end: 4;
|
|
1315
|
+
grid-row-start: 3;
|
|
1316
|
+
grid-row-end: 4;
|
|
1317
|
+
margin: 0.25rem;
|
|
1318
|
+
align-self: flex-start;
|
|
1319
|
+
justify-self: center
|
|
1320
|
+
}
|
|
1321
|
+
.toast {
|
|
1322
|
+
position: fixed;
|
|
1323
|
+
display: flex;
|
|
1324
|
+
min-width: fit-content;
|
|
1325
|
+
flex-direction: column;
|
|
1326
|
+
white-space: nowrap
|
|
1327
|
+
}
|
|
1328
|
+
.toggle {
|
|
1329
|
+
flex-shrink: 0
|
|
1330
|
+
}
|