@splendidlabz/styles 4.0.1 → 4.1.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.
@@ -1,1278 +0,0 @@
1
- /*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
2
- @layer theme, base, components, utilities @import '../src/reset.css' layer(reset);
3
- @layer utilities {
4
- .sticky {
5
- position: sticky;
6
- top: 0;
7
- z-index: var(--z-index, 15);
8
- :where([class*='grid'] > &) {
9
- align-self: start;
10
- }
11
- }
12
- .sticky {
13
- position: sticky;
14
- }
15
- .masonry {
16
- --span: 1;
17
- display: grid;
18
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
19
- max-width: 100%;
20
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
21
- --cols: 1;
22
- grid-column: var(--colstart, auto) / span var(--span, 1);
23
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
24
- max-width: 100%;
25
- }
26
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
27
- grid-template-rows: masonry;
28
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
29
- grid-column-end: span var(--span, 1);
30
- align-self: start;
31
- }
32
- }
33
- .container {
34
- width: 100%;
35
- }
36
- }
37
- @layer components {
38
- .divider-x, .divider-horizontal {
39
- align-self: stretch;
40
- padding: 0 !important;
41
- border-radius: 0 !important;
42
- &:where(:not(:empty)) {
43
- gap: var(--gap, 1rem);
44
- }
45
- &::before, &::after {
46
- content: '';
47
- background-color: var(--border-color, currentColor);
48
- }
49
- flex-grow: 1;
50
- display: flex;
51
- align-items: center;
52
- &::before, &::after {
53
- flex-grow: 1;
54
- height: var(--border-width, 1px);
55
- }
56
- }
57
- .divider-y, .divider-vertical {
58
- align-self: stretch;
59
- padding: 0 !important;
60
- border-radius: 0 !important;
61
- &:where(:not(:empty)) {
62
- gap: var(--gap, 1rem);
63
- }
64
- &::before, &::after {
65
- content: '';
66
- background-color: var(--border-color, currentColor);
67
- }
68
- align-self: stretch;
69
- display: flex;
70
- flex-direction: column;
71
- align-items: center;
72
- :where(.vertical, .single-col, .wrap) > & {
73
- flex-grow: 1;
74
- }
75
- &::before, &::after {
76
- flex-grow: 1;
77
- width: var(--border-width, 1px);
78
- }
79
- }
80
- .divider-between-x, .divider-between-horizontal {
81
- align-self: stretch;
82
- padding: 0 !important;
83
- border-radius: 0 !important;
84
- &:where(:not(:empty)) {
85
- gap: var(--gap, 1rem);
86
- }
87
- &::before, &::after {
88
- content: '';
89
- background-color: var(--border-color, currentColor);
90
- }
91
- flex-direction: column;
92
- row-gap: 0;
93
- > * + *, > * + *:where(astro-island, astro-slot) > * {
94
- border-top-width: var(--border-width, 1px);
95
- border-color: var(--border-color);
96
- }
97
- }
98
- .divider-between-y, .divider-between-vertical {
99
- align-self: stretch;
100
- padding: 0 !important;
101
- border-radius: 0 !important;
102
- &:where(:not(:empty)) {
103
- gap: var(--gap, 1rem);
104
- }
105
- &::before, &::after {
106
- content: '';
107
- background-color: var(--border-color, currentColor);
108
- }
109
- column-gap: 0;
110
- > * + *, > * + *:where(astro-island, astro-slot) > * {
111
- border-left-width: var(--border-width, 1px);
112
- border-color: var(--border-color);
113
- }
114
- }
115
- }
116
- @layer components {
117
- .horizontal {
118
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
119
- flex-grow: var(--grow);
120
- }
121
- display: flex;
122
- flex-direction: row;
123
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
124
- > .spacer {
125
- margin-inline-start: auto;
126
- }
127
- }
128
- .vertical {
129
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
130
- flex-grow: var(--grow);
131
- }
132
- display: flex;
133
- flex-direction: column;
134
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
135
- > .spacer {
136
- margin-block-start: auto;
137
- }
138
- }
139
- .flow {
140
- > *, > :where(.contents) > *, > *:where(astro-island, astro-slot) > * {
141
- flex-grow: var(--grow);
142
- }
143
- display: flex;
144
- flex-flow: row wrap;
145
- gap: var(--gap-y, var(--gap)) var(--gap-x, var(--gap));
146
- }
147
- .stack {
148
- position: relative;
149
- display: grid;
150
- grid-template-columns: minmax(0, 1fr);
151
- padding: 0;
152
- &::before, &::after, > *, > *:where(astro-island, astro-slot) > * {
153
- position: relative;
154
- z-index: 1;
155
- grid-column: 1 / span 1;
156
- grid-row: 1 / span 1;
157
- }
158
- > .background {
159
- overflow: hidden;
160
- position: absolute;
161
- inset: 0;
162
- }
163
- > .foreground {
164
- position: relative;
165
- z-index: 10;
166
- }
167
- }
168
- .new-stacking-context {
169
- transform: translateZ(0);
170
- }
171
- .scrollable {
172
- display: flex;
173
- gap: var(--gap, 1rem);
174
- > :where(*) {
175
- flex-grow: 0;
176
- flex-shrink: 0;
177
- scroll-snap-align: var(--snap-align);
178
- scroll-margin: var(--scroll-margin);
179
- }
180
- }
181
- .scrollable-x {
182
- display: flex;
183
- gap: var(--gap, 1rem);
184
- > :where(*) {
185
- flex-grow: 0;
186
- flex-shrink: 0;
187
- scroll-snap-align: var(--snap-align);
188
- scroll-margin: var(--scroll-margin);
189
- }
190
- overflow: auto hidden;
191
- flex-direction: row;
192
- max-width: 100%;
193
- scroll-snap-type: x var(--snap-type);
194
- }
195
- .scrollable-horizontal {
196
- display: flex;
197
- gap: var(--gap, 1rem);
198
- > :where(*) {
199
- flex-grow: 0;
200
- flex-shrink: 0;
201
- scroll-snap-align: var(--snap-align);
202
- scroll-margin: var(--scroll-margin);
203
- }
204
- overflow: auto hidden;
205
- flex-direction: row;
206
- max-width: 100%;
207
- scroll-snap-type: x var(--snap-type);
208
- }
209
- .scrollable-y {
210
- display: flex;
211
- gap: var(--gap, 1rem);
212
- > :where(*) {
213
- flex-grow: 0;
214
- flex-shrink: 0;
215
- scroll-snap-align: var(--snap-align);
216
- scroll-margin: var(--scroll-margin);
217
- }
218
- overflow: hidden auto;
219
- flex-direction: column;
220
- scroll-snap-type: y var(--snap-type);
221
- }
222
- .scrollable-vertical {
223
- display: flex;
224
- gap: var(--gap, 1rem);
225
- > :where(*) {
226
- flex-grow: 0;
227
- flex-shrink: 0;
228
- scroll-snap-align: var(--snap-align);
229
- scroll-margin: var(--scroll-margin);
230
- }
231
- overflow: hidden auto;
232
- flex-direction: column;
233
- scroll-snap-type: y var(--snap-type);
234
- }
235
- .scrollable-preserve-outlines {
236
- box-sizing: content-box;
237
- margin: calc(var(--outline-width) * -1);
238
- padding: calc(var(--outline-width));
239
- }
240
- .scrollable-nosnap {
241
- --snap-type: none;
242
- }
243
- }
244
- @layer components {
245
- .shell-simple {
246
- display: flex;
247
- flex-direction: column;
248
- height: inherit;
249
- > .content {
250
- flex-grow: 1;
251
- }
252
- > .footer {
253
- flex-shrink: 0;
254
- }
255
- }
256
- .shell-grid {
257
- display: grid;
258
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, 1fr);
259
- gap: var(--gap, 0);
260
- height: 100dvh;
261
- &:has(> header) {
262
- grid-template-rows: auto 1fr;
263
- }
264
- &:has(> .right-sidebar) {
265
- grid-template-columns: minmax(0, var(--lsb-width, auto)) minmax(0, var(--content-width, 1fr)) minmax(0, var(--rsb-width, auto));
266
- }
267
- & > .is(header, .Full) {
268
- grid-column: 1 / -1;
269
- }
270
- > .left-sidebar, > .right-sidebar, > .content {
271
- overflow: auto;
272
- grid-column-end: span var(--span, 1);
273
- height: auto;
274
- }
275
- }
276
- }
277
- @layer components {
278
- .wrap {
279
- padding-inline: var(--wrap-padding, 1rem);
280
- }
281
- .flex-grid {
282
- display: flex;
283
- flex-flow: row wrap;
284
- gap: var(--gap, 1rem);
285
- max-width: 100%;
286
- > *, > *:where(astro-island, astro-slot) > *, > :where(.contents) > * {
287
- --one-column: var(--gap, 1rem) * (var(--cols, 1) - 1);
288
- 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, 1rem) );
289
- min-width: min(100%, var(--item-width, 3rem));
290
- max-width: 100%;
291
- }
292
- }
293
- .grid-simple {
294
- --span: 1;
295
- display: grid;
296
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
297
- max-width: 100%;
298
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
299
- --cols: 1;
300
- grid-column: var(--colstart, auto) / span var(--span, 1);
301
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
302
- max-width: 100%;
303
- }
304
- grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
305
- }
306
- .grid-repeat-auto {
307
- --span: 1;
308
- display: grid;
309
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
310
- max-width: 100%;
311
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
312
- --cols: 1;
313
- grid-column: var(--colstart, auto) / span var(--span, 1);
314
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
315
- max-width: 100%;
316
- }
317
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
318
- }
319
- .grid-fr-auto {
320
- --span: 1;
321
- display: grid;
322
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
323
- max-width: 100%;
324
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
325
- --cols: 1;
326
- grid-column: var(--colstart, auto) / span var(--span, 1);
327
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
328
- max-width: 100%;
329
- }
330
- grid-template-columns: minmax(0, 1fr) minmax(0, auto);
331
- }
332
- .grid-auto-fr {
333
- --span: 1;
334
- display: grid;
335
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
336
- max-width: 100%;
337
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
338
- --cols: 1;
339
- grid-column: var(--colstart, auto) / span var(--span, 1);
340
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
341
- max-width: 100%;
342
- }
343
- grid-template-columns: minmax(0, auto) minmax(0, 1fr);
344
- }
345
- .grid-with-breakout {
346
- --span: 1;
347
- display: grid;
348
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
349
- max-width: 100%;
350
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
351
- --cols: 1;
352
- grid-column: var(--colstart, auto) / span var(--span, 1);
353
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
354
- max-width: 100%;
355
- }
356
- grid-template-columns: [breakout-start] 1fr [content-start] repeat( var(--cols, 1), minmax(0, 1fr) ) [content-end] 1fr [breakout-end];
357
- > *:not([class*='breakout-full']) {
358
- grid-column: content-start / content-end;
359
- }
360
- > *:where(.breakout-full) {
361
- grid-column: breakout-start / breakout-end;
362
- }
363
- }
364
- .grid-gallery {
365
- --span: 1;
366
- display: grid;
367
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
368
- max-width: 100%;
369
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
370
- --cols: 1;
371
- grid-column: var(--colstart, auto) / span var(--span, 1);
372
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
373
- max-width: 100%;
374
- }
375
- grid-template-columns: repeat( var(--fit, auto-fill), minmax(min(var(--item-width, 3rem), 100%), 1fr) );
376
- }
377
- .grid-gallery-fit {
378
- --span: 1;
379
- display: grid;
380
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
381
- max-width: 100%;
382
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
383
- --cols: 1;
384
- grid-column: var(--colstart, auto) / span var(--span, 1);
385
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
386
- max-width: 100%;
387
- }
388
- grid-template-columns: repeat( var(--fit, auto-fill), minmax(min(var(--item-width, 3rem), 100%), 1fr) );
389
- --fit: auto-fit;
390
- }
391
- .grid-gallery-fill {
392
- --span: 1;
393
- display: grid;
394
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
395
- max-width: 100%;
396
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
397
- --cols: 1;
398
- grid-column: var(--colstart, auto) / span var(--span, 1);
399
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
400
- max-width: 100%;
401
- }
402
- grid-template-columns: repeat( var(--fit, auto-fill), minmax(min(var(--item-width, 3rem), 100%), 1fr) );
403
- --fit: auto-fill;
404
- }
405
- .dense {
406
- grid-auto-flow: dense;
407
- }
408
- .dense-column {
409
- grid-auto-columns: dense;
410
- }
411
- .dense-row {
412
- grid-auto-rows: dense;
413
- }
414
- .masonry {
415
- --span: 1;
416
- display: grid;
417
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
418
- max-width: 100%;
419
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
420
- --cols: 1;
421
- grid-column: var(--colstart, auto) / span var(--span, 1);
422
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
423
- max-width: 100%;
424
- }
425
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
426
- grid-template-rows: masonry;
427
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
428
- grid-column-end: span var(--span, 1);
429
- align-self: start;
430
- }
431
- }
432
- .masonry-gallery {
433
- --span: 1;
434
- display: grid;
435
- gap: var(--gap-y, var(--gap, 1rem)) var(--gap-x, var(--gap, 1rem));
436
- max-width: 100%;
437
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
438
- --cols: 1;
439
- grid-column: var(--colstart, auto) / span var(--span, 1);
440
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
441
- max-width: 100%;
442
- }
443
- grid-template-columns: repeat(var(--cols, 1), minmax(0, auto));
444
- grid-template-rows: masonry;
445
- > *, > *:where(.contents) > *, > *:where(astro-island, astro-slot) > * {
446
- grid-column-end: span var(--span, 1);
447
- align-self: start;
448
- }
449
- grid-template-columns: repeat( auto-fill, minmax(min(var(--item-width, 3rem), 100%), 1fr) );
450
- }
451
- .subgrid {
452
- display: grid;
453
- gap: inherit;
454
- grid-column: var(--start, auto) / span var(--span, 1);
455
- grid-template-columns: subgrid;
456
- > *:not([class*='subgrid']) {
457
- grid-column-end: span var(--ispan, 1);
458
- width: 100%;
459
- max-width: 100%;
460
- }
461
- display: grid;
462
- gap: inherit;
463
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
464
- grid-template-rows: subgrid;
465
- > *:not([class*='subgrid']) {
466
- grid-row-end: span var(--irowspan, 1);
467
- }
468
- grid-template-columns: subgrid;
469
- grid-template-rows: subgrid;
470
- }
471
- .subgrid-columns {
472
- display: grid;
473
- gap: inherit;
474
- grid-column: var(--start, auto) / span var(--span, 1);
475
- grid-template-columns: subgrid;
476
- > *:not([class*='subgrid']) {
477
- grid-column-end: span var(--ispan, 1);
478
- width: 100%;
479
- max-width: 100%;
480
- }
481
- }
482
- .subgrid-rows {
483
- display: grid;
484
- gap: inherit;
485
- grid-row: var(--rowstart, auto) / span var(--rowspan, 1);
486
- grid-template-rows: subgrid;
487
- > *:not([class*='subgrid']) {
488
- grid-row-end: span var(--irowspan, 1);
489
- }
490
- }
491
- }
492
- @layer components {
493
- .edge-top {
494
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
495
- :where(.stack) > & {
496
- box-sizing: content-box;
497
- }
498
- :where(.relative > &) {
499
- position: absolute;
500
- }
501
- --ty: -50%;
502
- :where(.stack) > & {
503
- place-self: start center;
504
- }
505
- :where(.relative) > & {
506
- inset-block-start: 0;
507
- }
508
- }
509
- .edge-topleft {
510
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
511
- :where(.stack) > & {
512
- box-sizing: content-box;
513
- }
514
- :where(.relative > &) {
515
- position: absolute;
516
- }
517
- --ty: -50%;
518
- --tx: -50%;
519
- :where(.stack) > & {
520
- place-self: start start;
521
- }
522
- :where(.relative) > & {
523
- inset-block-start: 0;
524
- inset-inline-start: 0;
525
- }
526
- }
527
- .edge-topright {
528
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
529
- :where(.stack) > & {
530
- box-sizing: content-box;
531
- }
532
- :where(.relative > &) {
533
- position: absolute;
534
- }
535
- --ty: -50%;
536
- --tx: 50%;
537
- :where(.stack) > & {
538
- place-self: start end;
539
- }
540
- :where(.relative) > & {
541
- inset-block-start: 0;
542
- inset-inline-end: 0;
543
- }
544
- }
545
- .edge-topfull {
546
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
547
- :where(.stack) > & {
548
- box-sizing: content-box;
549
- }
550
- :where(.relative > &) {
551
- position: absolute;
552
- }
553
- --ty: -50%;
554
- :where(.stack) > & {
555
- place-self: start center;
556
- }
557
- :where(.relative) > & {
558
- inset-block-start: 0;
559
- }
560
- }
561
- .edge-bottom {
562
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
563
- :where(.stack) > & {
564
- box-sizing: content-box;
565
- }
566
- :where(.relative > &) {
567
- position: absolute;
568
- }
569
- --ty: 50%;
570
- :where(.stack) > & {
571
- place-self: end center;
572
- }
573
- :where(.relative) > & {
574
- inset-block-end: 0;
575
- }
576
- }
577
- .edge-bottomleft {
578
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
579
- :where(.stack) > & {
580
- box-sizing: content-box;
581
- }
582
- :where(.relative > &) {
583
- position: absolute;
584
- }
585
- --ty: 50%;
586
- --tx: -50%;
587
- :where(.stack) > & {
588
- place-self: end start;
589
- }
590
- :where(.relative) > & {
591
- inset-block-end: 0;
592
- inset-inline-start: 0;
593
- }
594
- }
595
- .edge-bottomright {
596
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
597
- :where(.stack) > & {
598
- box-sizing: content-box;
599
- }
600
- :where(.relative > &) {
601
- position: absolute;
602
- }
603
- --ty: 50%;
604
- --tx: 50%;
605
- :where(.stack) > & {
606
- place-self: end end;
607
- }
608
- :where(.relative) > & {
609
- inset-block-end: 0;
610
- inset-inline-end: 0;
611
- }
612
- }
613
- .edge-bottomfull {
614
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
615
- :where(.stack) > & {
616
- box-sizing: content-box;
617
- }
618
- :where(.relative > &) {
619
- position: absolute;
620
- }
621
- --ty: 50%;
622
- :where(.stack) > & {
623
- place-self: end center;
624
- }
625
- :where(.relative) > & {
626
- inset-block-end: 0;
627
- }
628
- }
629
- .edge-left {
630
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
631
- :where(.stack) > & {
632
- box-sizing: content-box;
633
- }
634
- :where(.relative > &) {
635
- position: absolute;
636
- }
637
- --tx: -50%;
638
- :where(.stack) > & {
639
- place-self: center start;
640
- }
641
- :where(.relative) > & {
642
- inset-inline-start: 0;
643
- }
644
- }
645
- .edge-leftfull {
646
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
647
- :where(.stack) > & {
648
- box-sizing: content-box;
649
- }
650
- :where(.relative > &) {
651
- position: absolute;
652
- }
653
- --tx: -50%;
654
- :where(.stack) > & {
655
- place-self: center start;
656
- }
657
- :where(.relative) > & {
658
- inset-inline-start: 0;
659
- }
660
- }
661
- .edge-right {
662
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
663
- :where(.stack) > & {
664
- box-sizing: content-box;
665
- }
666
- :where(.relative > &) {
667
- position: absolute;
668
- }
669
- --tx: 50%;
670
- :where(.stack) > & {
671
- place-self: center end;
672
- }
673
- :where(.relative) > & {
674
- inset-inline-end: 0;
675
- }
676
- }
677
- .edge-rightfull {
678
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
679
- :where(.stack) > & {
680
- box-sizing: content-box;
681
- }
682
- :where(.relative > &) {
683
- position: absolute;
684
- }
685
- --tx: 50%;
686
- :where(.stack) > & {
687
- place-self: center end;
688
- }
689
- :where(.relative) > & {
690
- inset-inline-end: 0;
691
- }
692
- }
693
- .edge-topleft-start {
694
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
695
- :where(.stack) > & {
696
- box-sizing: content-box;
697
- }
698
- :where(.relative > &) {
699
- position: absolute;
700
- }
701
- --ty: -50%;
702
- --tx: -50%;
703
- :where(.stack) > & {
704
- place-self: start start;
705
- }
706
- :where(.relative) > & {
707
- inset-block-start: 0;
708
- inset-inline-start: 0;
709
- }
710
- --ty: -50%;
711
- --tx: -100%;
712
- }
713
- .edge-topleft-end {
714
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
715
- :where(.stack) > & {
716
- box-sizing: content-box;
717
- }
718
- :where(.relative > &) {
719
- position: absolute;
720
- }
721
- --ty: -50%;
722
- --tx: -50%;
723
- :where(.stack) > & {
724
- place-self: start start;
725
- }
726
- :where(.relative) > & {
727
- inset-block-start: 0;
728
- inset-inline-start: 0;
729
- }
730
- --ty: -50%;
731
- --tx: 0%;
732
- }
733
- .edge-topright-start {
734
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
735
- :where(.stack) > & {
736
- box-sizing: content-box;
737
- }
738
- :where(.relative > &) {
739
- position: absolute;
740
- }
741
- --ty: -50%;
742
- --tx: 50%;
743
- :where(.stack) > & {
744
- place-self: start end;
745
- }
746
- :where(.relative) > & {
747
- inset-block-start: 0;
748
- inset-inline-end: 0;
749
- }
750
- --ty: -50%;
751
- --tx: 0%;
752
- }
753
- .edge-topright-end {
754
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
755
- :where(.stack) > & {
756
- box-sizing: content-box;
757
- }
758
- :where(.relative > &) {
759
- position: absolute;
760
- }
761
- --ty: -50%;
762
- --tx: 50%;
763
- :where(.stack) > & {
764
- place-self: start end;
765
- }
766
- :where(.relative) > & {
767
- inset-block-start: 0;
768
- inset-inline-end: 0;
769
- }
770
- --ty: -50%;
771
- --tx: 100%;
772
- }
773
- .edge-bottomleft-start {
774
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
775
- :where(.stack) > & {
776
- box-sizing: content-box;
777
- }
778
- :where(.relative > &) {
779
- position: absolute;
780
- }
781
- --ty: 50%;
782
- --tx: -50%;
783
- :where(.stack) > & {
784
- place-self: end start;
785
- }
786
- :where(.relative) > & {
787
- inset-block-end: 0;
788
- inset-inline-start: 0;
789
- }
790
- --ty: 50%;
791
- --tx: -100%;
792
- }
793
- .edge-bottomleft-end {
794
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
795
- :where(.stack) > & {
796
- box-sizing: content-box;
797
- }
798
- :where(.relative > &) {
799
- position: absolute;
800
- }
801
- --ty: 50%;
802
- --tx: -50%;
803
- :where(.stack) > & {
804
- place-self: end start;
805
- }
806
- :where(.relative) > & {
807
- inset-block-end: 0;
808
- inset-inline-start: 0;
809
- }
810
- --ty: 50%;
811
- --tx: 0%;
812
- }
813
- .edge-bottomright-start {
814
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
815
- :where(.stack) > & {
816
- box-sizing: content-box;
817
- }
818
- :where(.relative > &) {
819
- position: absolute;
820
- }
821
- --ty: 50%;
822
- --tx: 50%;
823
- :where(.stack) > & {
824
- place-self: end end;
825
- }
826
- :where(.relative) > & {
827
- inset-block-end: 0;
828
- inset-inline-end: 0;
829
- }
830
- --ty: 50%;
831
- --tx: 0%;
832
- }
833
- .edge-bottomright-end {
834
- transform: translateX(var(--tx, 0%)) translateY(var(--ty, 0%));
835
- :where(.stack) > & {
836
- box-sizing: content-box;
837
- }
838
- :where(.relative > &) {
839
- position: absolute;
840
- }
841
- --ty: 50%;
842
- --tx: 50%;
843
- :where(.stack) > & {
844
- place-self: end end;
845
- }
846
- :where(.relative) > & {
847
- inset-block-end: 0;
848
- inset-inline-end: 0;
849
- }
850
- --ty: 50%;
851
- --tx: 100%;
852
- }
853
- .fixed-top {
854
- position: fixed;
855
- top: 0;
856
- left: 0;
857
- right: 0;
858
- }
859
- .fixed-topleft {
860
- position: fixed;
861
- top: 0;
862
- left: 0;
863
- right: 0;
864
- position: relative;
865
- top: var(--nudge-y, var(--nudge, 0));
866
- left: var(--nudge-x, var(--nudge, 0));
867
- right: auto;
868
- }
869
- .fixed-topright {
870
- position: fixed;
871
- top: 0;
872
- left: 0;
873
- right: 0;
874
- position: relative;
875
- top: var(--nudge-y, var(--nudge, 0));
876
- right: var(--nudge-x, var(--nudge, 0));
877
- left: auto;
878
- }
879
- .fixed-topfull {
880
- position: fixed;
881
- top: 0;
882
- left: 0;
883
- right: 0;
884
- position: relative;
885
- top: var(--nudge-y, var(--nudge, 0));
886
- left: var(--nudge-x, var(--nudge, 0));
887
- right: var(--nudge-x, var(--nudge, 0));
888
- }
889
- .fixed-bottom {
890
- position: fixed;
891
- bottom: 0;
892
- left: 0;
893
- right: 0;
894
- }
895
- .fixed-bottomleft {
896
- position: fixed;
897
- bottom: 0;
898
- left: 0;
899
- right: 0;
900
- position: relative;
901
- bottom: var(--nudge-y, var(--nudge, 0));
902
- left: var(--nudge-x, var(--nudge, 0));
903
- right: auto;
904
- }
905
- .fixed-bottomright {
906
- position: fixed;
907
- bottom: 0;
908
- left: 0;
909
- right: 0;
910
- position: relative;
911
- bottom: var(--nudge-y, var(--nudge, 0));
912
- right: var(--nudge-x, var(--nudge, 0));
913
- left: auto;
914
- }
915
- .fixed-bottomfull {
916
- position: fixed;
917
- bottom: 0;
918
- left: 0;
919
- right: 0;
920
- position: relative;
921
- bottom: var(--nudge-y, var(--nudge, 0));
922
- left: var(--nudge-x, var(--nudge, 0));
923
- right: var(--nudge-x, var(--nudge, 0));
924
- }
925
- .fixed-left {
926
- position: fixed;
927
- top: 0;
928
- bottom: 0;
929
- left: 0;
930
- }
931
- .fixed-leftfull {
932
- position: fixed;
933
- top: 0;
934
- bottom: 0;
935
- left: 0;
936
- position: relative;
937
- left: var(--nudge-x, var(--nudge, 0));
938
- top: var(--nudge-y, var(--nudge, 0));
939
- bottom: var(--nudge-y, var(--nudge, 0));
940
- }
941
- .fixed-right {
942
- position: fixed;
943
- top: 0;
944
- bottom: 0;
945
- right: 0;
946
- }
947
- .fixed-rightfull {
948
- position: fixed;
949
- top: 0;
950
- bottom: 0;
951
- right: 0;
952
- position: relative;
953
- right: var(--nudge-x, var(--nudge, 0));
954
- top: var(--nudge-y, var(--nudge, 0));
955
- bottom: var(--nudge-y, var(--nudge, 0));
956
- }
957
- .fixed-center {
958
- position: fixed;
959
- top: 50%;
960
- left: 50%;
961
- transform: translate(-50%, -50%);
962
- }
963
- .fixed-overlay {
964
- pointer-events: none;
965
- position: fixed;
966
- inset-block: var(--nudge-y, var(--nudge, 0));
967
- inset-inline: var(--nudge-x, var(--nudge, 0));
968
- display: grid;
969
- }
970
- .pos-top {
971
- position: relative;
972
- top: var(--nudge-y, var(--nudge, 0));
973
- :where([class*='stack']) > & {
974
- place-self: start center;
975
- }
976
- :where([class*='relative']) > & {
977
- position: absolute;
978
- inset-block-start: 0;
979
- }
980
- }
981
- .pos-topleft {
982
- position: relative;
983
- top: var(--nudge-y, var(--nudge, 0));
984
- left: var(--nudge-x, var(--nudge, 0));
985
- :where([class*='stack']) > & {
986
- place-self: start start;
987
- }
988
- :where([class*='relative']) > & {
989
- position: absolute;
990
- position: absolute;
991
- inset-block-start: 0;
992
- inset-inline-start: 0;
993
- }
994
- }
995
- .pos-topright {
996
- position: relative;
997
- top: var(--nudge-y, var(--nudge, 0));
998
- right: var(--nudge-x, var(--nudge, 0));
999
- :where([class*='stack']) > & {
1000
- place-self: start end;
1001
- }
1002
- :where([class*='relative']) > & {
1003
- position: absolute;
1004
- position: absolute;
1005
- inset-block-start: 0;
1006
- inset-inline-end: 0;
1007
- }
1008
- }
1009
- .pos-topfull {
1010
- position: relative;
1011
- top: var(--nudge-y, var(--nudge, 0));
1012
- left: var(--nudge-x, var(--nudge, 0));
1013
- right: var(--nudge-x, var(--nudge, 0));
1014
- :where([class*='stack']) > & {
1015
- place-self: start stretch;
1016
- }
1017
- :where([class*='relative']) > & {
1018
- position: absolute;
1019
- position: absolute;
1020
- inset-block-start: 0;
1021
- inset-inline: 0;
1022
- }
1023
- }
1024
- .pos-bottom {
1025
- position: relative;
1026
- bottom: var(--nudge-y, var(--nudge, 0));
1027
- :where([class*='stack']) > & {
1028
- place-self: end center;
1029
- }
1030
- :where([class*='relative']) > & {
1031
- position: absolute;
1032
- inset-block-end: 0;
1033
- }
1034
- }
1035
- .pos-bottomleft {
1036
- position: relative;
1037
- bottom: var(--nudge-y, var(--nudge, 0));
1038
- left: var(--nudge-x, var(--nudge, 0));
1039
- :where([class*='stack']) > & {
1040
- place-self: end start;
1041
- }
1042
- :where([class*='relative']) > & {
1043
- position: absolute;
1044
- position: absolute;
1045
- inset-block-end: 0;
1046
- inset-inline-start: 0;
1047
- }
1048
- }
1049
- .pos-bottomright {
1050
- position: relative;
1051
- bottom: var(--nudge-y, var(--nudge, 0));
1052
- right: var(--nudge-x, var(--nudge, 0));
1053
- :where([class*='stack']) > & {
1054
- place-self: end end;
1055
- }
1056
- :where([class*='relative']) > & {
1057
- position: absolute;
1058
- position: absolute;
1059
- inset-block-end: 0;
1060
- inset-inline-end: 0;
1061
- }
1062
- }
1063
- .pos-bottomfull {
1064
- position: relative;
1065
- bottom: var(--nudge-y, var(--nudge, 0));
1066
- left: var(--nudge-x, var(--nudge, 0));
1067
- right: var(--nudge-x, var(--nudge, 0));
1068
- :where([class*='stack']) > & {
1069
- place-self: end stretch;
1070
- }
1071
- :where([class*='relative']) > & {
1072
- position: absolute;
1073
- inset-block-end: 0;
1074
- inset-inline: 0;
1075
- }
1076
- }
1077
- .pos-left {
1078
- position: relative;
1079
- left: var(--nudge-x, var(--nudge, 0));
1080
- :where([class*='stack']) > & {
1081
- place-self: center start;
1082
- }
1083
- :where([class*='relative']) > & {
1084
- position: absolute;
1085
- inset-inline-start: 0;
1086
- }
1087
- }
1088
- .pos-leftfull {
1089
- position: relative;
1090
- left: var(--nudge-x, var(--nudge, 0));
1091
- top: var(--nudge-y, var(--nudge, 0));
1092
- bottom: var(--nudge-y, var(--nudge, 0));
1093
- :where([class*='stack']) > & {
1094
- place-self: stretch start;
1095
- }
1096
- :where([class*='relative']) > & {
1097
- position: absolute;
1098
- position: absolute;
1099
- inset-inline-start: 0;
1100
- inset-block: 0;
1101
- }
1102
- }
1103
- .pos-right {
1104
- position: relative;
1105
- right: var(--nudge-x, var(--nudge, 0));
1106
- :where([class*='stack']) > & {
1107
- place-self: center end;
1108
- }
1109
- :where([class*='relative']) > & {
1110
- position: absolute;
1111
- inset-inline-end: 0;
1112
- }
1113
- }
1114
- .pos-rightfull {
1115
- position: relative;
1116
- right: var(--nudge-x, var(--nudge, 0));
1117
- top: var(--nudge-y, var(--nudge, 0));
1118
- bottom: var(--nudge-y, var(--nudge, 0));
1119
- :where([class*='stack']) > & {
1120
- place-self: stretch end;
1121
- }
1122
- :where([class*='relative']) > & {
1123
- position: absolute;
1124
- position: absolute;
1125
- inset-inline-end: 0;
1126
- inset-block: 0;
1127
- }
1128
- }
1129
- .pos-center {
1130
- :where([class*='stack']) > & {
1131
- place-self: center center;
1132
- }
1133
- :where([class*='relative']) > & {
1134
- position: absolute;
1135
- top: 50%;
1136
- left: 50%;
1137
- transform: translate(-50%, -50%);
1138
- }
1139
- }
1140
- .pos-overlay {
1141
- :where([class*='stack']) > & {
1142
- display: grid;
1143
- > * {
1144
- grid-column: 1 / span 1;
1145
- grid-row: 1 / span 1;
1146
- }
1147
- }
1148
- :where([class*='relative']) > & {
1149
- position: absolute;
1150
- inset: 0;
1151
- }
1152
- }
1153
- .sticky {
1154
- position: sticky;
1155
- top: 0;
1156
- z-index: var(--z-index, 15);
1157
- :where([class*='grid'] > &) {
1158
- align-self: start;
1159
- }
1160
- position: sticky;
1161
- }
1162
- }
1163
- @layer utilities {
1164
- .pointer-events-none {
1165
- pointer-events: none;
1166
- }
1167
- .container {
1168
- container-type: inline-size;
1169
- }
1170
- .contents {
1171
- display: contents;
1172
- }
1173
- .grow {
1174
- flex-grow: 1;
1175
- }
1176
- .grow-0 {
1177
- flex-grow: 0;
1178
- }
1179
- .shrink {
1180
- flex-shrink: 1;
1181
- }
1182
- .shrink-0 {
1183
- flex-shrink: 0;
1184
- }
1185
- .justify-start {
1186
- justify-content: start;
1187
- }
1188
- .justify-center {
1189
- justify-content: center;
1190
- }
1191
- .justify-end {
1192
- justify-content: end;
1193
- }
1194
- .justify-between {
1195
- justify-content: space-between;
1196
- }
1197
- .justify-around {
1198
- justify-content: space-around;
1199
- }
1200
- .justify-evenly {
1201
- justify-content: space-evenly;
1202
- }
1203
- .justify-items-start {
1204
- justify-items: start;
1205
- }
1206
- .justify-items-center {
1207
- justify-items: center;
1208
- }
1209
- .justify-items-end {
1210
- justify-items: end;
1211
- }
1212
- .justify-items-stretch {
1213
- justify-items: stretch;
1214
- }
1215
- .justify-self-start {
1216
- justify-self: start;
1217
- }
1218
- .justify-self-center {
1219
- justify-self: center;
1220
- }
1221
- .justify-self-end {
1222
- justify-self: end;
1223
- }
1224
- .justify-self-stretch {
1225
- justify-self: stretch;
1226
- }
1227
- .content-start {
1228
- align-content: start;
1229
- }
1230
- .content-center {
1231
- align-content: center;
1232
- }
1233
- .content-end {
1234
- align-content: end;
1235
- }
1236
- .content-between {
1237
- align-content: space-between;
1238
- }
1239
- .content-around {
1240
- align-content: space-around;
1241
- }
1242
- .content-stretch {
1243
- align-content: stretch;
1244
- }
1245
- .content-baseline {
1246
- align-content: baseline;
1247
- }
1248
- .items-start {
1249
- align-items: start;
1250
- }
1251
- .items-center {
1252
- align-items: center;
1253
- }
1254
- .items-end {
1255
- align-items: end;
1256
- }
1257
- .items-stretch {
1258
- align-items: stretch;
1259
- }
1260
- .items-baseline {
1261
- align-items: baseline;
1262
- }
1263
- .self-start {
1264
- align-self: start;
1265
- }
1266
- .self-center {
1267
- align-self: center;
1268
- }
1269
- .self-end {
1270
- align-self: end;
1271
- }
1272
- .self-stretch {
1273
- align-self: stretch;
1274
- }
1275
- .self-baseline {
1276
- align-self: baseline;
1277
- }
1278
- }