create-gardener 1.1.6 → 1.1.7

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 (26) hide show
  1. package/package.json +1 -1
  2. package/template/src/backend/controllers/gardener.controller.ts +6 -19
  3. package/template/src/backend/routes/gardener.route.ts +2 -1
  4. package/template/src/backend/server.ts +1 -1
  5. package/template/src/frontend/frontendtemplate.ejs +4 -4
  6. package/template/src/frontend/gardenerST.js +340 -0
  7. package/template/src/frontend/static/components/emailsvg.js +55 -0
  8. package/template/src/frontend/{components → static/components}/eyeoff.js +1 -1
  9. package/template/src/frontend/static/components/eyeon.js +43 -0
  10. package/template/src/frontend/{components → static/components}/notification.js +1 -1
  11. package/template/src/frontend/{components → static/components}/passwordBox.js +3 -3
  12. package/template/src/frontend/static/components/test.js +54 -0
  13. package/template/src/frontend/{gardener.js → static/gardener.js} +14 -1
  14. package/template/src/frontend/{style.css → static/style.css} +148 -347
  15. package/template/src/frontend/views/_.ejs +8 -8
  16. package/template/src/frontend/views/_login.ejs +8 -8
  17. package/.direnv/bin/nix-direnv-reload +0 -19
  18. package/.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc +0 -2140
  19. package/.envrc +0 -1
  20. package/template/src/frontend/components/emailsvg.js +0 -55
  21. package/template/src/frontend/components/eyeon.js +0 -44
  22. package/template/src/frontend/components/test.js +0 -54
  23. /package/template/src/{backend → frontend/static}/cache/gardener_500x500.webp +0 -0
  24. /package/template/src/frontend/{components → static/components}/nonui/api.js +0 -0
  25. /package/template/src/frontend/{global.js → static/global.js} +0 -0
  26. /package/template/src/frontend/{style2.css → static/style2.css} +0 -0
@@ -8,12 +8,14 @@
8
8
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
9
9
  monospace;
10
10
  --color-red-300: oklch(80.8% 0.114 19.571);
11
+ --color-green-200: oklch(92.5% 0.084 155.995);
11
12
  --color-green-300: oklch(87.1% 0.15 154.449);
12
13
  --color-green-500: oklch(72.3% 0.219 149.579);
13
14
  --color-emerald-50: oklch(97.9% 0.021 166.113);
14
15
  --color-emerald-300: oklch(84.5% 0.143 164.978);
15
16
  --color-cyan-50: oklch(98.4% 0.019 200.873);
16
- --color-slate-50: oklch(98.4% 0.003 247.858);
17
+ --color-blue-400: oklch(70.7% 0.165 254.624);
18
+ --color-blue-800: oklch(42.4% 0.199 265.638);
17
19
  --color-slate-100: oklch(96.8% 0.007 247.896);
18
20
  --color-slate-200: oklch(92.9% 0.013 255.508);
19
21
  --color-slate-300: oklch(86.9% 0.022 252.894);
@@ -24,10 +26,11 @@
24
26
  --color-slate-900: oklch(20.8% 0.042 265.755);
25
27
  --color-gray-200: oklch(92.8% 0.006 264.531);
26
28
  --color-gray-500: oklch(55.1% 0.027 264.364);
29
+ --color-gray-900: oklch(21% 0.034 264.665);
27
30
  --color-black: #000;
28
31
  --color-white: #fff;
29
32
  --spacing: 0.25rem;
30
- --container-xl: 36rem;
33
+ --container-sm: 24rem;
31
34
  --container-2xl: 42rem;
32
35
  --container-7xl: 80rem;
33
36
  --text-sm: 0.875rem;
@@ -44,14 +47,17 @@
44
47
  --text-4xl--line-height: calc(2.5 / 2.25);
45
48
  --text-5xl: 3rem;
46
49
  --text-5xl--line-height: 1;
50
+ --font-weight-medium: 500;
47
51
  --font-weight-semibold: 600;
48
52
  --font-weight-bold: 700;
53
+ --tracking-wide: 0.025em;
49
54
  --leading-relaxed: 1.625;
50
55
  --radius-md: 0.375rem;
51
56
  --radius-lg: 0.5rem;
52
57
  --radius-xl: 0.75rem;
53
58
  --radius-2xl: 1rem;
54
59
  --radius-3xl: 1.5rem;
60
+ --blur-md: 12px;
55
61
  --default-transition-duration: 150ms;
56
62
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
57
63
  --default-font-family: var(--font-sans);
@@ -207,50 +213,29 @@
207
213
  }
208
214
  }
209
215
  @layer utilities {
210
- .collapse {
211
- visibility: collapse;
212
- }
213
- .invisible {
214
- visibility: hidden;
215
- }
216
216
  .visible {
217
217
  visibility: visible;
218
218
  }
219
- .\!static {
220
- position: static !important;
221
- }
222
219
  .absolute {
223
220
  position: absolute;
224
221
  }
225
222
  .fixed {
226
223
  position: fixed;
227
224
  }
228
- .relative {
229
- position: relative;
230
- }
231
225
  .static {
232
226
  position: static;
233
227
  }
234
- .sticky {
235
- position: sticky;
236
- }
237
228
  .top-0 {
238
229
  top: calc(var(--spacing) * 0);
239
230
  }
240
- .top-1 {
241
- top: calc(var(--spacing) * 1);
242
- }
243
231
  .top-1\/4 {
244
232
  top: calc(1/4 * 100%);
245
233
  }
246
- .top-2 {
247
- top: calc(var(--spacing) * 2);
248
- }
249
234
  .top-2\/5 {
250
235
  top: calc(2/5 * 100%);
251
236
  }
252
- .top-100 {
253
- top: calc(var(--spacing) * 100);
237
+ .top-\[-60px\] {
238
+ top: -60px;
254
239
  }
255
240
  .right-0 {
256
241
  right: calc(var(--spacing) * 0);
@@ -258,32 +243,26 @@
258
243
  .right-2 {
259
244
  right: calc(var(--spacing) * 2);
260
245
  }
261
- .-bottom-22 {
262
- bottom: calc(var(--spacing) * -22);
263
- }
264
246
  .bottom-0 {
265
247
  bottom: calc(var(--spacing) * 0);
266
248
  }
267
249
  .bottom-22 {
268
250
  bottom: calc(var(--spacing) * 22);
269
251
  }
270
- .left-1 {
271
- left: calc(var(--spacing) * 1);
252
+ .left-0 {
253
+ left: calc(var(--spacing) * 0);
272
254
  }
273
255
  .left-1\/4 {
274
256
  left: calc(1/4 * 100%);
275
257
  }
276
- .left-2 {
277
- left: calc(var(--spacing) * 2);
278
- }
279
258
  .left-2\/5 {
280
259
  left: calc(2/5 * 100%);
281
260
  }
282
261
  .left-\[100vw\] {
283
262
  left: 100vw;
284
263
  }
285
- .isolate {
286
- isolation: isolate;
264
+ .z-50 {
265
+ z-index: 50;
287
266
  }
288
267
  .z-90 {
289
268
  z-index: 90;
@@ -291,93 +270,42 @@
291
270
  .z-100 {
292
271
  z-index: 100;
293
272
  }
294
- .order-4 {
295
- order: 4;
296
- }
297
- .\!container {
298
- width: 100% !important;
299
- @media (width >= 40rem) {
300
- max-width: 40rem !important;
301
- }
302
- @media (width >= 48rem) {
303
- max-width: 48rem !important;
304
- }
305
- @media (width >= 64rem) {
306
- max-width: 64rem !important;
307
- }
308
- @media (width >= 80rem) {
309
- max-width: 80rem !important;
310
- }
311
- @media (width >= 96rem) {
312
- max-width: 96rem !important;
313
- }
314
- }
315
- .container {
316
- width: 100%;
317
- @media (width >= 40rem) {
318
- max-width: 40rem;
319
- }
320
- @media (width >= 48rem) {
321
- max-width: 48rem;
322
- }
323
- @media (width >= 64rem) {
324
- max-width: 64rem;
325
- }
326
- @media (width >= 80rem) {
327
- max-width: 80rem;
328
- }
329
- @media (width >= 96rem) {
330
- max-width: 96rem;
331
- }
332
- }
333
273
  .mx-auto {
334
274
  margin-inline: auto;
335
275
  }
336
- .mt-1 {
337
- margin-top: calc(var(--spacing) * 1);
276
+ .my-1 {
277
+ margin-block: calc(var(--spacing) * 1);
278
+ }
279
+ .mt-3 {
280
+ margin-top: calc(var(--spacing) * 3);
338
281
  }
339
282
  .mt-4 {
340
283
  margin-top: calc(var(--spacing) * 4);
341
284
  }
342
- .mt-940 {
343
- margin-top: calc(var(--spacing) * 940);
344
- }
345
- .mb-2 {
346
- margin-bottom: calc(var(--spacing) * 2);
285
+ .mt-5 {
286
+ margin-top: calc(var(--spacing) * 5);
347
287
  }
348
- .ml-4 {
349
- margin-left: calc(var(--spacing) * 4);
288
+ .box-border {
289
+ box-sizing: border-box;
350
290
  }
351
291
  .block {
352
292
  display: block;
353
293
  }
354
- .contents {
355
- display: contents;
356
- }
357
294
  .flex {
358
295
  display: flex;
359
296
  }
360
297
  .grid {
361
298
  display: grid;
362
299
  }
363
- .hidden {
364
- display: none;
365
- }
366
- .inline {
367
- display: inline;
368
- }
369
300
  .inline-block {
370
301
  display: inline-block;
371
302
  }
372
- .table {
373
- display: table;
374
- }
375
- .h-2 {
376
- height: calc(var(--spacing) * 2);
377
- }
378
303
  .h-2\/4 {
379
304
  height: calc(2/4 * 100%);
380
305
  }
306
+ .h-8 {
307
+ height: calc(var(--spacing) * 8);
308
+ }
381
309
  .h-15 {
382
310
  height: calc(var(--spacing) * 15);
383
311
  }
@@ -387,20 +315,23 @@
387
315
  .h-screen {
388
316
  height: 100vh;
389
317
  }
390
- .w-2 {
391
- width: calc(var(--spacing) * 2);
318
+ .min-h-100 {
319
+ min-height: calc(var(--spacing) * 100);
392
320
  }
393
321
  .w-2\/4 {
394
322
  width: calc(2/4 * 100%);
395
323
  }
324
+ .w-3\/4 {
325
+ width: calc(3/4 * 100%);
326
+ }
396
327
  .w-15 {
397
328
  width: calc(var(--spacing) * 15);
398
329
  }
399
330
  .w-64 {
400
331
  width: calc(var(--spacing) * 64);
401
332
  }
402
- .w-72 {
403
- width: calc(var(--spacing) * 72);
333
+ .w-90 {
334
+ width: calc(var(--spacing) * 90);
404
335
  }
405
336
  .w-500 {
406
337
  width: calc(var(--spacing) * 500);
@@ -417,32 +348,14 @@
417
348
  .max-w-7xl {
418
349
  max-width: var(--container-7xl);
419
350
  }
420
- .max-w-xl {
421
- max-width: var(--container-xl);
422
- }
423
- .flex-shrink {
424
- flex-shrink: 1;
351
+ .max-w-sm {
352
+ max-width: var(--container-sm);
425
353
  }
426
- .shrink {
427
- flex-shrink: 1;
354
+ .min-w-100 {
355
+ min-width: calc(var(--spacing) * 100);
428
356
  }
429
- .flex-grow {
430
- flex-grow: 1;
431
- }
432
- .grow {
433
- flex-grow: 1;
434
- }
435
- .border-collapse {
436
- border-collapse: collapse;
437
- }
438
- .scale-15878 {
439
- --tw-scale-x: 15878%;
440
- --tw-scale-y: 15878%;
441
- --tw-scale-z: 15878%;
442
- scale: var(--tw-scale-x) var(--tw-scale-y);
443
- }
444
- .rotate-180 {
445
- rotate: 180deg;
357
+ .flex-1 {
358
+ flex: 1;
446
359
  }
447
360
  .transform {
448
361
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
@@ -465,9 +378,6 @@
465
378
  .flex-col {
466
379
  flex-direction: column;
467
380
  }
468
- .flex-wrap {
469
- flex-wrap: wrap;
470
- }
471
381
  .items-center {
472
382
  align-items: center;
473
383
  }
@@ -516,18 +426,18 @@
516
426
  margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
517
427
  }
518
428
  }
519
- .space-y-6 {
429
+ .space-y-5 {
520
430
  :where(& > :not(:last-child)) {
521
431
  --tw-space-y-reverse: 0;
522
- margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
523
- margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
432
+ margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
433
+ margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
524
434
  }
525
435
  }
526
- .space-y-8 {
436
+ .space-y-6 {
527
437
  :where(& > :not(:last-child)) {
528
438
  --tw-space-y-reverse: 0;
529
- margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
530
- margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
439
+ margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
440
+ margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
531
441
  }
532
442
  }
533
443
  .space-y-10 {
@@ -537,13 +447,6 @@
537
447
  margin-block-end: calc(calc(var(--spacing) * 10) * calc(1 - var(--tw-space-y-reverse)));
538
448
  }
539
449
  }
540
- .space-y-16 {
541
- :where(& > :not(:last-child)) {
542
- --tw-space-y-reverse: 0;
543
- margin-block-start: calc(calc(var(--spacing) * 16) * var(--tw-space-y-reverse));
544
- margin-block-end: calc(calc(var(--spacing) * 16) * calc(1 - var(--tw-space-y-reverse)));
545
- }
546
- }
547
450
  .space-y-20 {
548
451
  :where(& > :not(:last-child)) {
549
452
  --tw-space-y-reverse: 0;
@@ -551,10 +454,12 @@
551
454
  margin-block-end: calc(calc(var(--spacing) * 20) * calc(1 - var(--tw-space-y-reverse)));
552
455
  }
553
456
  }
554
- .truncate {
555
- overflow: hidden;
556
- text-overflow: ellipsis;
557
- white-space: nowrap;
457
+ .space-x-1 {
458
+ :where(& > :not(:last-child)) {
459
+ --tw-space-x-reverse: 0;
460
+ margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
461
+ margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
462
+ }
558
463
  }
559
464
  .overflow-scroll {
560
465
  overflow: scroll;
@@ -606,27 +511,42 @@
606
511
  .border-black {
607
512
  border-color: var(--color-black);
608
513
  }
514
+ .border-gray-900 {
515
+ border-color: var(--color-gray-900);
516
+ }
609
517
  .border-slate-200 {
610
518
  border-color: var(--color-slate-200);
611
519
  }
612
520
  .border-slate-300 {
613
521
  border-color: var(--color-slate-300);
614
522
  }
523
+ .bg-\[\#2e7d32\] {
524
+ background-color: #2e7d32;
525
+ }
526
+ .bg-\[\#d32f2f\] {
527
+ background-color: #d32f2f;
528
+ }
529
+ .bg-\[\#ed6c02\] {
530
+ background-color: #ed6c02;
531
+ }
532
+ .bg-blue-400 {
533
+ background-color: var(--color-blue-400);
534
+ }
615
535
  .bg-gray-200 {
616
536
  background-color: var(--color-gray-200);
617
537
  }
618
538
  .bg-gray-500 {
619
539
  background-color: var(--color-gray-500);
620
540
  }
541
+ .bg-green-200 {
542
+ background-color: var(--color-green-200);
543
+ }
621
544
  .bg-green-300 {
622
545
  background-color: var(--color-green-300);
623
546
  }
624
547
  .bg-red-300 {
625
548
  background-color: var(--color-red-300);
626
549
  }
627
- .bg-slate-50 {
628
- background-color: var(--color-slate-50);
629
- }
630
550
  .bg-slate-100 {
631
551
  background-color: var(--color-slate-100);
632
552
  }
@@ -636,13 +556,6 @@
636
556
  .bg-white {
637
557
  background-color: var(--color-white);
638
558
  }
639
- .bg-linear-to-br {
640
- --tw-gradient-position: to bottom right;
641
- @supports (background-image: linear-gradient(in lab, red, red)) {
642
- --tw-gradient-position: to bottom right in oklab;
643
- }
644
- background-image: linear-gradient(var(--tw-gradient-stops));
645
- }
646
559
  .bg-gradient-to-br {
647
560
  --tw-gradient-position: to bottom right in oklab;
648
561
  background-image: linear-gradient(var(--tw-gradient-stops));
@@ -651,21 +564,19 @@
651
564
  --tw-gradient-from: var(--color-emerald-50);
652
565
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
653
566
  }
654
- .from-slate-900 {
655
- --tw-gradient-from: var(--color-slate-900);
656
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
657
- }
658
567
  .to-cyan-50 {
659
568
  --tw-gradient-to: var(--color-cyan-50);
660
569
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
661
570
  }
662
- .to-slate-800 {
663
- --tw-gradient-to: var(--color-slate-800);
664
- --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
571
+ .p-1 {
572
+ padding: calc(var(--spacing) * 1);
665
573
  }
666
574
  .p-2 {
667
575
  padding: calc(var(--spacing) * 2);
668
576
  }
577
+ .p-3 {
578
+ padding: calc(var(--spacing) * 3);
579
+ }
669
580
  .p-4 {
670
581
  padding: calc(var(--spacing) * 4);
671
582
  }
@@ -681,12 +592,12 @@
681
592
  .p-10 {
682
593
  padding: calc(var(--spacing) * 10);
683
594
  }
684
- .px-1 {
685
- padding-inline: calc(var(--spacing) * 1);
686
- }
687
595
  .px-2 {
688
596
  padding-inline: calc(var(--spacing) * 2);
689
597
  }
598
+ .px-4 {
599
+ padding-inline: calc(var(--spacing) * 4);
600
+ }
690
601
  .px-5 {
691
602
  padding-inline: calc(var(--spacing) * 5);
692
603
  }
@@ -699,27 +610,21 @@
699
610
  .py-3 {
700
611
  padding-block: calc(var(--spacing) * 3);
701
612
  }
702
- .py-10 {
703
- padding-block: calc(var(--spacing) * 10);
704
- }
705
613
  .py-12 {
706
614
  padding-block: calc(var(--spacing) * 12);
707
615
  }
708
- .pb-1 {
709
- padding-bottom: calc(var(--spacing) * 1);
710
- }
711
616
  .pb-1\.5 {
712
617
  padding-bottom: calc(var(--spacing) * 1.5);
713
618
  }
714
- .pl-58661 {
715
- padding-left: calc(var(--spacing) * 58661);
716
- }
717
619
  .text-center {
718
620
  text-align: center;
719
621
  }
720
622
  .text-left {
721
623
  text-align: left;
722
624
  }
625
+ .text-right {
626
+ text-align: right;
627
+ }
723
628
  .font-mono {
724
629
  font-family: var(--font-mono);
725
630
  }
@@ -751,10 +656,6 @@
751
656
  font-size: var(--text-xl);
752
657
  line-height: var(--tw-leading, var(--text-xl--line-height));
753
658
  }
754
- .leading-15878 {
755
- --tw-leading: calc(var(--spacing) * 15878);
756
- line-height: calc(var(--spacing) * 15878);
757
- }
758
659
  .leading-relaxed {
759
660
  --tw-leading: var(--leading-relaxed);
760
661
  line-height: var(--leading-relaxed);
@@ -763,13 +664,24 @@
763
664
  --tw-font-weight: var(--font-weight-bold);
764
665
  font-weight: var(--font-weight-bold);
765
666
  }
667
+ .font-medium {
668
+ --tw-font-weight: var(--font-weight-medium);
669
+ font-weight: var(--font-weight-medium);
670
+ }
766
671
  .font-semibold {
767
672
  --tw-font-weight: var(--font-weight-semibold);
768
673
  font-weight: var(--font-weight-semibold);
769
674
  }
675
+ .tracking-wide {
676
+ --tw-tracking: var(--tracking-wide);
677
+ letter-spacing: var(--tracking-wide);
678
+ }
770
679
  .text-black {
771
680
  color: var(--color-black);
772
681
  }
682
+ .text-blue-800 {
683
+ color: var(--color-blue-800);
684
+ }
773
685
  .text-emerald-300 {
774
686
  color: var(--color-emerald-300);
775
687
  }
@@ -791,35 +703,9 @@
791
703
  .text-slate-800 {
792
704
  color: var(--color-slate-800);
793
705
  }
794
- .text-slate-900 {
795
- color: var(--color-slate-900);
796
- }
797
706
  .text-white {
798
707
  color: var(--color-white);
799
708
  }
800
- .capitalize {
801
- text-transform: capitalize;
802
- }
803
- .lowercase {
804
- text-transform: lowercase;
805
- }
806
- .uppercase {
807
- text-transform: uppercase;
808
- }
809
- .italic {
810
- font-style: italic;
811
- }
812
- .ordinal {
813
- --tw-ordinal: ordinal;
814
- font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
815
- }
816
- .underline {
817
- text-decoration-line: underline;
818
- }
819
- .antialiased {
820
- -webkit-font-smoothing: antialiased;
821
- -moz-osx-font-smoothing: grayscale;
822
- }
823
709
  .shadow {
824
710
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
825
711
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -836,74 +722,48 @@
836
722
  --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
837
723
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
838
724
  }
839
- .ring {
840
- --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
841
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
842
- }
843
- .outline {
844
- outline-style: var(--tw-outline-style);
845
- outline-width: 1px;
846
- }
847
- .outline-18360 {
848
- outline-style: var(--tw-outline-style);
849
- outline-width: 18360px;
850
- }
851
- .blur {
852
- --tw-blur: blur(8px);
853
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
854
- }
855
- .grayscale {
856
- --tw-grayscale: grayscale(100%);
857
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
858
- }
859
- .invert {
860
- --tw-invert: invert(100%);
861
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
862
- }
863
- .sepia {
864
- --tw-sepia: sepia(100%);
865
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
866
- }
867
- .filter {
868
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
725
+ .backdrop-blur-md {
726
+ --tw-backdrop-blur: blur(var(--blur-md));
727
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
728
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
869
729
  }
870
730
  .transition {
871
731
  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;
872
732
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
873
733
  transition-duration: var(--tw-duration, var(--default-transition-duration));
874
734
  }
875
- .\[a\:x\] {
876
- a: x;
877
- }
878
- .\[hw\:1\] {
879
- hw: 1;
880
- }
881
- .\[mailto\:marco-oweber\@gmx\.de\] {
882
- mailto: marco-oweber@gmx.de;
883
- }
884
- .\[nix-shell\:\~\] {
885
- nix-shell: ~;
886
- }
887
- .\[plughw\:1\,0\] {
888
- plughw: 1,0;
889
- }
890
- .\[rightalt\:G\] {
891
- rightalt: G;
735
+ .transition-all {
736
+ transition-property: all;
737
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
738
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
892
739
  }
893
- .\[testenv\:docs\] {
894
- testenv: docs;
740
+ .outline-none {
741
+ --tw-outline-style: none;
742
+ outline-style: none;
895
743
  }
896
- .\[tool\:pytest\] {
897
- tool: pytest;
744
+ .hover\:cursor-pointer {
745
+ &:hover {
746
+ @media (hover: hover) {
747
+ cursor: pointer;
748
+ }
749
+ }
898
750
  }
899
- .\[translation\:info\] {
900
- translation: info;
751
+ .hover\:bg-green-300 {
752
+ &:hover {
753
+ @media (hover: hover) {
754
+ background-color: var(--color-green-300);
755
+ }
756
+ }
901
757
  }
902
- .\[tytso\:19940520\.0036EDT\] {
903
- tytso: 19940520.0036EDT;
758
+ .md\:right-\[60px\] {
759
+ @media (width >= 48rem) {
760
+ right: 60px;
761
+ }
904
762
  }
905
- .\[vhost\:www\.example\.com\] {
906
- vhost: www.example.com;
763
+ .md\:left-auto {
764
+ @media (width >= 48rem) {
765
+ left: auto;
766
+ }
907
767
  }
908
768
  .md\:grid-cols-2 {
909
769
  @media (width >= 48rem) {
@@ -947,21 +807,6 @@
947
807
  }
948
808
  }
949
809
  }
950
- @property --tw-scale-x {
951
- syntax: "*";
952
- inherits: false;
953
- initial-value: 1;
954
- }
955
- @property --tw-scale-y {
956
- syntax: "*";
957
- inherits: false;
958
- initial-value: 1;
959
- }
960
- @property --tw-scale-z {
961
- syntax: "*";
962
- inherits: false;
963
- initial-value: 1;
964
- }
965
810
  @property --tw-rotate-x {
966
811
  syntax: "*";
967
812
  inherits: false;
@@ -987,6 +832,11 @@
987
832
  inherits: false;
988
833
  initial-value: 0;
989
834
  }
835
+ @property --tw-space-x-reverse {
836
+ syntax: "*";
837
+ inherits: false;
838
+ initial-value: 0;
839
+ }
990
840
  @property --tw-border-style {
991
841
  syntax: "*";
992
842
  inherits: false;
@@ -1042,23 +892,7 @@
1042
892
  syntax: "*";
1043
893
  inherits: false;
1044
894
  }
1045
- @property --tw-ordinal {
1046
- syntax: "*";
1047
- inherits: false;
1048
- }
1049
- @property --tw-slashed-zero {
1050
- syntax: "*";
1051
- inherits: false;
1052
- }
1053
- @property --tw-numeric-figure {
1054
- syntax: "*";
1055
- inherits: false;
1056
- }
1057
- @property --tw-numeric-spacing {
1058
- syntax: "*";
1059
- inherits: false;
1060
- }
1061
- @property --tw-numeric-fraction {
895
+ @property --tw-tracking {
1062
896
  syntax: "*";
1063
897
  inherits: false;
1064
898
  }
@@ -1127,76 +961,52 @@
1127
961
  inherits: false;
1128
962
  initial-value: 0 0 #0000;
1129
963
  }
1130
- @property --tw-outline-style {
1131
- syntax: "*";
1132
- inherits: false;
1133
- initial-value: solid;
1134
- }
1135
- @property --tw-blur {
964
+ @property --tw-backdrop-blur {
1136
965
  syntax: "*";
1137
966
  inherits: false;
1138
967
  }
1139
- @property --tw-brightness {
968
+ @property --tw-backdrop-brightness {
1140
969
  syntax: "*";
1141
970
  inherits: false;
1142
971
  }
1143
- @property --tw-contrast {
972
+ @property --tw-backdrop-contrast {
1144
973
  syntax: "*";
1145
974
  inherits: false;
1146
975
  }
1147
- @property --tw-grayscale {
976
+ @property --tw-backdrop-grayscale {
1148
977
  syntax: "*";
1149
978
  inherits: false;
1150
979
  }
1151
- @property --tw-hue-rotate {
980
+ @property --tw-backdrop-hue-rotate {
1152
981
  syntax: "*";
1153
982
  inherits: false;
1154
983
  }
1155
- @property --tw-invert {
984
+ @property --tw-backdrop-invert {
1156
985
  syntax: "*";
1157
986
  inherits: false;
1158
987
  }
1159
- @property --tw-opacity {
988
+ @property --tw-backdrop-opacity {
1160
989
  syntax: "*";
1161
990
  inherits: false;
1162
991
  }
1163
- @property --tw-saturate {
992
+ @property --tw-backdrop-saturate {
1164
993
  syntax: "*";
1165
994
  inherits: false;
1166
995
  }
1167
- @property --tw-sepia {
1168
- syntax: "*";
1169
- inherits: false;
1170
- }
1171
- @property --tw-drop-shadow {
1172
- syntax: "*";
1173
- inherits: false;
1174
- }
1175
- @property --tw-drop-shadow-color {
1176
- syntax: "*";
1177
- inherits: false;
1178
- }
1179
- @property --tw-drop-shadow-alpha {
1180
- syntax: "<percentage>";
1181
- inherits: false;
1182
- initial-value: 100%;
1183
- }
1184
- @property --tw-drop-shadow-size {
996
+ @property --tw-backdrop-sepia {
1185
997
  syntax: "*";
1186
998
  inherits: false;
1187
999
  }
1188
1000
  @layer properties {
1189
1001
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1190
1002
  *, ::before, ::after, ::backdrop {
1191
- --tw-scale-x: 1;
1192
- --tw-scale-y: 1;
1193
- --tw-scale-z: 1;
1194
1003
  --tw-rotate-x: initial;
1195
1004
  --tw-rotate-y: initial;
1196
1005
  --tw-rotate-z: initial;
1197
1006
  --tw-skew-x: initial;
1198
1007
  --tw-skew-y: initial;
1199
1008
  --tw-space-y-reverse: 0;
1009
+ --tw-space-x-reverse: 0;
1200
1010
  --tw-border-style: solid;
1201
1011
  --tw-gradient-position: initial;
1202
1012
  --tw-gradient-from: #0000;
@@ -1209,11 +1019,7 @@
1209
1019
  --tw-gradient-to-position: 100%;
1210
1020
  --tw-leading: initial;
1211
1021
  --tw-font-weight: initial;
1212
- --tw-ordinal: initial;
1213
- --tw-slashed-zero: initial;
1214
- --tw-numeric-figure: initial;
1215
- --tw-numeric-spacing: initial;
1216
- --tw-numeric-fraction: initial;
1022
+ --tw-tracking: initial;
1217
1023
  --tw-shadow: 0 0 #0000;
1218
1024
  --tw-shadow-color: initial;
1219
1025
  --tw-shadow-alpha: 100%;
@@ -1228,20 +1034,15 @@
1228
1034
  --tw-ring-offset-width: 0px;
1229
1035
  --tw-ring-offset-color: #fff;
1230
1036
  --tw-ring-offset-shadow: 0 0 #0000;
1231
- --tw-outline-style: solid;
1232
- --tw-blur: initial;
1233
- --tw-brightness: initial;
1234
- --tw-contrast: initial;
1235
- --tw-grayscale: initial;
1236
- --tw-hue-rotate: initial;
1237
- --tw-invert: initial;
1238
- --tw-opacity: initial;
1239
- --tw-saturate: initial;
1240
- --tw-sepia: initial;
1241
- --tw-drop-shadow: initial;
1242
- --tw-drop-shadow-color: initial;
1243
- --tw-drop-shadow-alpha: 100%;
1244
- --tw-drop-shadow-size: initial;
1037
+ --tw-backdrop-blur: initial;
1038
+ --tw-backdrop-brightness: initial;
1039
+ --tw-backdrop-contrast: initial;
1040
+ --tw-backdrop-grayscale: initial;
1041
+ --tw-backdrop-hue-rotate: initial;
1042
+ --tw-backdrop-invert: initial;
1043
+ --tw-backdrop-opacity: initial;
1044
+ --tw-backdrop-saturate: initial;
1045
+ --tw-backdrop-sepia: initial;
1245
1046
  }
1246
1047
  }
1247
1048
  }