@splendidlabz/styles 4.11.0 → 4.13.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.
Files changed (38) hide show
  1. package/README.md +86 -0
  2. package/package.json +12 -6
  3. package/src/base.css +15 -0
  4. package/src/components/astro/fancylist.css +22 -24
  5. package/src/components/bundle-astro.css +7 -0
  6. package/src/components/bundle-svelte.css +7 -0
  7. package/src/components/css/button.css +40 -0
  8. package/src/components/css/card.css +9 -0
  9. package/src/{form → components/css/forms}/index.css +0 -1
  10. package/src/components/css/index.css +2 -0
  11. package/src/components/svelte/tabs.css +169 -28
  12. package/src/effects/bundle.css +5 -0
  13. package/src/effects/index.css +2 -0
  14. package/src/generic/anchors-and-buttons.css +3 -40
  15. package/src/generic/form.css +11 -0
  16. package/src/layouts/bundle.css +5 -0
  17. package/src/layouts/index.css +1 -1
  18. package/src/styles.css +9 -6
  19. package/src/theming.css +7 -0
  20. package/src/tools/object.css +6 -1
  21. package/src/utilities.css +11 -0
  22. package/dist/no-tw/layouts.css +0 -1895
  23. package/dist/no-tw/styles.css +0 -3094
  24. package/src/effects/testgb.css +0 -372
  25. package/src/form/textarea.css +0 -38
  26. /package/src/{form → components/css/forms}/checkbox-and-radio.css +0 -0
  27. /package/src/{form → components/css/forms}/input.css +0 -0
  28. /package/src/{form → components/css/forms}/select.css +0 -0
  29. /package/src/{type → components/css/typography}/font-position.css +0 -0
  30. /package/src/{type → components/css/typography}/font.css +0 -0
  31. /package/src/{type → components/css/typography}/index.css +0 -0
  32. /package/src/{type → components/css/typography}/text-edge.css +0 -0
  33. /package/src/{type → components/css/typography}/text-relative.css +0 -0
  34. /package/src/{animation → effects/animation}/animation.css +0 -0
  35. /package/src/{animation → effects/animation}/fly.css +0 -0
  36. /package/src/{animation → effects/animation}/index.css +0 -0
  37. /package/src/{transitions → effects/transitions}/index.css +0 -0
  38. /package/src/{transitions → effects/transitions}/starting-style.css +0 -0
@@ -1,3094 +0,0 @@
1
- /*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
2
- @layer properties;
3
- @layer utilities {
4
- .button {
5
- border: var(--border-width) var(--border-style) var(--_bc, var(--border-color));
6
- border-radius: var(--radius);
7
- --transition-values: var(--transition-duration) var(--transition-delay)
8
- var(--transition-easing);
9
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
10
- transform, translate, scale, rotate, skew, perspective;
11
- transition: var(--transition-values);
12
- transition-property: var(--transition-props);
13
- --_bgc: var(--bg-color);
14
- --_tc: var(--text-color, currentcolor);
15
- --_bc: var(--border-color, currentcolor);
16
- border-color: var(--_bc, currentcolor);
17
- color: var(--_tc);
18
- background: var(--_bgc);
19
- --_fc: var(--fill-color);
20
- --_sc: var(--stroke-color, var(--text-color, currentcolor));
21
- :where(svg path) {
22
- --transition-values: var(--transition-duration) var(--transition-delay)
23
- var(--transition-easing);
24
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
25
- transform, translate, scale, rotate, skew, perspective;
26
- transition: var(--transition-values);
27
- transition-property: var(--transition-props);
28
- fill: var(--_fc, revert-layer);
29
- stroke: var(--_sc, currentcolor);
30
- }
31
- &:hover {
32
- --_bgc: var(--bg-hover-color, var(--bg-color));
33
- --_tc: var(--text-hover-color, var(--text-color));
34
- --_bc: var(--border-hover-color, var(--border-color));
35
- }
36
- &:hover {
37
- --_fc: var(--fill-hover-color, var(--fill-color));
38
- --_sc: var(--stroke-hover-color, var(--_tc));
39
- }
40
- &:focus {
41
- --_bc: var(
42
- --border-focus-color,
43
- var(--border-hover-color, var(--border-color))
44
- );
45
- --_tc: var(--text-focus-color, var(--text-hover-color, var(--text-color)));
46
- --_bgc: var(--bg-focus-color, var(--bg-hover-color, var(--bg-color)));
47
- }
48
- &:focus {
49
- --_fc: var(--fill-focus-color, var(--fill-color));
50
- --_sc: var(--stroke-focus-color, var(--_tc));
51
- }
52
- &:active {
53
- --_bc: var(--border-active-color, var(--border-color));
54
- --_tc: var(--text-active-color, var(--text-color));
55
- --_bgc: var(--bg-active-color, var(--bg-color));
56
- }
57
- &:active {
58
- --_fc: var(--fill-active-color, var(--fill-color, revert-layer));
59
- --_sc: var(--stroke-active-color, var(--_tc));
60
- }
61
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
62
- --_bc: var(--border-selected-color, var(--border-color));
63
- --_tc: var(--text-selected-color, var(--text-color));
64
- --_bgc: var(--bg-selected-color, var(--bg-color));
65
- }
66
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
67
- --_fc: var(--fill-selected-color, var(--fill-color, revert-layer));
68
- --_sc: var(--stroke-selected-color, var(--_tc));
69
- }
70
- flex-shrink: 0;
71
- display: inline-flex;
72
- justify-content: center;
73
- align-items: center;
74
- gap: 0.5em;
75
- max-width: 100%;
76
- padding: 0.125lh 0.75lh;
77
- font: inherit;
78
- font-family: var(--input-font);
79
- text-decoration-line: none !important;
80
- cursor: pointer;
81
- &[disabled] {
82
- cursor: default;
83
- }
84
- * {
85
- pointer-events: none;
86
- }
87
- svg path {
88
- --transition-values: var(--transition-duration) var(--transition-delay)
89
- var(--transition-easing);
90
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
91
- transform, translate, scale, rotate, skew, perspective;
92
- transition: var(--transition-values);
93
- transition-property: var(--transition-props);
94
- }
95
- }
96
- .sticky {
97
- position: sticky;
98
- top: 0;
99
- z-index: var(--z-index, 15);
100
- :where([class*='grid'] > &) {
101
- align-self: start;
102
- }
103
- }
104
- .card-divided {
105
- border: var(--border-width) var(--border-style) var(--_bc, var(--border-color));
106
- border-radius: var(--radius);
107
- position: relative;
108
- &:is(&) {
109
- gap: 0;
110
- padding: 0;
111
- }
112
- > *:not(&), > :where(astro-slot, astro-island, astro-content) > *:not(&) {
113
- padding-block: var(--padding-block, var(--padding, var(--fallback-padding)));
114
- padding-inline: var( --padding-inline, var(--padding, var(--fallback-padding)) );
115
- --fallback-padding: 1rlh;
116
- &:focus-visible {
117
- z-index: 2;
118
- }
119
- &:not(:focus-visible) {
120
- --z-index: 1;
121
- animation: z-index-hack var(--transition-duration) var(--transition-delay);
122
- }
123
- }
124
- }
125
- .sticky {
126
- position: sticky;
127
- }
128
- .masonry {
129
- display: grid;
130
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
131
- width: 100%;
132
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
133
- grid-column: var(--colstart) / var(--colend, span var(--span));
134
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
135
- max-width: 100%;
136
- }
137
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
138
- grid-template-rows: masonry;
139
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
140
- grid-column-end: span var(--span, 1);
141
- align-self: start;
142
- }
143
- }
144
- .shell-grid {
145
- display: grid;
146
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, 1fr);
147
- gap: var(--gap, 0);
148
- height: inherit;
149
- &:has(> .right-sidebar) {
150
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, var(--content-width, 1fr)) minmax(0, var(--rsb-width, auto));
151
- }
152
- > .left-sidebar, > .right-sidebar, > .content {
153
- overflow: auto;
154
- grid-column-end: span var(--span, 1);
155
- height: auto;
156
- }
157
- height: 100dvh;
158
- &:has(> .header, header, .footer, footer) {
159
- grid-template-rows: auto 1fr;
160
- }
161
- & > :is(.header, header, .footer, footer, .full) {
162
- grid-column: 1 / -1;
163
- }
164
- }
165
- .grid-repeat-auto {
166
- display: grid;
167
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
168
- width: 100%;
169
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
170
- grid-column: var(--colstart) / var(--colend, span var(--span));
171
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
172
- max-width: 100%;
173
- }
174
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
175
- }
176
- .grid-simple {
177
- display: grid;
178
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
179
- width: 100%;
180
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
181
- grid-column: var(--colstart) / var(--colend, span var(--span));
182
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
183
- max-width: 100%;
184
- }
185
- grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
186
- }
187
- .grid-with-breakout {
188
- display: grid;
189
- grid-template-columns: minmax(0, var(--start-width, var(--side-width, 0.25fr))) minmax(0, var(--content-width, 1fr)) minmax(0, var(--end-width, var(--side-width, 0.25fr)));
190
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
191
- > * {
192
- grid-column: 2 / -2;
193
- }
194
- > .breakout-small {
195
- grid-column: auto / span 1;
196
- }
197
- > .breakout-start-only, > .breakout-left-only {
198
- grid-column: 1 / 2;
199
- }
200
- > .breakout-start, > .breakout-left {
201
- grid-column: 1 / -2;
202
- }
203
- > .breakout-end, > .breakout-right {
204
- grid-column: 2 / -1;
205
- }
206
- > .breakout-end-only, > .breakout-right-only {
207
- grid-column: -1 / -2;
208
- }
209
- > .breakout-full {
210
- grid-column: 1 / -1;
211
- }
212
- }
213
- .container {
214
- width: 100%;
215
- }
216
- .nudge {
217
- margin-block: var(--nudge-y, var(--nudge, 0));
218
- margin-inline: var(--nudge-x, var(--nudge, 0));
219
- }
220
- .prose-tight {
221
- display: flex;
222
- flex-flow: column;
223
- gap: 1lh;
224
- hanging-punctuation: first allow-end last;
225
- > * + :where(h2), > * + :where(astro-island, astro-slot) > :where(h2):first-child {
226
- margin-top: calc(var(--spacing) * 6);
227
- scroll-margin-block: calc(var(--spacing) * 6);
228
- }
229
- > * + :where(h3), > * + :where(astro-island, astro-slot) > :where(h3):first-child {
230
- margin-top: calc(var(--spacing) * 4);
231
- margin-bottom: calc(var(--spacing) * -2);
232
- scroll-margin-block: calc(var(--spacing) * 4);
233
- }
234
- > * + :where(h4, h5, h6), > * + :where(astro-island, astro-slot) > :where(h4, h5, h6):first-child {
235
- margin-top: calc(var(--spacing) * 4);
236
- margin-bottom: calc(var(--spacing) * -4);
237
- scroll-margin-block: calc(var(--spacing) * 4);
238
- }
239
- :where(ul) {
240
- list-style-type: initial;
241
- }
242
- :where(ul, ol), > :where(astro-island, astro-slot) :where(ul, ol) {
243
- list-style-position: outside;
244
- margin-left: 2em;
245
- :where(ul, ol) {
246
- margin-left: 0;
247
- padding-left: 2em;
248
- }
249
- li {
250
- font-variant-numeric: lining-nums;
251
- }
252
- li + li {
253
- margin-top: calc(var(--spacing));
254
- }
255
- li:has(li) + li {
256
- margin-top: calc(var(--spacing) * 2);
257
- }
258
- li > :where(ul, ol) {
259
- margin-top: calc(var(--spacing));
260
- }
261
- }
262
- :where(a) {
263
- text-decoration-line: underline;
264
- }
265
- :where(> img), :where(> figure img) {
266
- border: 1px solid oklch(90% 0 0deg);
267
- border-radius: var(--radius);
268
- }
269
- :where(> figure) {
270
- inline-size: fit-content;
271
- margin-inline: auto;
272
- }
273
- :where(> figure figcaption) {
274
- contain: inline-size;
275
- }
276
- :where(.fancylist) {
277
- margin-left: 1em;
278
- padding-left: 0;
279
- }
280
- gap: 1em;
281
- }
282
- .prose {
283
- display: flex;
284
- flex-flow: column;
285
- gap: 1lh;
286
- hanging-punctuation: first allow-end last;
287
- > * + :where(h2), > * + :where(astro-island, astro-slot) > :where(h2):first-child {
288
- margin-top: calc(var(--spacing) * 6);
289
- scroll-margin-block: calc(var(--spacing) * 6);
290
- }
291
- > * + :where(h3), > * + :where(astro-island, astro-slot) > :where(h3):first-child {
292
- margin-top: calc(var(--spacing) * 4);
293
- margin-bottom: calc(var(--spacing) * -2);
294
- scroll-margin-block: calc(var(--spacing) * 4);
295
- }
296
- > * + :where(h4, h5, h6), > * + :where(astro-island, astro-slot) > :where(h4, h5, h6):first-child {
297
- margin-top: calc(var(--spacing) * 4);
298
- margin-bottom: calc(var(--spacing) * -4);
299
- scroll-margin-block: calc(var(--spacing) * 4);
300
- }
301
- :where(ul) {
302
- list-style-type: initial;
303
- }
304
- :where(ul, ol), > :where(astro-island, astro-slot) :where(ul, ol) {
305
- list-style-position: outside;
306
- margin-left: 2em;
307
- :where(ul, ol) {
308
- margin-left: 0;
309
- padding-left: 2em;
310
- }
311
- li {
312
- font-variant-numeric: lining-nums;
313
- }
314
- li + li {
315
- margin-top: calc(var(--spacing));
316
- }
317
- li:has(li) + li {
318
- margin-top: calc(var(--spacing) * 2);
319
- }
320
- li > :where(ul, ol) {
321
- margin-top: calc(var(--spacing));
322
- }
323
- }
324
- :where(a) {
325
- text-decoration-line: underline;
326
- }
327
- :where(> img), :where(> figure img) {
328
- border: 1px solid oklch(90% 0 0deg);
329
- border-radius: var(--radius);
330
- }
331
- :where(> figure) {
332
- inline-size: fit-content;
333
- margin-inline: auto;
334
- }
335
- :where(> figure figcaption) {
336
- contain: inline-size;
337
- }
338
- :where(.fancylist) {
339
- margin-left: 1em;
340
- padding-left: 0;
341
- }
342
- }
343
- .indentlist {
344
- --indentlist-depth: 0;
345
- :where(li li) {
346
- margin-inline-start: var(--indent, 1em);
347
- }
348
- li {
349
- --depth: 1;
350
- a {
351
- --depth: 1;
352
- }
353
- li, li a {
354
- --depth: 2;
355
- }
356
- li li, li li a {
357
- --depth: 3;
358
- }
359
- li li li, li li li a {
360
- --depth: 4;
361
- }
362
- li li li li, li li li li a {
363
- --depth: 5;
364
- }
365
- }
366
- :where(ul, ol, li) {
367
- padding-inline-start: 0;
368
- }
369
- a {
370
- display: block;
371
- padding-block: 0.125em;
372
- }
373
- li {
374
- list-style-type: disc;
375
- }
376
- }
377
- .prose-div {
378
- max-width: 100%;
379
- > * + * {
380
- margin-top: calc(var(--spacing) * 4);
381
- }
382
- > * + :where(h2), > * + :where(astro-island, astro-slot) > :where(h2):first-child {
383
- margin-top: var(--h2-margin-top, calc(var(--spacing) * 6));
384
- scroll-margin-top: var(--h2-margin-top, calc(var(--spacing) * 6));
385
- }
386
- > * + :where(h3), > * + :where(astro-island, astro-slot) > :where(h3):first-child {
387
- margin-top: var(--h3-margin-top, calc(var(--spacing) * 4));
388
- margin-bottom: var(--h3-margin-bottom, calc(var(--spacing) * -2));
389
- scroll-margin-top: var(--h3-margin-top, calc(var(--spacing) * 4));
390
- }
391
- > * + :where(h4, h5, h6), > * + :where(astro-island, astro-slot) > :where(h4, h5, h6):first-child {
392
- margin-top: calc(var(--spacing) * 4);
393
- margin-bottom: calc(var(--spacing) * -4);
394
- scroll-margin-top: calc(var(--spacing) * 4);
395
- }
396
- :where(ul) {
397
- list-style-type: initial;
398
- }
399
- :where(ul, ol), > :where(astro-island, astro-slot) :where(ul, ol) {
400
- list-style-position: outside;
401
- margin-left: 2em;
402
- :where(ul, ol) {
403
- margin-left: 0;
404
- padding-left: 2em;
405
- }
406
- li {
407
- font-variant-numeric: lining-nums;
408
- }
409
- li + li {
410
- margin-top: calc(var(--spacing));
411
- }
412
- li:has(li) + li {
413
- margin-top: calc(var(--spacing) * 2);
414
- }
415
- li > :where(ul, ol) {
416
- margin-top: calc(var(--spacing));
417
- }
418
- }
419
- :where(a) {
420
- text-decoration: underline;
421
- }
422
- > img, figure img {
423
- border: 1px solid oklch(90% 0 0deg);
424
- border-radius: var(--radius);
425
- }
426
- &.fancylist, & .fancylist {
427
- padding-left: 0;
428
- }
429
- }
430
- .hero-heading {
431
- display: flex;
432
- flex-direction: column;
433
- gap: 0.5lh;
434
- > .eyebrow {
435
- font-size: var(--eyebrow-size, 0.6em);
436
- }
437
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
438
- max-width: 100%;
439
- }
440
- }
441
- .scrollable {
442
- display: flex;
443
- gap: var(--gap, 1rlh);
444
- > :where(*) {
445
- flex-grow: 0;
446
- flex-shrink: 0;
447
- scroll-snap-align: var(--snap-align);
448
- scroll-margin: var(--scroll-margin);
449
- }
450
- }
451
- .grid {
452
- display: grid;
453
- }
454
- .table {
455
- display: table;
456
- }
457
- .object-background {
458
- width: 100%;
459
- height: 100%;
460
- object-fit: cover;
461
- }
462
- .select {
463
- select {
464
- appearance: none;
465
- color: var(--text-color);
466
- background: var(--bg-color);
467
- }
468
- select[multiple], select[multiple]:focus {
469
- overflow: auto;
470
- padding: 0;
471
- option {
472
- padding: 0.375em 0.75em;
473
- color: var(--text-color);
474
- background-image: linear-gradient( 0deg, var(--bg-color) 0%, var(--bg-color) 100% );
475
- }
476
- option:hover {
477
- color: var(--text-hover-color, var(--text-color));
478
- background-image: linear-gradient( 0deg, var(--bg-hover-color, var(--bg-color)) 0%, var(--bg-hover-color, var(--bg-color)) 100% );
479
- }
480
- option:focus {
481
- color: var( --text-focus-color, var(--text-hover-color, var(--text-color)) );
482
- background-image: linear-gradient( 0deg, var(--bg-focus-color, var(--bg-hover-color, var(--bg-color))) 0%, var(--bg-focus-color, var(--bg-hover-color, var(--bg-color))) 100% );
483
- }
484
- option:checked {
485
- color: var(--text-selected-color);
486
- background-image: linear-gradient( 0deg, var(--bg-selected-color,) 0%, var(--bg-selected-color,) 100% );
487
- }
488
- }
489
- }
490
- .pigment {
491
- border: var(--border-width) var(--border-style) var(--_bc, var(--border-color));
492
- border-radius: var(--radius);
493
- --transition-values: var(--transition-duration) var(--transition-delay)
494
- var(--transition-easing);
495
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
496
- transform, translate, scale, rotate, skew, perspective;
497
- transition: var(--transition-values);
498
- transition-property: var(--transition-props);
499
- --_bgc: var(--bg-color);
500
- --_tc: var(--text-color, currentcolor);
501
- --_bc: var(--border-color, currentcolor);
502
- border-color: var(--_bc, currentcolor);
503
- color: var(--_tc);
504
- background: var(--_bgc);
505
- &:hover {
506
- --_bgc: var(--bg-hover-color, var(--bg-color));
507
- --_tc: var(--text-hover-color, var(--text-color));
508
- --_bc: var(--border-hover-color, var(--border-color));
509
- }
510
- &:focus {
511
- --_bc: var(
512
- --border-focus-color,
513
- var(--border-hover-color, var(--border-color))
514
- );
515
- --_tc: var(--text-focus-color, var(--text-hover-color, var(--text-color)));
516
- --_bgc: var(--bg-focus-color, var(--bg-hover-color, var(--bg-color)));
517
- }
518
- &:active {
519
- --_bc: var(--border-active-color, var(--border-color));
520
- --_tc: var(--text-active-color, var(--text-color));
521
- --_bgc: var(--bg-active-color, var(--bg-color));
522
- }
523
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
524
- --_bc: var(--border-selected-color, var(--border-color));
525
- --_tc: var(--text-selected-color, var(--text-color));
526
- --_bgc: var(--bg-selected-color, var(--bg-color));
527
- }
528
- }
529
- .border {
530
- border-style: var(--tw-border-style);
531
- border-width: 1px;
532
- }
533
- .gradient {
534
- --tw-gradient: var(--tw-gradient-from) var(--tw-gradient-from-position),
535
- var(--tw-gradient-to) var(--tw-gradient-to-position);
536
- background-image: linear-gradient( var(--gradient-angle) in var(--color-space) var(--hue-interpolation), var(--gradient, var(--tw-gradient)) );
537
- }
538
- .linear-gradient {
539
- --tw-gradient: var(--tw-gradient-from) var(--tw-gradient-from-position),
540
- var(--tw-gradient-to) var(--tw-gradient-to-position);
541
- background-image: linear-gradient( var(--gradient-angle) in var(--color-space) var(--hue-interpolation), var(--gradient, var(--tw-gradient)) );
542
- }
543
- .wrap {
544
- padding-inline: var(--wrap-padding, calc(var(--spacing) * 4));
545
- }
546
- .transition {
547
- transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
548
- transition-timing-function: var(--tw-ease, ease);
549
- transition-duration: var(--tw-duration, 0s);
550
- }
551
- }
552
- @layer reset {
553
- html {
554
- box-sizing: border-box;
555
- tab-size: 2;
556
- overflow-wrap: break-word;
557
- }
558
- *, *::before, *::after {
559
- box-sizing: border-box;
560
- }
561
- html, body {
562
- height: 100%;
563
- }
564
- body {
565
- min-height: 100vh;
566
- min-height: 100svh;
567
- }
568
- * {
569
- margin: 0;
570
- padding: 0;
571
- border-width: 0;
572
- border-style: solid;
573
- }
574
- pre {
575
- white-space: pre-wrap;
576
- }
577
- :target {
578
- scroll-margin: 2rlh;
579
- }
580
- a {
581
- text-underline-offset: 2px;
582
- text-decoration-color: currentcolor;
583
- @supports (color: color-mix(in lab, red, red)) {
584
- text-decoration-color: color-mix(in srgb, currentcolor, transparent 33%);
585
- }
586
- }
587
- ul {
588
- list-style: none;
589
- }
590
- img, video, object, embed, svg {
591
- display: block;
592
- width: 100%;
593
- max-width: 100%;
594
- height: auto;
595
- }
596
- picture {
597
- display: flex;
598
- justify-content: center;
599
- }
600
- iframe, canvas {
601
- display: block;
602
- max-width: 100%;
603
- }
604
- svg {
605
- flex-shrink: 0;
606
- box-sizing: content-box;
607
- width: var(--svg-width, auto);
608
- height: var(--svg-height, auto);
609
- }
610
- hr {
611
- height: 1px;
612
- background-color: var(--border-color, black);
613
- }
614
- [hidden] {
615
- display: none !important;
616
- opacity: 0;
617
- visibility: hidden;
618
- }
619
- noscript {
620
- display: block;
621
- margin-block: 1em;
622
- }
623
- }
624
- @function --alpha(--color, --alpha) {
625
- result: oklch(from var(--color) l c h / var(--alpha));
626
- }
627
- @keyframes z-index-hack {
628
- 0%, 100% {
629
- z-index: var(--z-index, 5);
630
- }
631
- }
632
- @layer base {
633
- .sr-only {
634
- overflow: hidden;
635
- position: absolute;
636
- width: 1px;
637
- height: auto;
638
- margin: 0;
639
- padding: 0;
640
- border: 0;
641
- clip: rect(0 0 0 0);
642
- white-space: nowrap;
643
- }
644
- @media (prefers-reduced-motion: no-preference) {
645
- @view-transition {
646
- navigation: auto;
647
- }
648
- html {
649
- interpolate-size: allow-keywords;
650
- &:focus-within {
651
- scroll-behavior: var(--scroll-behavior, smooth);
652
- }
653
- }
654
- }
655
- }
656
- @layer base {
657
- html {
658
- font-family: system-ui, sans-serif;
659
- line-height: var(--leading, 1.5);
660
- font-variant-ligatures: common-ligatures;
661
- }
662
- body {
663
- color: var(--text-color);
664
- background-color: var(--bg-color);
665
- text-rendering: optimizelegibility;
666
- }
667
- h1, h2, h3, h4, h5, h6 {
668
- font-variant-numeric: oldstyle-nums proportional-nums;
669
- }
670
- pre {
671
- padding: 1em;
672
- border-radius: var(--radius);
673
- }
674
- code {
675
- font-size: 0.8em;
676
- :not(pre) > & {
677
- display: inline;
678
- padding: 0.2em 0.25em;
679
- border-radius: var(--radius);
680
- }
681
- pre > & {
682
- background-color: transparent;
683
- }
684
- }
685
- }
686
- @layer base {
687
- fieldset {
688
- border: none;
689
- }
690
- input:where( [type='text'], [type='search'], [type='email'], [type='password'], [type='tel'], [type='url'] ), textarea, select, .field {
691
- --transition-values: var(--transition-duration) var(--transition-delay)
692
- var(--transition-easing);
693
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
694
- transform, translate, scale, rotate, skew, perspective;
695
- transition: var(--transition-values);
696
- transition-property: var(--transition-props);
697
- --_bgc: var(--bg-color);
698
- --_tc: var(--text-color, currentcolor);
699
- --_bc: var(--border-color, currentcolor);
700
- border-color: var(--_bc, currentcolor);
701
- color: var(--_tc);
702
- background: var(--_bgc);
703
- &:hover {
704
- --_bgc: var(--bg-hover-color, var(--bg-color));
705
- --_tc: var(--text-hover-color, var(--text-color));
706
- --_bc: var(--border-hover-color, var(--border-color));
707
- }
708
- &:focus {
709
- --_bc: var(
710
- --border-focus-color,
711
- var(--border-hover-color, var(--border-color))
712
- );
713
- --_tc: var(--text-focus-color, var(--text-hover-color, var(--text-color)));
714
- --_bgc: var(--bg-focus-color, var(--bg-hover-color, var(--bg-color)));
715
- }
716
- &:active {
717
- --_bc: var(--border-active-color, var(--border-color));
718
- --_tc: var(--text-active-color, var(--text-color));
719
- --_bgc: var(--bg-active-color, var(--bg-color));
720
- }
721
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
722
- --_bc: var(--border-selected-color, var(--border-color));
723
- --_tc: var(--text-selected-color, var(--text-color));
724
- --_bgc: var(--bg-selected-color, var(--bg-color));
725
- }
726
- border: var(--border-width) var(--border-style) var(--_bc, var(--border-color));
727
- border-radius: var(--radius);
728
- outline: var(--outline-width) var(--outline-style) var(--outline-color, transparent);
729
- outline-offset: var(--outline-offset);
730
- &:focus-visible {
731
- outline-color: var(--outline-focus-color);
732
- }
733
- display: block;
734
- width: 100%;
735
- padding: 0.125lh 0.5lh;
736
- font: inherit;
737
- font-family: var(--input-font);
738
- color: var(--text-color, currentcolor);
739
- background-color: var(--bg-color);
740
- }
741
- input[type='password'] {
742
- font-family: Verdana, sans-serif;
743
- letter-spacing: 0.125em;
744
- }
745
- .disabled, .readonly, [disabled], [readonly] {
746
- opacity: 0.5;
747
- &:where(input) {
748
- cursor: not-allowed;
749
- }
750
- &:focus, &:focus-visible {
751
- outline-color: transparent;
752
- }
753
- }
754
- .form-field-helper {
755
- display: none !important;
756
- }
757
- }
758
- @layer base {
759
- a {
760
- text-decoration-line: none;
761
- }
762
- a:where(:not(.button)) {
763
- --transition-values: var(--transition-duration) var(--transition-delay)
764
- var(--transition-easing);
765
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
766
- transform, translate, scale, rotate, skew, perspective;
767
- transition: var(--transition-values);
768
- transition-property: var(--transition-props);
769
- --_bgc: var(--bg-color);
770
- --_tc: var(--text-color, currentcolor);
771
- --_bc: var(--border-color, currentcolor);
772
- border-color: var(--_bc, currentcolor);
773
- color: var(--_tc);
774
- background: var(--_bgc);
775
- &:hover {
776
- --_bgc: var(--bg-hover-color, var(--bg-color));
777
- --_tc: var(--text-hover-color, var(--text-color));
778
- --_bc: var(--border-hover-color, var(--border-color));
779
- }
780
- &:focus {
781
- --_bc: var(
782
- --border-focus-color,
783
- var(--border-hover-color, var(--border-color))
784
- );
785
- --_tc: var(--text-focus-color, var(--text-hover-color, var(--text-color)));
786
- --_bgc: var(--bg-focus-color, var(--bg-hover-color, var(--bg-color)));
787
- }
788
- &:active {
789
- --_bc: var(--border-active-color, var(--border-color));
790
- --_tc: var(--text-active-color, var(--text-color));
791
- --_bgc: var(--bg-active-color, var(--bg-color));
792
- }
793
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
794
- --_bc: var(--border-selected-color, var(--border-color));
795
- --_tc: var(--text-selected-color, var(--text-color));
796
- --_bgc: var(--bg-selected-color, var(--bg-color));
797
- }
798
- --bg-color: transparent;
799
- --border-color: transparent;
800
- }
801
- button {
802
- border: var(--border-width) var(--border-style) var(--_bc, var(--border-color));
803
- border-radius: var(--radius);
804
- --transition-values: var(--transition-duration) var(--transition-delay)
805
- var(--transition-easing);
806
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
807
- transform, translate, scale, rotate, skew, perspective;
808
- transition: var(--transition-values);
809
- transition-property: var(--transition-props);
810
- --_bgc: var(--bg-color);
811
- --_tc: var(--text-color, currentcolor);
812
- --_bc: var(--border-color, currentcolor);
813
- border-color: var(--_bc, currentcolor);
814
- color: var(--_tc);
815
- background: var(--_bgc);
816
- --_fc: var(--fill-color);
817
- --_sc: var(--stroke-color, var(--text-color, currentcolor));
818
- :where(svg path) {
819
- --transition-values: var(--transition-duration) var(--transition-delay)
820
- var(--transition-easing);
821
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
822
- transform, translate, scale, rotate, skew, perspective;
823
- transition: var(--transition-values);
824
- transition-property: var(--transition-props);
825
- fill: var(--_fc, revert-layer);
826
- stroke: var(--_sc, currentcolor);
827
- }
828
- &:hover {
829
- --_bgc: var(--bg-hover-color, var(--bg-color));
830
- --_tc: var(--text-hover-color, var(--text-color));
831
- --_bc: var(--border-hover-color, var(--border-color));
832
- }
833
- &:hover {
834
- --_fc: var(--fill-hover-color, var(--fill-color));
835
- --_sc: var(--stroke-hover-color, var(--_tc));
836
- }
837
- &:focus {
838
- --_bc: var(
839
- --border-focus-color,
840
- var(--border-hover-color, var(--border-color))
841
- );
842
- --_tc: var(--text-focus-color, var(--text-hover-color, var(--text-color)));
843
- --_bgc: var(--bg-focus-color, var(--bg-hover-color, var(--bg-color)));
844
- }
845
- &:focus {
846
- --_fc: var(--fill-focus-color, var(--fill-color));
847
- --_sc: var(--stroke-focus-color, var(--_tc));
848
- }
849
- &:active {
850
- --_bc: var(--border-active-color, var(--border-color));
851
- --_tc: var(--text-active-color, var(--text-color));
852
- --_bgc: var(--bg-active-color, var(--bg-color));
853
- }
854
- &:active {
855
- --_fc: var(--fill-active-color, var(--fill-color, revert-layer));
856
- --_sc: var(--stroke-active-color, var(--_tc));
857
- }
858
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
859
- --_bc: var(--border-selected-color, var(--border-color));
860
- --_tc: var(--text-selected-color, var(--text-color));
861
- --_bgc: var(--bg-selected-color, var(--bg-color));
862
- }
863
- &.selected, &.checked, &[aria-current], &[aria-selected='true'], &[aria-pressed='true'], &[aria-expanded='true'] {
864
- --_fc: var(--fill-selected-color, var(--fill-color, revert-layer));
865
- --_sc: var(--stroke-selected-color, var(--_tc));
866
- }
867
- flex-shrink: 0;
868
- display: inline-flex;
869
- justify-content: center;
870
- align-items: center;
871
- gap: 0.5em;
872
- max-width: 100%;
873
- padding: 0.125lh 0.75lh;
874
- font: inherit;
875
- font-family: var(--input-font);
876
- text-decoration-line: none !important;
877
- cursor: pointer;
878
- &[disabled] {
879
- cursor: default;
880
- }
881
- * {
882
- pointer-events: none;
883
- }
884
- svg path {
885
- --transition-values: var(--transition-duration) var(--transition-delay)
886
- var(--transition-easing);
887
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
888
- transform, translate, scale, rotate, skew, perspective;
889
- transition: var(--transition-values);
890
- transition-property: var(--transition-props);
891
- }
892
- }
893
- :is(a, button, .button), :where([tabindex]:not([tabindex='-1'])) {
894
- outline: var(--outline-width) var(--outline-style) var(--outline-color, transparent);
895
- outline-offset: var(--outline-offset);
896
- &:focus-visible {
897
- outline-color: var(--outline-focus-color);
898
- }
899
- }
900
- }
901
- @layer base {
902
- html {
903
- scroll-behavior: smooth;
904
- }
905
- }
906
- .input-group.stack {
907
- display: grid;
908
- }
909
- @layer base {
910
- textarea {
911
- min-height: var(--textarea-height);
912
- resize: vertical;
913
- field-sizing: normal;
914
- }
915
- }
916
- @layer utility {
917
- .checkbox, .radio {
918
- --size: 1em;
919
- --fill-color: none;
920
- --stroke-color: transparent;
921
- --fill-checked-color: none;
922
- --stroke-checked-color: white;
923
- display: flex;
924
- align-items: center;
925
- gap: 0.5em;
926
- > .group {
927
- display: flex;
928
- align-items: start;
929
- gap: inherit;
930
- }
931
- .checkmark-container, .radiomark-container {
932
- position: relative;
933
- grid-template-columns: minmax(0, 1fr);
934
- padding: 0;
935
- &::before, &::after, > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
936
- position: relative;
937
- z-index: 1;
938
- grid-column: 1 / span 1;
939
- grid-row: 1 / span 1;
940
- }
941
- > .background {
942
- overflow: hidden;
943
- position: absolute;
944
- inset: 0;
945
- }
946
- > .foreground {
947
- position: relative;
948
- z-index: 10;
949
- }
950
- flex-shrink: 0;
951
- display: grid;
952
- place-items: center;
953
- .input {
954
- --transition-values: var(--transition-duration) var(--transition-delay)
955
- var(--transition-easing);
956
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
957
- transform, translate, scale, rotate, skew, perspective;
958
- transition: var(--transition-values);
959
- transition-property: var(--transition-props);
960
- outline: var(--outline-width) var(--outline-style) var(--outline-color, transparent);
961
- outline-offset: var(--outline-offset);
962
- &:focus-visible {
963
- outline-color: var(--outline-focus-color);
964
- }
965
- appearance: none;
966
- display: grid;
967
- place-content: center;
968
- width: var(--size);
969
- height: var(--size);
970
- margin-block: calc((1lh - var(--size)) / 2);
971
- padding: 0;
972
- border: var(--border-width, 1px) var(--border-style, solid) var(--border-color, black);
973
- font: inherit;
974
- background-color: var(--bg-color, transparent);
975
- &:checked {
976
- background-color: var(--border-color);
977
- }
978
- &:active {
979
- transform: scale(0.85);
980
- }
981
- &[type='checkbox'] {
982
- border-radius: var(--checkbox-radius, var(--border-radius, 0.25em));
983
- }
984
- &[type='radio'] {
985
- border-radius: 50%;
986
- }
987
- }
988
- }
989
- svg {
990
- --transition-values: var(--transition-duration) var(--transition-delay)
991
- var(--transition-easing);
992
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
993
- transform, translate, scale, rotate, skew, perspective;
994
- transition: var(--transition-values);
995
- transition-property: var(--transition-props);
996
- pointer-events: none;
997
- transition-property: transform, opacity;
998
- }
999
- .checkmark {
1000
- width: calc(var(--size) - 2px);
1001
- height: calc(var(--size) - 2px);
1002
- path {
1003
- --transition-values: var(--transition-duration) var(--transition-delay)
1004
- var(--transition-easing);
1005
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
1006
- transform, translate, scale, rotate, skew, perspective;
1007
- transition: var(--transition-values);
1008
- transition-property: var(--transition-props);
1009
- fill: var(--fill-color);
1010
- stroke: var(--stroke-color);
1011
- stroke-width: var(--stroke-width, 3);
1012
- }
1013
- }
1014
- .radiomark {
1015
- width: calc(var(--size) * 1);
1016
- height: calc(var(--size) * 1);
1017
- circle {
1018
- --transition-values: var(--transition-duration) var(--transition-delay)
1019
- var(--transition-easing);
1020
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
1021
- transform, translate, scale, rotate, skew, perspective;
1022
- transition: var(--transition-values);
1023
- transition-property: var(--transition-props);
1024
- fill: var(--stroke-color);
1025
- stroke: var(--stroke-color);
1026
- }
1027
- }
1028
- input:checked {
1029
- & ~ svg {
1030
- opacity: 1;
1031
- transform: scale(1);
1032
- }
1033
- & ~ .checkmark path {
1034
- --transition-values: var(--transition-duration) var(--transition-delay)
1035
- var(--transition-easing);
1036
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
1037
- transform, translate, scale, rotate, skew, perspective;
1038
- transition: var(--transition-values);
1039
- transition-property: var(--transition-props);
1040
- fill: var(--fill-checked-color);
1041
- stroke: var(--stroke-checked-color);
1042
- }
1043
- & ~ .radiomark circle {
1044
- --transition-values: var(--transition-duration) var(--transition-delay)
1045
- var(--transition-easing);
1046
- --transition-props: background, border, color, display, fill, opacity, outline, stroke,
1047
- transform, translate, scale, rotate, skew, perspective;
1048
- transition: var(--transition-values);
1049
- transition-property: var(--transition-props);
1050
- fill: var(--stroke-checked-color);
1051
- stroke: var(--stroke-checked-color);
1052
- }
1053
- }
1054
- .text-input {
1055
- display: none;
1056
- }
1057
- :where(.group):has(:checked) ~ .text-input {
1058
- display: block;
1059
- }
1060
- --transition-duration: 125ms;
1061
- --transition-easing: ease-in;
1062
- }
1063
- .fieldset, .checkboxes, .radios {
1064
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1065
- flex-grow: var(--grow);
1066
- }
1067
- display: flex;
1068
- flex-direction: column;
1069
- flex-wrap: nowrap;
1070
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1071
- > .spacer {
1072
- margin-block-start: auto;
1073
- }
1074
- gap: 0.125em;
1075
- }
1076
- }
1077
- table {
1078
- width: 100%;
1079
- font-variant-numeric: lining-nums tabular-nums slashed-zero;
1080
- caption-side: bottom;
1081
- border-collapse: collapse;
1082
- &:has(thead) tr:nth-child(2n + 2) {
1083
- background-color: var(--alt-row-color);
1084
- }
1085
- &:not(:has(thead)) tr {
1086
- &:nth-child(2n + 3) {
1087
- background-color: var(--alt-row-color);
1088
- }
1089
- }
1090
- th:where([scope='colgroup'], [scope='col'], :not([scope])) {
1091
- border-top: var(--header-row-border-top);
1092
- border-bottom: var(--header-row-border-bottom);
1093
- font-weight: bold;
1094
- }
1095
- th:where([scope='group'], [scope='row']) {
1096
- font-weight: bold;
1097
- }
1098
- :is(th, td) {
1099
- display: table-cell;
1100
- padding-block: var(--cell-padding-y, 0.5rlh);
1101
- padding-inline-end: var(--cell-padding-x, 0.5rlh);
1102
- text-align: left;
1103
- }
1104
- }
1105
- .table-grid:where(table, [role='table'], [role='grid']) {
1106
- width: 100%;
1107
- font-variant-numeric: lining-nums tabular-nums slashed-zero;
1108
- caption-side: bottom;
1109
- :where(table) & {
1110
- table-layout: auto;
1111
- }
1112
- :where(.table-grid) & {
1113
- display: grid;
1114
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1115
- width: 100%;
1116
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1117
- grid-column: var(--colstart) / var(--colend, span var(--span));
1118
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1119
- max-width: 100%;
1120
- }
1121
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
1122
- }
1123
- table-layout: auto;
1124
- max-width: 100%;
1125
- }
1126
- .table-grid :where(thead, tbody, tfoot, [role='rowgroup']) {
1127
- display: contents;
1128
- }
1129
- .table-grid :where(tr, [role='row']) {
1130
- grid-column: 1/-1;
1131
- display: grid;
1132
- grid-template-columns: subgrid;
1133
- grid-template-rows: subgrid;
1134
- &:nth-child(2n + 3) {
1135
- background-color: var(--alt-row-color);
1136
- }
1137
- }
1138
- .table-grid :where( th[scope='colgroup'], th[scope='col'], th:not([scope]), [role='columnheader'] ) {
1139
- border-top: var(--header-row-border-top);
1140
- border-bottom: var(--header-row-border-bottom);
1141
- font-weight: bold;
1142
- }
1143
- .table-grid :where(th[scope='rowgroup'], th[scope='row'], [role='rowheader']) {
1144
- font-weight: bold;
1145
- }
1146
- .table-grid :where( [role='columnheader'], [role='rowheader'], [role='cell'], [role='gridcell'], th, td ) {
1147
- display: table-cell;
1148
- padding-block: var(--cell-padding-y, 0.5rlh);
1149
- padding-inline-end: var(--cell-padding-x, 0.5rlh);
1150
- text-align: left;
1151
- display: grid;
1152
- align-items: center;
1153
- }
1154
- @property --cols {
1155
- syntax: '<integer> | auto';
1156
- initial-value: 1;
1157
- inherits: false;
1158
- }
1159
- @property --colstart {
1160
- syntax: '<integer> | auto';
1161
- initial-value: auto;
1162
- inherits: false;
1163
- }
1164
- @property --span {
1165
- syntax: '<number> | auto';
1166
- initial-value: 1;
1167
- inherits: false;
1168
- }
1169
- @property --rowspan {
1170
- syntax: '<integer> | auto';
1171
- initial-value: 1;
1172
- inherits: false;
1173
- }
1174
- @property --rowstart {
1175
- syntax: '<integer> | auto';
1176
- initial-value: auto;
1177
- inherits: false;
1178
- }
1179
- @function --bem(--multiplier) {
1180
- result: calc(var(--font-size / var(--base-size) * 1em * --multiplier));
1181
- }
1182
- @function --blh(--multiplier, --lh-multiplier) {
1183
- result: calc( var( --font-size / var(--base-size) * 1em * --multiplier * var(--lh-multiplier, var(--leading)) ) );
1184
- }
1185
- @property --font-weight {
1186
- syntax: '<integer> | auto';
1187
- initial-value: 400;
1188
- inherits: true;
1189
- }
1190
- @property --font-slant {
1191
- syntax: '<integer> | auto';
1192
- initial-value: 0;
1193
- inherits: true;
1194
- }
1195
- @property --font-opsz {
1196
- syntax: '<integer> | auto';
1197
- initial-value: 25;
1198
- inherits: true;
1199
- }
1200
- :root {
1201
- --shadow-x: 0px;
1202
- --shadow-y: 1px;
1203
- --shadow-blur: 1px;
1204
- --shadow-color: rgb(0 0 0);
1205
- --shadow-alpha: 0.25;
1206
- --shadow-x-multiple: 2;
1207
- --shadow-y-multiple: 2;
1208
- --shadow-blur-multiple: 2;
1209
- }
1210
- @property --gradient-angle {
1211
- syntax: '<angle> | to [left | right | top | bottom] | to [top | bottom] [left | right]';
1212
- initial-value: to bottom;
1213
- inherits: false;
1214
- }
1215
- @layer base {
1216
- :root {
1217
- --gradient-alpha: 1;
1218
- --gradient-angle: to bottom;
1219
- --gradient-position: center;
1220
- --gradient-shape: ;
1221
- --gradient-size: ;
1222
- --color-space: oklch;
1223
- --hue-interpolation: ;
1224
- }
1225
- }
1226
- @function --linear-gradient(--gradient) {
1227
- result: linear-gradient( var(--gradient-angle) in var(--color-space) var(--hue-interpolation), var(--gradient) );
1228
- }
1229
- :root {
1230
- --color-space: oklch;
1231
- --hue-interpolation: shorter hue;
1232
- }
1233
- @keyframes rotate-angle {
1234
- from {
1235
- --gradient-angle: 0deg;
1236
- }
1237
- to {
1238
- --gradient-angle: 360deg;
1239
- }
1240
- }
1241
- @keyframes fly {
1242
- from {
1243
- opacity: var(--from-opacity, 0);
1244
- transform: translate(var(--from-x, 0), var(--from-y, 0));
1245
- }
1246
- to {
1247
- opacity: var(--to-opacity, 1);
1248
- transform: translate(var(--to-x, 0), var(--to-y, 0));
1249
- }
1250
- }
1251
- @layer components {
1252
- .hero-heading {
1253
- display: flex;
1254
- flex-direction: column;
1255
- gap: 0.5lh;
1256
- > .eyebrow {
1257
- font-size: var(--eyebrow-size, 0.6em);
1258
- }
1259
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1260
- max-width: 100%;
1261
- }
1262
- }
1263
- .hero-heading-start {
1264
- display: flex;
1265
- flex-direction: column;
1266
- gap: 0.5lh;
1267
- > .eyebrow {
1268
- font-size: var(--eyebrow-size, 0.6em);
1269
- }
1270
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1271
- max-width: 100%;
1272
- }
1273
- text-align: start;
1274
- }
1275
- .hero-heading-center {
1276
- display: flex;
1277
- flex-direction: column;
1278
- gap: 0.5lh;
1279
- > .eyebrow {
1280
- font-size: var(--eyebrow-size, 0.6em);
1281
- }
1282
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1283
- max-width: 100%;
1284
- }
1285
- align-self: center;
1286
- align-items: center;
1287
- margin-inline: auto;
1288
- text-align: center;
1289
- }
1290
- .hero-heading-end {
1291
- display: flex;
1292
- flex-direction: column;
1293
- gap: 0.5lh;
1294
- > .eyebrow {
1295
- font-size: var(--eyebrow-size, 0.6em);
1296
- }
1297
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1298
- max-width: 100%;
1299
- }
1300
- align-self: end;
1301
- margin-inline-start: auto;
1302
- text-align: end;
1303
- }
1304
- .indentlist {
1305
- --indentlist-depth: 0;
1306
- :where(li li) {
1307
- margin-inline-start: var(--indent, 1em);
1308
- }
1309
- li {
1310
- --depth: 1;
1311
- a {
1312
- --depth: 1;
1313
- }
1314
- li, li a {
1315
- --depth: 2;
1316
- }
1317
- li li, li li a {
1318
- --depth: 3;
1319
- }
1320
- li li li, li li li a {
1321
- --depth: 4;
1322
- }
1323
- li li li li, li li li li a {
1324
- --depth: 5;
1325
- }
1326
- }
1327
- :where(ul, ol, li) {
1328
- padding-inline-start: 0;
1329
- }
1330
- a {
1331
- display: block;
1332
- padding-block: 0.125em;
1333
- }
1334
- li {
1335
- list-style-type: disc;
1336
- }
1337
- }
1338
- .indentlist-guides {
1339
- --indentlist-depth: 0;
1340
- :where(li li) {
1341
- margin-inline-start: var(--indent, 1em);
1342
- }
1343
- li {
1344
- --depth: 1;
1345
- a {
1346
- --depth: 1;
1347
- }
1348
- li, li a {
1349
- --depth: 2;
1350
- }
1351
- li li, li li a {
1352
- --depth: 3;
1353
- }
1354
- li li li, li li li a {
1355
- --depth: 4;
1356
- }
1357
- li li li li, li li li li a {
1358
- --depth: 5;
1359
- }
1360
- }
1361
- :where(ul, ol, li) {
1362
- padding-inline-start: 0;
1363
- }
1364
- a {
1365
- display: block;
1366
- padding-block: 0.125em;
1367
- }
1368
- li {
1369
- position: relative;
1370
- margin-block: 0;
1371
- margin-inline-start: 0;
1372
- padding-inline-start: var(--indent, 1em);
1373
- list-style-type: none;
1374
- a {
1375
- position: relative;
1376
- margin-inline-start: calc(var(--indent, 1em) * -2);
1377
- padding-inline-start: var(--indent, 1em);
1378
- }
1379
- li::before, a::before {
1380
- content: '';
1381
- position: absolute;
1382
- top: 0;
1383
- bottom: 0;
1384
- left: 0;
1385
- width: var(--guide-width, 1px);
1386
- background-color: var(--guide-color, transparent);
1387
- }
1388
- a:hover::before {
1389
- background-color: var(--guide-hover-color, var(--guide-color));
1390
- }
1391
- a:focus::before {
1392
- background-color: var( --guide-focus-color, var(--guide-hover-color, var(--guide-color)) );
1393
- }
1394
- }
1395
- li li a {
1396
- margin-inline-start: calc(var(--indent, 1em) * -2);
1397
- }
1398
- }
1399
- .writing-normal {
1400
- transition: none;
1401
- writing-mode: horizontal-tb;
1402
- }
1403
- .writing-rotate-left {
1404
- transform: rotate(180deg);
1405
- transition: none;
1406
- writing-mode: vertical-rl;
1407
- text-orientation: sideways;
1408
- }
1409
- .writing-rotate-right {
1410
- transition: none;
1411
- writing-mode: vertical-rl;
1412
- text-orientation: sideways;
1413
- }
1414
- .writing-downwards {
1415
- writing-mode: vertical-lr;
1416
- text-orientation: upright;
1417
- }
1418
- .writing-downards-lr {
1419
- writing-mode: vertical-lr;
1420
- text-orientation: upright;
1421
- }
1422
- .writing-downwards-rl {
1423
- writing-mode: vertical-rl;
1424
- text-orientation: upright;
1425
- }
1426
- }
1427
- @layer components {
1428
- .shell-simple {
1429
- display: flex;
1430
- flex-direction: column;
1431
- height: inherit;
1432
- > .content {
1433
- flex-grow: 1;
1434
- }
1435
- > .footer {
1436
- flex-shrink: 0;
1437
- }
1438
- }
1439
- .shell-body {
1440
- display: grid;
1441
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, 1fr);
1442
- gap: var(--gap, 0);
1443
- height: inherit;
1444
- &:has(> .right-sidebar) {
1445
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, var(--content-width, 1fr)) minmax(0, var(--rsb-width, auto));
1446
- }
1447
- > .left-sidebar, > .right-sidebar, > .content {
1448
- overflow: auto;
1449
- grid-column-end: span var(--span, 1);
1450
- height: auto;
1451
- }
1452
- }
1453
- .shell-grid {
1454
- display: grid;
1455
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, 1fr);
1456
- gap: var(--gap, 0);
1457
- height: inherit;
1458
- &:has(> .right-sidebar) {
1459
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, var(--content-width, 1fr)) minmax(0, var(--rsb-width, auto));
1460
- }
1461
- > .left-sidebar, > .right-sidebar, > .content {
1462
- overflow: auto;
1463
- grid-column-end: span var(--span, 1);
1464
- height: auto;
1465
- }
1466
- height: 100dvh;
1467
- &:has(> .header, header, .footer, footer) {
1468
- grid-template-rows: auto 1fr;
1469
- }
1470
- & > :is(.header, header, .footer, footer, .full) {
1471
- grid-column: 1 / -1;
1472
- }
1473
- }
1474
- }
1475
- @layer components {
1476
- .wrap {
1477
- padding-inline: var(--wrap-padding, calc(var(--spacing) * 4));
1478
- }
1479
- .grid-flex {
1480
- --_cols: var(--cols);
1481
- display: flex;
1482
- flex-flow: row wrap;
1483
- gap: var(--gap, 1rlh);
1484
- max-width: 100%;
1485
- > *, > *:where(astro-island, astro-slot) > *, > :where(.contents) > * {
1486
- --one-column: var(--gap, 1rlh) * (var(--_cols, 1) - 1);
1487
- flex: var(--grow, var(--span, 1)) var(--span, 1) calc( (100% - var(--one-column)) / var(--_cols, 1) * var(--span, 1) + (var(--span, 1) - 1) * var(--gap, 1rlh) );
1488
- min-width: min(100%, var(--item-width, 3rem));
1489
- max-width: 100%;
1490
- }
1491
- }
1492
- .grid-flex-gallery {
1493
- display: flex;
1494
- flex-flow: row wrap;
1495
- gap: var(--gap, 1rlh);
1496
- max-width: 100%;
1497
- > * {
1498
- flex: 1 1 0px;
1499
- min-width: var(--item-width, 3rem);
1500
- }
1501
- }
1502
- .grid-simple {
1503
- display: grid;
1504
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1505
- width: 100%;
1506
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1507
- grid-column: var(--colstart) / var(--colend, span var(--span));
1508
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1509
- max-width: 100%;
1510
- }
1511
- grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
1512
- }
1513
- .grid-repeat-auto {
1514
- display: grid;
1515
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1516
- width: 100%;
1517
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1518
- grid-column: var(--colstart) / var(--colend, span var(--span));
1519
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1520
- max-width: 100%;
1521
- }
1522
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
1523
- }
1524
- .grid-fr-auto {
1525
- display: grid;
1526
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1527
- width: 100%;
1528
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1529
- grid-column: var(--colstart) / var(--colend, span var(--span));
1530
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1531
- max-width: 100%;
1532
- }
1533
- grid-template-columns: repeat(calc(var(--cols) - 1), minmax(0, 1fr)) minmax(0, var(--sbw, auto));
1534
- }
1535
- .grid-auto-fr {
1536
- display: grid;
1537
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1538
- width: 100%;
1539
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1540
- grid-column: var(--colstart) / var(--colend, span var(--span));
1541
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1542
- max-width: 100%;
1543
- }
1544
- grid-template-columns: minmax(0, var(--sbw, auto)) repeat( calc(var(--cols) - 1), minmax(0, 1fr) );
1545
- }
1546
- .grid-with-breakout {
1547
- display: grid;
1548
- grid-template-columns: minmax(0, var(--start-width, var(--side-width, 0.25fr))) minmax(0, var(--content-width, 1fr)) minmax(0, var(--end-width, var(--side-width, 0.25fr)));
1549
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1550
- > * {
1551
- grid-column: 2 / -2;
1552
- }
1553
- > .breakout-small {
1554
- grid-column: auto / span 1;
1555
- }
1556
- > .breakout-start-only, > .breakout-left-only {
1557
- grid-column: 1 / 2;
1558
- }
1559
- > .breakout-start, > .breakout-left {
1560
- grid-column: 1 / -2;
1561
- }
1562
- > .breakout-end, > .breakout-right {
1563
- grid-column: 2 / -1;
1564
- }
1565
- > .breakout-end-only, > .breakout-right-only {
1566
- grid-column: -1 / -2;
1567
- }
1568
- > .breakout-full {
1569
- grid-column: 1 / -1;
1570
- }
1571
- }
1572
- .grid-gallery {
1573
- display: grid;
1574
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1575
- width: 100%;
1576
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1577
- grid-column: var(--colstart) / var(--colend, span var(--span));
1578
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1579
- max-width: 100%;
1580
- }
1581
- grid-template-columns: repeat( var(--fit, auto-fill), minmax(min(var(--item-width, 3rem), 100%), 1fr) );
1582
- }
1583
- .grid-gallery-fit {
1584
- display: grid;
1585
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1586
- width: 100%;
1587
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1588
- grid-column: var(--colstart) / var(--colend, span var(--span));
1589
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1590
- max-width: 100%;
1591
- }
1592
- grid-template-columns: repeat( var(--fit, auto-fill), minmax(min(var(--item-width, 3rem), 100%), 1fr) );
1593
- --fit: auto-fit;
1594
- }
1595
- .grid-gallery-fill {
1596
- display: grid;
1597
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1598
- width: 100%;
1599
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1600
- grid-column: var(--colstart) / var(--colend, span var(--span));
1601
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1602
- max-width: 100%;
1603
- }
1604
- grid-template-columns: repeat( var(--fit, auto-fill), minmax(min(var(--item-width, 3rem), 100%), 1fr) );
1605
- --fit: auto-fill;
1606
- }
1607
- .grid-alternate {
1608
- &[data-start='left'] {
1609
- :where(& ~ .grid-alternate:nth-child(even)) .right-col {
1610
- order: -1;
1611
- }
1612
- }
1613
- &[data-start='right'] {
1614
- :where(&, & ~ .grid-alternate:nth-child(odd)) .right-col {
1615
- order: -1;
1616
- }
1617
- }
1618
- }
1619
- .dense {
1620
- grid-auto-flow: dense;
1621
- }
1622
- .dense-column {
1623
- grid-auto-columns: dense;
1624
- }
1625
- .dense-row {
1626
- grid-auto-rows: dense;
1627
- }
1628
- .masonry {
1629
- display: grid;
1630
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1631
- width: 100%;
1632
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1633
- grid-column: var(--colstart) / var(--colend, span var(--span));
1634
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1635
- max-width: 100%;
1636
- }
1637
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
1638
- grid-template-rows: masonry;
1639
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1640
- grid-column-end: span var(--span, 1);
1641
- align-self: start;
1642
- }
1643
- }
1644
- .masonry-gallery {
1645
- display: grid;
1646
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1647
- width: 100%;
1648
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1649
- grid-column: var(--colstart) / var(--colend, span var(--span));
1650
- grid-row: var(--rowstart) / var(--rowend, span var(--rowspan));
1651
- max-width: 100%;
1652
- }
1653
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
1654
- grid-template-rows: masonry;
1655
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1656
- grid-column-end: span var(--span, 1);
1657
- align-self: start;
1658
- }
1659
- grid-template-columns: repeat( auto-fill, minmax(min(var(--item-width, 3rem), 100%), 1fr) );
1660
- }
1661
- .subgrid {
1662
- grid-column: var(--colstart, auto) / span var(--span, 1);
1663
- > *:not([class*='subgrid']) {
1664
- grid-column-end: span var(--span, 1);
1665
- max-width: 100%;
1666
- }
1667
- display: grid;
1668
- gap: inherit;
1669
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
1670
- > *:not([class*='subgrid']) {
1671
- grid-row-end: span var(--rowspan, 1);
1672
- }
1673
- grid-template-columns: subgrid;
1674
- grid-template-rows: subgrid;
1675
- }
1676
- .subgrid-columns {
1677
- display: grid;
1678
- gap: inherit;
1679
- grid-column: var(--colstart, auto) / span var(--span, 1);
1680
- grid-template-columns: subgrid;
1681
- > *:not([class*='subgrid']) {
1682
- grid-column-end: span var(--span, 1);
1683
- max-width: 100%;
1684
- }
1685
- }
1686
- .subgrid-rows {
1687
- display: grid;
1688
- gap: inherit;
1689
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
1690
- grid-template-rows: subgrid;
1691
- > *:not([class*='subgrid']) {
1692
- grid-row-end: span var(--rowspan, 1);
1693
- }
1694
- }
1695
- }
1696
- @layer components {
1697
- .horizontal {
1698
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1699
- flex-grow: var(--grow);
1700
- }
1701
- display: flex;
1702
- flex-direction: row;
1703
- flex-wrap: nowrap;
1704
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1705
- > .spacer, > :where(.contents) > .spacer {
1706
- margin-inline-start: auto;
1707
- }
1708
- }
1709
- .vertical {
1710
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1711
- flex-grow: var(--grow);
1712
- }
1713
- display: flex;
1714
- flex-direction: column;
1715
- flex-wrap: nowrap;
1716
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1717
- > .spacer {
1718
- margin-block-start: auto;
1719
- }
1720
- }
1721
- .flow {
1722
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1723
- flex-grow: var(--grow);
1724
- }
1725
- display: flex;
1726
- flex-flow: row wrap;
1727
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
1728
- }
1729
- .stack {
1730
- position: relative;
1731
- display: grid;
1732
- grid-template-columns: minmax(0, 1fr);
1733
- padding: 0;
1734
- &::before, &::after, > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1735
- position: relative;
1736
- z-index: 1;
1737
- grid-column: 1 / span 1;
1738
- grid-row: 1 / span 1;
1739
- }
1740
- > .background {
1741
- overflow: hidden;
1742
- position: absolute;
1743
- inset: 0;
1744
- }
1745
- > .foreground {
1746
- position: relative;
1747
- z-index: 10;
1748
- }
1749
- }
1750
- .stack-interactive {
1751
- position: relative;
1752
- display: grid;
1753
- grid-template-columns: minmax(0, 1fr);
1754
- padding: 0;
1755
- &::before, &::after, > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
1756
- position: relative;
1757
- z-index: 1;
1758
- grid-column: 1 / span 1;
1759
- grid-row: 1 / span 1;
1760
- }
1761
- > .background {
1762
- overflow: hidden;
1763
- position: absolute;
1764
- inset: 0;
1765
- }
1766
- > .foreground {
1767
- position: relative;
1768
- z-index: 10;
1769
- }
1770
- > .overlay {
1771
- margin-block: var(--nudge-y, var(--nudge, 0));
1772
- margin-inline: var(--nudge-x, var(--nudge, 0));
1773
- :where([class*='stack']) > & {
1774
- display: grid;
1775
- > * {
1776
- grid-column: 1 / span 1;
1777
- grid-row: 1 / span 1;
1778
- }
1779
- }
1780
- :where([class*='relative']) > & {
1781
- position: absolute;
1782
- inset: 0;
1783
- }
1784
- opacity: 0;
1785
- }
1786
- &:hover, &:focus-within {
1787
- > .overlay {
1788
- opacity: 1;
1789
- }
1790
- }
1791
- }
1792
- .divider-x {
1793
- align-self: stretch;
1794
- display: flex;
1795
- align-items: center;
1796
- padding: 0 !important;
1797
- border-radius: 0 !important;
1798
- &:where(:not(:empty)) {
1799
- gap: var(--gap, 1rlh);
1800
- }
1801
- &::before, &::after {
1802
- content: '';
1803
- background-color: var(--border-color, currentColor);
1804
- }
1805
- flex-grow: 1;
1806
- &::before, &::after {
1807
- flex-grow: 1;
1808
- height: var(--border-width, 1px);
1809
- }
1810
- }
1811
- .divider-horizontal {
1812
- align-self: stretch;
1813
- display: flex;
1814
- align-items: center;
1815
- padding: 0 !important;
1816
- border-radius: 0 !important;
1817
- &:where(:not(:empty)) {
1818
- gap: var(--gap, 1rlh);
1819
- }
1820
- &::before, &::after {
1821
- content: '';
1822
- background-color: var(--border-color, currentColor);
1823
- }
1824
- flex-grow: 1;
1825
- &::before, &::after {
1826
- flex-grow: 1;
1827
- height: var(--border-width, 1px);
1828
- }
1829
- }
1830
- .divider-y {
1831
- align-self: stretch;
1832
- display: flex;
1833
- align-items: center;
1834
- padding: 0 !important;
1835
- border-radius: 0 !important;
1836
- &:where(:not(:empty)) {
1837
- gap: var(--gap, 1rlh);
1838
- }
1839
- &::before, &::after {
1840
- content: '';
1841
- background-color: var(--border-color, currentColor);
1842
- }
1843
- flex-grow: 0;
1844
- flex-direction: column;
1845
- &::before, &::after {
1846
- flex-grow: 1;
1847
- width: var(--border-width, 1px);
1848
- }
1849
- }
1850
- .divider-vertical {
1851
- align-self: stretch;
1852
- display: flex;
1853
- align-items: center;
1854
- padding: 0 !important;
1855
- border-radius: 0 !important;
1856
- &:where(:not(:empty)) {
1857
- gap: var(--gap, 1rlh);
1858
- }
1859
- &::before, &::after {
1860
- content: '';
1861
- background-color: var(--border-color, currentColor);
1862
- }
1863
- flex-grow: 0;
1864
- flex-direction: column;
1865
- &::before, &::after {
1866
- flex-grow: 1;
1867
- width: var(--border-width, 1px);
1868
- }
1869
- }
1870
- .divider-between-x {
1871
- flex-direction: column;
1872
- row-gap: 0;
1873
- > * + *, > * + *:where(astro-island, astro-slot):not(:first-of-type) > * {
1874
- border-top-width: var(--border-width, 1px);
1875
- border-color: var(--_bc, var(--border-color));
1876
- }
1877
- }
1878
- .divider-between-horizontal {
1879
- flex-direction: column;
1880
- row-gap: 0;
1881
- > * + *, > * + *:where(astro-island, astro-slot):not(:first-of-type) > * {
1882
- border-top-width: var(--border-width, 1px);
1883
- border-color: var(--_bc, var(--border-color));
1884
- }
1885
- }
1886
- .divider-between-y {
1887
- column-gap: 0;
1888
- > * + *, > * + *:where(astro-island, astro-slot) > * {
1889
- border-left-width: var(--border-width, 1px);
1890
- border-color: var(--_bc, var(--border-color));
1891
- }
1892
- }
1893
- .divider-between-vertical {
1894
- column-gap: 0;
1895
- > * + *, > * + *:where(astro-island, astro-slot) > * {
1896
- border-left-width: var(--border-width, 1px);
1897
- border-color: var(--_bc, var(--border-color));
1898
- }
1899
- }
1900
- .new-stacking-context {
1901
- transform: translateZ(0);
1902
- }
1903
- .scrollable {
1904
- display: flex;
1905
- gap: var(--gap, 1rlh);
1906
- > :where(*) {
1907
- flex-grow: 0;
1908
- flex-shrink: 0;
1909
- scroll-snap-align: var(--snap-align);
1910
- scroll-margin: var(--scroll-margin);
1911
- }
1912
- }
1913
- .scrollable-x {
1914
- display: flex;
1915
- gap: var(--gap, 1rlh);
1916
- > :where(*) {
1917
- flex-grow: 0;
1918
- flex-shrink: 0;
1919
- scroll-snap-align: var(--snap-align);
1920
- scroll-margin: var(--scroll-margin);
1921
- }
1922
- overflow: auto hidden;
1923
- flex-direction: row;
1924
- max-width: 100%;
1925
- scroll-snap-type: x var(--snap-type);
1926
- }
1927
- .scrollable-horizontal {
1928
- display: flex;
1929
- gap: var(--gap, 1rlh);
1930
- > :where(*) {
1931
- flex-grow: 0;
1932
- flex-shrink: 0;
1933
- scroll-snap-align: var(--snap-align);
1934
- scroll-margin: var(--scroll-margin);
1935
- }
1936
- overflow: auto hidden;
1937
- flex-direction: row;
1938
- max-width: 100%;
1939
- scroll-snap-type: x var(--snap-type);
1940
- }
1941
- .scrollable-y {
1942
- display: flex;
1943
- gap: var(--gap, 1rlh);
1944
- > :where(*) {
1945
- flex-grow: 0;
1946
- flex-shrink: 0;
1947
- scroll-snap-align: var(--snap-align);
1948
- scroll-margin: var(--scroll-margin);
1949
- }
1950
- overflow: hidden auto;
1951
- flex-direction: column;
1952
- scroll-snap-type: y var(--snap-type);
1953
- }
1954
- .scrollable-vertical {
1955
- display: flex;
1956
- gap: var(--gap, 1rlh);
1957
- > :where(*) {
1958
- flex-grow: 0;
1959
- flex-shrink: 0;
1960
- scroll-snap-align: var(--snap-align);
1961
- scroll-margin: var(--scroll-margin);
1962
- }
1963
- overflow: hidden auto;
1964
- flex-direction: column;
1965
- scroll-snap-type: y var(--snap-type);
1966
- }
1967
- .scrollable-nosnap {
1968
- --snap-type: none;
1969
- }
1970
- }
1971
- @layer components {
1972
- .nudge {
1973
- margin-block: var(--nudge-y, var(--nudge, 0));
1974
- margin-inline: var(--nudge-x, var(--nudge, 0));
1975
- }
1976
- .nudge-top {
1977
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
1978
- }
1979
- .nudge-topleft {
1980
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
1981
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
1982
- }
1983
- .nudge-topright {
1984
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
1985
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
1986
- }
1987
- .nudge-topfull {
1988
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
1989
- margin-inline: calc(var(--nudge-x, var(--nudge)));
1990
- }
1991
- .nudge-bottom {
1992
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
1993
- }
1994
- .nudge-bottomleft {
1995
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
1996
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
1997
- }
1998
- .nudge-bottomright {
1999
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2000
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2001
- }
2002
- .nudge-bottomfull {
2003
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2004
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2005
- }
2006
- .nudge-left {
2007
- position: relative;
2008
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2009
- }
2010
- .nudge-leftfull {
2011
- margin-block: var(--nudge-y, var(--nudge, 0));
2012
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2013
- }
2014
- .nudge-right {
2015
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2016
- }
2017
- .nudge-rightfull {
2018
- margin-block: var(--nudge-y, var(--nudge, 0));
2019
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2020
- }
2021
- .nudge-overlay {
2022
- margin-block: var(--nudge-y, var(--nudge, 0));
2023
- margin-inline: var(--nudge-x, var(--nudge, 0));
2024
- }
2025
- .inner-radius {
2026
- border-radius: calc(var(--radius) - var(--nudge));
2027
- }
2028
- .edge-top {
2029
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2030
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2031
- --tx: 0%;
2032
- --ty: -50%;
2033
- --_tx: var(--tx);
2034
- --_ty: var(--ty);
2035
- :where(.stack) & {
2036
- place-self: start center;
2037
- box-sizing: content-box;
2038
- }
2039
- :where(.relative) & {
2040
- position: absolute;
2041
- inset-block-start: 0;
2042
- inset-inline: 0;
2043
- width: fit-content;
2044
- margin-inline: auto;
2045
- }
2046
- }
2047
- .edge-topleft {
2048
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2049
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2050
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2051
- --tx: 0%;
2052
- --ty: -50%;
2053
- --_ty: var(--ty);
2054
- --tx: -50%;
2055
- --_tx: var(--tx);
2056
- :where(.stack) & {
2057
- place-self: start start;
2058
- box-sizing: content-box;
2059
- }
2060
- :where(.relative) & {
2061
- position: absolute;
2062
- inset-block-start: 0;
2063
- inset-inline-start: 0;
2064
- }
2065
- }
2066
- .edge-topright {
2067
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2068
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2069
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2070
- --tx: 0%;
2071
- --ty: -50%;
2072
- --_tx: var(--tx);
2073
- --_ty: var(--ty);
2074
- --tx: -50%;
2075
- --_tx: calc(var(--tx) * -1);
2076
- :where(.stack) & {
2077
- place-self: start end;
2078
- box-sizing: content-box;
2079
- }
2080
- :where(.relative) & {
2081
- position: absolute;
2082
- inset-block-start: 0;
2083
- inset-inline-end: 0;
2084
- }
2085
- }
2086
- .edge-topfull {
2087
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2088
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2089
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2090
- --tx: 0%;
2091
- --ty: -50%;
2092
- --_tx: var(--tx);
2093
- --_ty: var(--ty);
2094
- :where(.stack) & {
2095
- place-self: start stretch;
2096
- box-sizing: content-box;
2097
- }
2098
- :where(.relative) & {
2099
- position: absolute;
2100
- inset-block-start: 0;
2101
- inset-inline: 0;
2102
- }
2103
- }
2104
- .edge-bottom {
2105
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2106
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2107
- --tx: 0%;
2108
- --ty: -50%;
2109
- --_tx: var(--tx);
2110
- --_ty: calc(var(--ty) * -1);
2111
- :where(.stack) & {
2112
- place-self: end center;
2113
- box-sizing: content-box;
2114
- }
2115
- :where(.relative) & {
2116
- position: absolute;
2117
- inset-block-end: 0;
2118
- inset-inline: 0;
2119
- width: fit-content;
2120
- margin-inline: auto;
2121
- }
2122
- }
2123
- .edge-bottomleft {
2124
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2125
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2126
- --tx: 0%;
2127
- --ty: -50%;
2128
- --_ty: calc(var(--ty) * -1);
2129
- --tx: -50%;
2130
- --_tx: var(--tx);
2131
- :where(.stack) & {
2132
- place-self: end start;
2133
- box-sizing: content-box;
2134
- }
2135
- :where(.relative) & {
2136
- position: absolute;
2137
- inset-block-end: 0;
2138
- inset-inline-start: 0;
2139
- }
2140
- }
2141
- .edge-bottomright {
2142
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2143
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2144
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2145
- --tx: 0%;
2146
- --ty: -50%;
2147
- --_tx: var(--tx);
2148
- --_ty: calc(var(--ty) * -1);
2149
- --tx: -50%;
2150
- --_tx: calc(var(--tx) * -1);
2151
- :where(.stack) & {
2152
- place-self: end end;
2153
- box-sizing: content-box;
2154
- }
2155
- :where(.relative) & {
2156
- position: absolute;
2157
- inset-block-end: 0;
2158
- inset-inline-end: 0;
2159
- }
2160
- }
2161
- .edge-bottomfull {
2162
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2163
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2164
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2165
- --tx: 0%;
2166
- --ty: -50%;
2167
- --_tx: var(--tx);
2168
- --_ty: calc(var(--ty) * -1);
2169
- :where(.stack) & {
2170
- place-self: end stretch;
2171
- box-sizing: content-box;
2172
- }
2173
- :where(.relative) & {
2174
- position: absolute;
2175
- inset-block-end: 0;
2176
- inset-inline: 0;
2177
- }
2178
- }
2179
- .edge-left {
2180
- position: relative;
2181
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2182
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2183
- --tx: -50%;
2184
- --ty: 0%;
2185
- --_tx: var(--tx);
2186
- --_ty: var(--ty);
2187
- :where(.stack) & {
2188
- place-self: center start;
2189
- box-sizing: content-box;
2190
- }
2191
- :where(.relative) & {
2192
- position: absolute;
2193
- inset-block: 0;
2194
- inset-inline-start: 0;
2195
- height: fit-content;
2196
- margin-block: auto;
2197
- }
2198
- }
2199
- .edge-lefttop {
2200
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2201
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2202
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2203
- --tx: -50%;
2204
- --ty: 0%;
2205
- --_tx: var(--tx);
2206
- --ty: -50%;
2207
- --_ty: var(--ty);
2208
- :where(.stack) & {
2209
- place-self: start start;
2210
- box-sizing: content-box;
2211
- }
2212
- :where(.relative) & {
2213
- position: absolute;
2214
- inset-block-start: 0;
2215
- inset-inline-start: 0;
2216
- }
2217
- }
2218
- .edge-leftbottom {
2219
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2220
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2221
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2222
- --tx: -50%;
2223
- --ty: 0%;
2224
- --_tx: var(--tx);
2225
- --_ty: var(--ty);
2226
- --ty: -50%;
2227
- --_ty: calc(var(--ty) * -1);
2228
- :where(.stack) & {
2229
- place-self: end start;
2230
- box-sizing: content-box;
2231
- }
2232
- :where(.relative) & {
2233
- position: absolute;
2234
- inset-block-end: 0;
2235
- inset-inline-start: 0;
2236
- }
2237
- }
2238
- .edge-leftfull {
2239
- margin-block: var(--nudge-y, var(--nudge, 0));
2240
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2241
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2242
- --tx: -50%;
2243
- --ty: 0%;
2244
- --_tx: var(--tx);
2245
- --_ty: var(--ty);
2246
- :where(.stack) & {
2247
- place-self: stretch start;
2248
- box-sizing: content-box;
2249
- }
2250
- :where(.relative) & {
2251
- position: absolute;
2252
- inset-block: 0;
2253
- inset-inline-start: 0;
2254
- }
2255
- }
2256
- .edge-right {
2257
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2258
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2259
- --tx: -50%;
2260
- --ty: 0%;
2261
- --_tx: calc(var(--tx) * -1);
2262
- --_ty: calc(var(--ty));
2263
- :where(.stack) & {
2264
- place-self: center end;
2265
- box-sizing: content-box;
2266
- }
2267
- :where(.relative) & {
2268
- position: absolute;
2269
- inset-block: 0;
2270
- inset-inline-end: 0;
2271
- height: fit-content;
2272
- margin-block: auto;
2273
- }
2274
- }
2275
- .edge-righttop {
2276
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2277
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2278
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2279
- --tx: -50%;
2280
- --ty: 0%;
2281
- --_tx: calc(var(--tx) * -1);
2282
- --_ty: calc(var(--ty));
2283
- --ty: -50%;
2284
- --_ty: var(--ty);
2285
- :where(.stack) & {
2286
- place-self: start end;
2287
- box-sizing: content-box;
2288
- }
2289
- :where(.relative) & {
2290
- position: absolute;
2291
- inset-block-start: 0;
2292
- inset-inline-end: 0;
2293
- }
2294
- }
2295
- .edge-rightbottom {
2296
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2297
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2298
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2299
- --tx: -50%;
2300
- --ty: 0%;
2301
- --_tx: calc(var(--tx) * -1);
2302
- --_ty: calc(var(--ty));
2303
- --ty: -50%;
2304
- --_ty: calc(var(--ty) * -1);
2305
- :where(.stack) & {
2306
- place-self: end end;
2307
- box-sizing: content-box;
2308
- }
2309
- :where(.relative) & {
2310
- position: absolute;
2311
- inset-block-end: 0;
2312
- inset-inline-end: 0;
2313
- }
2314
- }
2315
- .edge-rightfull {
2316
- margin-block: var(--nudge-y, var(--nudge, 0));
2317
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2318
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2319
- --tx: -50%;
2320
- --ty: 0%;
2321
- --_tx: calc(var(--tx) * -1);
2322
- --_ty: calc(var(--ty));
2323
- :where(.stack) & {
2324
- place-self: stretch end;
2325
- box-sizing: content-box;
2326
- }
2327
- :where(.relative) & {
2328
- position: absolute;
2329
- inset-block: 0;
2330
- inset-inline-end: 0;
2331
- }
2332
- }
2333
- .edge-topleft-start {
2334
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2335
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2336
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2337
- --tx: -50%;
2338
- :where(.stack) & {
2339
- place-self: start start;
2340
- box-sizing: content-box;
2341
- }
2342
- :where(.relative) & {
2343
- position: absolute;
2344
- inset-block-start: 0;
2345
- inset-inline-start: 0;
2346
- }
2347
- --tx: 0%;
2348
- --ty: -50%;
2349
- --_ty: var(--ty);
2350
- --tx: -100%;
2351
- --_tx: var(--tx);
2352
- }
2353
- .edge-topleft-end {
2354
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2355
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2356
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2357
- --tx: -50%;
2358
- :where(.stack) & {
2359
- place-self: start start;
2360
- box-sizing: content-box;
2361
- }
2362
- :where(.relative) & {
2363
- position: absolute;
2364
- inset-block-start: 0;
2365
- inset-inline-start: 0;
2366
- }
2367
- --ty: -50%;
2368
- --_ty: var(--ty);
2369
- --tx: 0%;
2370
- --_tx: var(--tx);
2371
- }
2372
- .edge-topright-start {
2373
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2374
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2375
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2376
- --tx: -50%;
2377
- :where(.stack) & {
2378
- place-self: start end;
2379
- box-sizing: content-box;
2380
- }
2381
- :where(.relative) & {
2382
- position: absolute;
2383
- inset-block-start: 0;
2384
- inset-inline-end: 0;
2385
- }
2386
- --ty: -50%;
2387
- --_tx: var(--tx);
2388
- --_ty: var(--ty);
2389
- --tx: 0%;
2390
- --_tx: calc(var(--tx) * -1);
2391
- }
2392
- .edge-topright-end {
2393
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2394
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2395
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2396
- --tx: -50%;
2397
- :where(.stack) & {
2398
- place-self: start end;
2399
- box-sizing: content-box;
2400
- }
2401
- :where(.relative) & {
2402
- position: absolute;
2403
- inset-block-start: 0;
2404
- inset-inline-end: 0;
2405
- }
2406
- --tx: 0%;
2407
- --ty: -50%;
2408
- --_tx: var(--tx);
2409
- --_ty: var(--ty);
2410
- --tx: -100%;
2411
- --_tx: calc(var(--tx) * -1);
2412
- }
2413
- .edge-bottomleft-start {
2414
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2415
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2416
- --tx: -50%;
2417
- :where(.stack) & {
2418
- place-self: end start;
2419
- box-sizing: content-box;
2420
- }
2421
- :where(.relative) & {
2422
- position: absolute;
2423
- inset-block-end: 0;
2424
- inset-inline-start: 0;
2425
- }
2426
- --tx: 0%;
2427
- --ty: -50%;
2428
- --_ty: calc(var(--ty) * -1);
2429
- --tx: -100%;
2430
- --_tx: var(--tx);
2431
- }
2432
- .edge-bottomleft-end {
2433
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2434
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2435
- --tx: -50%;
2436
- :where(.stack) & {
2437
- place-self: end start;
2438
- box-sizing: content-box;
2439
- }
2440
- :where(.relative) & {
2441
- position: absolute;
2442
- inset-block-end: 0;
2443
- inset-inline-start: 0;
2444
- }
2445
- --tx: 0%;
2446
- --ty: -50%;
2447
- --_ty: calc(var(--ty) * -1);
2448
- --tx: -0%;
2449
- --_tx: var(--tx);
2450
- }
2451
- .edge-bottomright-start {
2452
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2453
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2454
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2455
- --tx: -50%;
2456
- :where(.stack) & {
2457
- place-self: end end;
2458
- box-sizing: content-box;
2459
- }
2460
- :where(.relative) & {
2461
- position: absolute;
2462
- inset-block-end: 0;
2463
- inset-inline-end: 0;
2464
- }
2465
- --tx: 0%;
2466
- --ty: -50%;
2467
- --_tx: var(--tx);
2468
- --_ty: calc(var(--ty) * -1);
2469
- --tx: -0%;
2470
- --_tx: calc(var(--tx) * -1);
2471
- }
2472
- .edge-bottomright-end {
2473
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2474
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2475
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2476
- --tx: -50%;
2477
- :where(.stack) & {
2478
- place-self: end end;
2479
- box-sizing: content-box;
2480
- }
2481
- :where(.relative) & {
2482
- position: absolute;
2483
- inset-block-end: 0;
2484
- inset-inline-end: 0;
2485
- }
2486
- --tx: 0%;
2487
- --ty: -50%;
2488
- --_tx: var(--tx);
2489
- --_ty: calc(var(--ty) * -1);
2490
- --tx: -100%;
2491
- --_tx: calc(var(--tx) * -1);
2492
- }
2493
- .edge-lefttop-start {
2494
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2495
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2496
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2497
- --ty: -50%;
2498
- :where(.stack) & {
2499
- place-self: start start;
2500
- box-sizing: content-box;
2501
- }
2502
- :where(.relative) & {
2503
- position: absolute;
2504
- inset-block-start: 0;
2505
- inset-inline-start: 0;
2506
- }
2507
- --tx: -50%;
2508
- --ty: 0%;
2509
- --_tx: var(--tx);
2510
- --ty: -100%;
2511
- --_ty: var(--ty);
2512
- }
2513
- .edge-lefttop-end {
2514
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2515
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2516
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2517
- --ty: -50%;
2518
- :where(.stack) & {
2519
- place-self: start start;
2520
- box-sizing: content-box;
2521
- }
2522
- :where(.relative) & {
2523
- position: absolute;
2524
- inset-block-start: 0;
2525
- inset-inline-start: 0;
2526
- }
2527
- --tx: -50%;
2528
- --ty: 0%;
2529
- --_tx: var(--tx);
2530
- --ty: -0%;
2531
- --_ty: var(--ty);
2532
- }
2533
- .edge-leftbottom-start {
2534
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2535
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2536
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2537
- --ty: -50%;
2538
- :where(.stack) & {
2539
- place-self: end start;
2540
- box-sizing: content-box;
2541
- }
2542
- :where(.relative) & {
2543
- position: absolute;
2544
- inset-block-end: 0;
2545
- inset-inline-start: 0;
2546
- }
2547
- --tx: -50%;
2548
- --ty: 0%;
2549
- --_tx: var(--tx);
2550
- --_ty: var(--ty);
2551
- --ty: -0%;
2552
- --_ty: calc(var(--ty) * -1);
2553
- }
2554
- .edge-leftbottom-end {
2555
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2556
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2557
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2558
- --ty: -50%;
2559
- :where(.stack) & {
2560
- place-self: end start;
2561
- box-sizing: content-box;
2562
- }
2563
- :where(.relative) & {
2564
- position: absolute;
2565
- inset-block-end: 0;
2566
- inset-inline-start: 0;
2567
- }
2568
- --tx: -50%;
2569
- --ty: 0%;
2570
- --_tx: var(--tx);
2571
- --_ty: var(--ty);
2572
- --ty: -100%;
2573
- --_ty: calc(var(--ty) * -1);
2574
- }
2575
- .edge-righttop-start {
2576
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2577
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2578
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2579
- --ty: -50%;
2580
- :where(.stack) & {
2581
- place-self: start end;
2582
- box-sizing: content-box;
2583
- }
2584
- :where(.relative) & {
2585
- position: absolute;
2586
- inset-block-start: 0;
2587
- inset-inline-end: 0;
2588
- }
2589
- --tx: -50%;
2590
- --ty: 0%;
2591
- --_tx: calc(var(--tx) * -1);
2592
- --_ty: calc(var(--ty));
2593
- --ty: -100%;
2594
- --_ty: var(--ty);
2595
- }
2596
- .edge-righttop-end {
2597
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2598
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2599
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2600
- --ty: -50%;
2601
- :where(.stack) & {
2602
- place-self: start end;
2603
- box-sizing: content-box;
2604
- }
2605
- :where(.relative) & {
2606
- position: absolute;
2607
- inset-block-start: 0;
2608
- inset-inline-end: 0;
2609
- }
2610
- --tx: -50%;
2611
- --ty: 0%;
2612
- --_tx: calc(var(--tx) * -1);
2613
- --_ty: calc(var(--ty));
2614
- --ty: -0%;
2615
- --_ty: var(--ty);
2616
- }
2617
- .edge-rightbottom-start {
2618
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2619
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2620
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2621
- --ty: -50%;
2622
- :where(.stack) & {
2623
- place-self: end end;
2624
- box-sizing: content-box;
2625
- }
2626
- :where(.relative) & {
2627
- position: absolute;
2628
- inset-block-end: 0;
2629
- inset-inline-end: 0;
2630
- }
2631
- --tx: -50%;
2632
- --ty: 0%;
2633
- --_tx: calc(var(--tx) * -1);
2634
- --_ty: calc(var(--ty));
2635
- --ty: -0%;
2636
- --_ty: calc(var(--ty) * -1);
2637
- }
2638
- .edge-rightbottom-end {
2639
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2640
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2641
- transform: translateX(var(--_tx, 0%)) translateY(var(--_ty, 0%));
2642
- --ty: -50%;
2643
- :where(.stack) & {
2644
- place-self: end end;
2645
- box-sizing: content-box;
2646
- }
2647
- :where(.relative) & {
2648
- position: absolute;
2649
- inset-block-end: 0;
2650
- inset-inline-end: 0;
2651
- }
2652
- --tx: -50%;
2653
- --ty: 0%;
2654
- --_tx: calc(var(--tx) * -1);
2655
- --_ty: calc(var(--ty));
2656
- --ty: -100%;
2657
- --_ty: calc(var(--ty) * -1);
2658
- }
2659
- .fixed-top {
2660
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2661
- position: fixed;
2662
- inset-block-start: 0;
2663
- inset-inline: 0;
2664
- width: fit-content;
2665
- margin-inline: auto;
2666
- }
2667
- .fixed-topleft {
2668
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2669
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2670
- position: fixed;
2671
- inset-block-start: 0;
2672
- inset-inline-start: 0;
2673
- }
2674
- .fixed-topright {
2675
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2676
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2677
- position: fixed;
2678
- inset-block-start: 0;
2679
- inset-inline-end: 0;
2680
- }
2681
- .fixed-topfull {
2682
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2683
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2684
- position: fixed;
2685
- inset-block-start: 0;
2686
- inset-inline: 0;
2687
- width: 100%;
2688
- max-width: 100%;
2689
- }
2690
- .fixed-bottom {
2691
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2692
- position: fixed;
2693
- inset-block-end: 0;
2694
- inset-inline: 0;
2695
- width: fit-content;
2696
- margin-inline: auto;
2697
- }
2698
- .fixed-bottomleft {
2699
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2700
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2701
- position: fixed;
2702
- inset-block-end: 0;
2703
- inset-inline-start: 0;
2704
- }
2705
- .fixed-bottomright {
2706
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2707
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2708
- position: fixed;
2709
- inset-block-end: 0;
2710
- inset-inline-end: 0;
2711
- }
2712
- .fixed-bottomfull {
2713
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2714
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2715
- position: fixed;
2716
- inset-block-end: 0;
2717
- inset-inline: 0;
2718
- width: 100%;
2719
- max-width: 100%;
2720
- }
2721
- .fixed-left {
2722
- position: relative;
2723
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2724
- position: fixed;
2725
- inset-block: 0;
2726
- inset-inline-start: 0;
2727
- height: fit-content;
2728
- margin-block: auto;
2729
- }
2730
- .fixed-leftfull {
2731
- margin-block: var(--nudge-y, var(--nudge, 0));
2732
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2733
- position: fixed;
2734
- inset-block: 0;
2735
- inset-inline-start: 0;
2736
- height: 100%;
2737
- max-height: 100%;
2738
- }
2739
- .fixed-right {
2740
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2741
- position: fixed;
2742
- inset-block: 0;
2743
- inset-inline-end: 0;
2744
- height: fit-content;
2745
- margin-block: auto;
2746
- }
2747
- .fixed-rightfull {
2748
- margin-block: var(--nudge-y, var(--nudge, 0));
2749
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2750
- position: fixed;
2751
- inset-block: 0;
2752
- inset-inline-end: 0;
2753
- height: 100%;
2754
- max-height: 100%;
2755
- }
2756
- .fixed-center {
2757
- position: fixed;
2758
- inset: 0;
2759
- width: fit-content;
2760
- height: fit-content;
2761
- margin: auto;
2762
- }
2763
- .fixed-overlay {
2764
- margin-block: var(--nudge-y, var(--nudge, 0));
2765
- margin-inline: var(--nudge-x, var(--nudge, 0));
2766
- position: fixed;
2767
- inset-block: var(--nudge-y, var(--nudge, 0));
2768
- inset-inline: var(--nudge-x, var(--nudge, 0));
2769
- display: grid;
2770
- place-items: center;
2771
- }
2772
- .pos-top {
2773
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2774
- :where([class*='stack']) > & {
2775
- place-self: start center;
2776
- }
2777
- :where([class*='relative']) > & {
2778
- position: absolute;
2779
- inset-block-start: 0;
2780
- inset-inline: 0;
2781
- width: fit-content;
2782
- margin-inline: auto;
2783
- }
2784
- }
2785
- .pos-topleft {
2786
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2787
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2788
- :where([class*='stack']) > & {
2789
- place-self: start start;
2790
- }
2791
- :where([class*='relative']) > & {
2792
- position: absolute;
2793
- inset-block-start: 0;
2794
- inset-inline-start: 0;
2795
- }
2796
- }
2797
- .pos-topright {
2798
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2799
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2800
- :where([class*='stack']) > & {
2801
- place-self: start end;
2802
- }
2803
- :where([class*='relative']) > & {
2804
- position: absolute;
2805
- inset-block-start: 0;
2806
- inset-inline-end: 0;
2807
- }
2808
- }
2809
- .pos-topfull {
2810
- margin-block-start: calc(var(--nudge-y, var(--nudge)));
2811
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2812
- :where([class*='stack']) > & {
2813
- place-self: start stretch;
2814
- }
2815
- :where([class*='relative']) > & {
2816
- position: absolute;
2817
- inset-block-start: 0;
2818
- inset-inline: 0;
2819
- }
2820
- }
2821
- .pos-bottom {
2822
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2823
- :where([class*='stack']) > & {
2824
- place-self: end center;
2825
- }
2826
- :where([class*='relative']) > & {
2827
- position: absolute;
2828
- inset-block-end: 0;
2829
- inset-inline: 0;
2830
- width: fit-content;
2831
- margin-inline: auto;
2832
- }
2833
- }
2834
- .pos-bottomleft {
2835
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2836
- margin-inline-start: calc(var(--nudge-x, var(--nudge)));
2837
- :where([class*='stack']) > & {
2838
- place-self: end start;
2839
- }
2840
- :where([class*='relative']) > & {
2841
- position: absolute;
2842
- inset-block-end: 0;
2843
- inset-inline-start: 0;
2844
- }
2845
- }
2846
- .pos-bottomright {
2847
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2848
- margin-inline-end: calc(var(--nudge-x, var(--nudge)));
2849
- :where([class*='stack']) > & {
2850
- place-self: end end;
2851
- }
2852
- :where([class*='relative']) > & {
2853
- position: absolute;
2854
- inset-block-end: 0;
2855
- inset-inline-end: 0;
2856
- }
2857
- }
2858
- .pos-bottomfull {
2859
- margin-block-end: calc(var(--nudge-y, var(--nudge)));
2860
- margin-inline: calc(var(--nudge-x, var(--nudge)));
2861
- :where([class*='stack']) > & {
2862
- place-self: end stretch;
2863
- }
2864
- :where([class*='relative']) > & {
2865
- position: absolute;
2866
- inset-block-end: 0;
2867
- inset-inline: 0;
2868
- }
2869
- }
2870
- .pos-left {
2871
- position: relative;
2872
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2873
- :where([class*='stack']) > & {
2874
- place-self: center start;
2875
- }
2876
- :where([class*='relative']) > & {
2877
- position: absolute;
2878
- inset-block: 0;
2879
- inset-inline-start: 0;
2880
- height: fit-content;
2881
- margin-block: auto;
2882
- }
2883
- }
2884
- .pos-leftfull {
2885
- margin-block: var(--nudge-y, var(--nudge, 0));
2886
- margin-inline-start: var(--nudge-x, var(--nudge, 0));
2887
- :where([class*='stack']) > & {
2888
- place-self: stretch start;
2889
- }
2890
- :where([class*='relative']) > & {
2891
- position: absolute;
2892
- inset-block: 0;
2893
- inset-inline-start: 0;
2894
- }
2895
- }
2896
- .pos-right {
2897
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2898
- :where([class*='stack']) > & {
2899
- place-self: center end;
2900
- }
2901
- :where([class*='relative']) > & {
2902
- position: absolute;
2903
- inset-block: 0;
2904
- inset-inline-end: 0;
2905
- height: fit-content;
2906
- margin-block: auto;
2907
- }
2908
- }
2909
- .pos-rightfull {
2910
- margin-block: var(--nudge-y, var(--nudge, 0));
2911
- margin-inline-end: var(--nudge-x, var(--nudge, 0));
2912
- :where([class*='stack']) > & {
2913
- place-self: stretch end;
2914
- }
2915
- :where([class*='relative']) > & {
2916
- position: absolute;
2917
- inset-block: 0;
2918
- inset-inline-end: 0;
2919
- }
2920
- }
2921
- .pos-center {
2922
- :where([class*='stack']) > & {
2923
- place-self: center center;
2924
- }
2925
- :where([class*='relative']) > & {
2926
- position: absolute;
2927
- top: 50%;
2928
- left: 50%;
2929
- transform: translate(-50%, -50%);
2930
- }
2931
- }
2932
- .pos-overlay {
2933
- margin-block: var(--nudge-y, var(--nudge, 0));
2934
- margin-inline: var(--nudge-x, var(--nudge, 0));
2935
- :where([class*='stack']) > & {
2936
- display: grid;
2937
- > * {
2938
- grid-column: 1 / span 1;
2939
- grid-row: 1 / span 1;
2940
- }
2941
- }
2942
- :where([class*='relative']) > & {
2943
- position: absolute;
2944
- inset: 0;
2945
- }
2946
- }
2947
- .sticky {
2948
- top: 0;
2949
- z-index: var(--z-index, 15);
2950
- :where([class*='grid'] > &) {
2951
- align-self: start;
2952
- }
2953
- position: sticky;
2954
- }
2955
- }
2956
- @layer utilities {
2957
- .pointer-events-none {
2958
- pointer-events: none;
2959
- }
2960
- .container {
2961
- container-type: inline-size;
2962
- }
2963
- .contents {
2964
- display: contents;
2965
- }
2966
- .grow {
2967
- flex-grow: 1;
2968
- }
2969
- .grow-0 {
2970
- flex-grow: 0;
2971
- }
2972
- .shrink {
2973
- flex-shrink: 1;
2974
- }
2975
- .shrink-0 {
2976
- flex-shrink: 0;
2977
- }
2978
- .justify-start {
2979
- justify-content: start;
2980
- }
2981
- .justify-center {
2982
- justify-content: center;
2983
- }
2984
- .justify-end {
2985
- justify-content: end;
2986
- }
2987
- .justify-between {
2988
- justify-content: space-between;
2989
- }
2990
- .justify-around {
2991
- justify-content: space-around;
2992
- }
2993
- .justify-evenly {
2994
- justify-content: space-evenly;
2995
- }
2996
- .justify-items-start {
2997
- justify-items: start;
2998
- }
2999
- .justify-items-center {
3000
- justify-items: center;
3001
- }
3002
- .justify-items-end {
3003
- justify-items: end;
3004
- }
3005
- .justify-items-stretch {
3006
- justify-items: stretch;
3007
- }
3008
- .justify-self-start {
3009
- justify-self: start;
3010
- }
3011
- .justify-self-center {
3012
- justify-self: center;
3013
- }
3014
- .justify-self-end {
3015
- justify-self: end;
3016
- }
3017
- .justify-self-stretch {
3018
- justify-self: stretch;
3019
- }
3020
- .content-start {
3021
- align-content: start;
3022
- }
3023
- .content-center {
3024
- align-content: center;
3025
- }
3026
- .content-end {
3027
- align-content: end;
3028
- }
3029
- .content-between {
3030
- align-content: space-between;
3031
- }
3032
- .content-around {
3033
- align-content: space-around;
3034
- }
3035
- .content-stretch {
3036
- align-content: stretch;
3037
- }
3038
- .content-baseline {
3039
- align-content: baseline;
3040
- }
3041
- .items-start {
3042
- align-items: start;
3043
- }
3044
- .items-center {
3045
- align-items: center;
3046
- }
3047
- .items-end {
3048
- align-items: end;
3049
- }
3050
- .items-stretch {
3051
- align-items: stretch;
3052
- }
3053
- .items-baseline {
3054
- align-items: baseline;
3055
- }
3056
- .self-start {
3057
- align-self: start;
3058
- }
3059
- .self-center {
3060
- align-self: center;
3061
- }
3062
- .self-end {
3063
- align-self: end;
3064
- }
3065
- .self-stretch {
3066
- align-self: stretch;
3067
- }
3068
- .self-baseline {
3069
- align-self: baseline;
3070
- }
3071
- }
3072
- @property --tw-border-style {
3073
- syntax: "*";
3074
- inherits: false;
3075
- initial-value: solid;
3076
- }
3077
- @layer properties {
3078
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
3079
- :root, :host {
3080
- --font-weight: 400;
3081
- --font-slant: 0;
3082
- --font-opsz: 25;
3083
- }
3084
- *, ::before, ::after, ::backdrop {
3085
- --tw-border-style: solid;
3086
- --cols: 1;
3087
- --colstart: auto;
3088
- --span: 1;
3089
- --rowspan: 1;
3090
- --rowstart: auto;
3091
- --gradient-angle: to bottom;
3092
- }
3093
- }
3094
- }