@nswds/app 1.63.0 → 1.64.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.
package/dist/globals.css CHANGED
@@ -18,6 +18,8 @@
18
18
  --color-green-600: oklch(62.7% 0.194 149.214);
19
19
  --color-emerald-500: oklch(69.6% 0.17 162.48);
20
20
  --color-cyan-500: oklch(71.5% 0.143 215.221);
21
+ --color-sky-100: oklch(95.1% 0.026 236.824);
22
+ --color-sky-600: oklch(58.8% 0.158 241.966);
21
23
  --color-blue-50: oklch(97% 0.014 254.604);
22
24
  --color-blue-100: oklch(93.2% 0.032 255.585);
23
25
  --color-blue-200: oklch(88.2% 0.059 254.128);
@@ -37,6 +39,8 @@
37
39
  --color-purple-600: oklch(55.8% 0.288 302.321);
38
40
  --color-fuchsia-500: oklch(66.7% 0.295 322.15);
39
41
  --color-pink-500: oklch(65.6% 0.241 354.308);
42
+ --color-slate-50: oklch(98.4% 0.003 247.858);
43
+ --color-slate-100: oklch(96.8% 0.007 247.896);
40
44
  --color-slate-200: oklch(92.9% 0.013 255.508);
41
45
  --color-slate-300: oklch(86.9% 0.022 252.894);
42
46
  --color-slate-400: oklch(70.4% 0.04 256.788);
@@ -61,12 +65,14 @@
61
65
  --color-black: #000;
62
66
  --color-white: #fff;
63
67
  --spacing: 0.25rem;
68
+ --container-xs: 20rem;
64
69
  --container-sm: 24rem;
65
70
  --container-md: 28rem;
66
71
  --container-lg: 32rem;
67
72
  --container-2xl: 42rem;
68
73
  --container-3xl: 48rem;
69
74
  --container-4xl: 56rem;
75
+ --container-7xl: 80rem;
70
76
  --text-xs: 0.75rem;
71
77
  --text-xs--line-height: calc(1 / 0.75);
72
78
  --text-sm: 0.875rem;
@@ -83,6 +89,10 @@
83
89
  --text-3xl--line-height: calc(2.25 / 1.875);
84
90
  --text-4xl: 2.25rem;
85
91
  --text-4xl--line-height: calc(2.5 / 2.25);
92
+ --text-5xl: 3rem;
93
+ --text-5xl--line-height: 1;
94
+ --text-6xl: 3.75rem;
95
+ --text-6xl--line-height: 1;
86
96
  --font-weight-light: 300;
87
97
  --font-weight-normal: 400;
88
98
  --font-weight-medium: 500;
@@ -1048,6 +1058,15 @@
1048
1058
  .mt-12 {
1049
1059
  margin-top: calc(var(--spacing) * 12);
1050
1060
  }
1061
+ .mt-16 {
1062
+ margin-top: calc(var(--spacing) * 16);
1063
+ }
1064
+ .mt-20 {
1065
+ margin-top: calc(var(--spacing) * 20);
1066
+ }
1067
+ .mt-24 {
1068
+ margin-top: calc(var(--spacing) * 24);
1069
+ }
1051
1070
  .mt-auto {
1052
1071
  margin-top: auto;
1053
1072
  }
@@ -1081,12 +1100,18 @@
1081
1100
  .mb-4 {
1082
1101
  margin-bottom: calc(var(--spacing) * 4);
1083
1102
  }
1103
+ .mb-6 {
1104
+ margin-bottom: calc(var(--spacing) * 6);
1105
+ }
1084
1106
  .mb-8 {
1085
1107
  margin-bottom: calc(var(--spacing) * 8);
1086
1108
  }
1087
1109
  .mb-12 {
1088
1110
  margin-bottom: calc(var(--spacing) * 12);
1089
1111
  }
1112
+ .mb-16 {
1113
+ margin-bottom: calc(var(--spacing) * 16);
1114
+ }
1090
1115
  .mb-\[40px\] {
1091
1116
  margin-bottom: 40px;
1092
1117
  }
@@ -1186,6 +1211,9 @@
1186
1211
  .field-sizing-content {
1187
1212
  field-sizing: content;
1188
1213
  }
1214
+ .aspect-\[3\/2\] {
1215
+ aspect-ratio: 3/2;
1216
+ }
1189
1217
  .aspect-square {
1190
1218
  aspect-ratio: 1 / 1;
1191
1219
  }
@@ -1399,6 +1427,9 @@
1399
1427
  .min-h-32 {
1400
1428
  min-height: calc(var(--spacing) * 32);
1401
1429
  }
1430
+ .min-h-\[80px\] {
1431
+ min-height: 80px;
1432
+ }
1402
1433
  .min-h-\[200px\] {
1403
1434
  min-height: 200px;
1404
1435
  }
@@ -1429,6 +1460,9 @@
1429
1460
  .w-1 {
1430
1461
  width: calc(var(--spacing) * 1);
1431
1462
  }
1463
+ .w-1\.5 {
1464
+ width: calc(var(--spacing) * 1.5);
1465
+ }
1432
1466
  .w-2 {
1433
1467
  width: calc(var(--spacing) * 2);
1434
1468
  }
@@ -1570,6 +1604,9 @@
1570
1604
  .max-w-4xl {
1571
1605
  max-width: var(--container-4xl);
1572
1606
  }
1607
+ .max-w-7xl {
1608
+ max-width: var(--container-7xl);
1609
+ }
1573
1610
  .max-w-60 {
1574
1611
  max-width: calc(var(--spacing) * 60);
1575
1612
  }
@@ -1600,6 +1637,9 @@
1600
1637
  .max-w-sm {
1601
1638
  max-width: var(--container-sm);
1602
1639
  }
1640
+ .max-w-xs {
1641
+ max-width: var(--container-xs);
1642
+ }
1603
1643
  .min-w-\(--cell-size\) {
1604
1644
  min-width: var(--cell-size);
1605
1645
  }
@@ -2193,9 +2233,6 @@
2193
2233
  .rounded-sm {
2194
2234
  border-radius: var(--radius-sm);
2195
2235
  }
2196
- .rounded-xl {
2197
- border-radius: var(--radius-xl);
2198
- }
2199
2236
  .rounded-xs {
2200
2237
  border-radius: var(--radius-xs);
2201
2238
  }
@@ -2450,6 +2487,9 @@
2450
2487
  .bg-accent {
2451
2488
  background-color: var(--accent);
2452
2489
  }
2490
+ .bg-accent-800 {
2491
+ background-color: oklch(0.31696739530944956 0.1268869779210199 17.133122508570153);
2492
+ }
2453
2493
  .bg-amber-500 {
2454
2494
  background-color: var(--color-amber-500);
2455
2495
  }
@@ -2474,12 +2514,18 @@
2474
2514
  .bg-blue-50 {
2475
2515
  background-color: var(--color-blue-50);
2476
2516
  }
2517
+ .bg-blue-100 {
2518
+ background-color: var(--color-blue-100);
2519
+ }
2477
2520
  .bg-blue-200 {
2478
2521
  background-color: var(--color-blue-200);
2479
2522
  }
2480
2523
  .bg-blue-500 {
2481
2524
  background-color: var(--color-blue-500);
2482
2525
  }
2526
+ .bg-blue-600 {
2527
+ background-color: var(--color-blue-600);
2528
+ }
2483
2529
  .bg-border {
2484
2530
  background-color: var(--border);
2485
2531
  }
@@ -2588,6 +2634,9 @@
2588
2634
  .bg-primary {
2589
2635
  background-color: var(--primary);
2590
2636
  }
2637
+ .bg-primary-50 {
2638
+ background-color: oklch(0.9816683948128555 0.013540580086234762 227.890755564881);
2639
+ }
2591
2640
  .bg-primary-200 {
2592
2641
  background-color: oklch(0.9266735792514218 0.04166332334226081 227.890755564881);
2593
2642
  }
@@ -2627,6 +2676,15 @@
2627
2676
  .bg-sidebar-primary {
2628
2677
  background-color: var(--sidebar-primary);
2629
2678
  }
2679
+ .bg-sky-100 {
2680
+ background-color: var(--color-sky-100);
2681
+ }
2682
+ .bg-slate-50 {
2683
+ background-color: var(--color-slate-50);
2684
+ }
2685
+ .bg-slate-100 {
2686
+ background-color: var(--color-slate-100);
2687
+ }
2630
2688
  .bg-success-200 {
2631
2689
  background-color: var(--color-success-200);
2632
2690
  }
@@ -2813,6 +2871,9 @@
2813
2871
  .stroke-1 {
2814
2872
  stroke-width: 1;
2815
2873
  }
2874
+ .object-cover {
2875
+ object-fit: cover;
2876
+ }
2816
2877
  .p-0 {
2817
2878
  padding: calc(var(--spacing) * 0);
2818
2879
  }
@@ -2954,6 +3015,9 @@
2954
3015
  .py-16 {
2955
3016
  padding-block: calc(var(--spacing) * 16);
2956
3017
  }
3018
+ .py-20 {
3019
+ padding-block: calc(var(--spacing) * 20);
3020
+ }
2957
3021
  .py-\[calc\(--spacing\(1\)\)\] {
2958
3022
  padding-block: calc(calc(var(--spacing) * 1));
2959
3023
  }
@@ -2987,12 +3051,18 @@
2987
3051
  .pt-6 {
2988
3052
  padding-top: calc(var(--spacing) * 6);
2989
3053
  }
3054
+ .pt-10 {
3055
+ padding-top: calc(var(--spacing) * 10);
3056
+ }
2990
3057
  .pt-14 {
2991
3058
  padding-top: calc(var(--spacing) * 14);
2992
3059
  }
2993
3060
  .pt-16 {
2994
3061
  padding-top: calc(var(--spacing) * 16);
2995
3062
  }
3063
+ .pt-32 {
3064
+ padding-top: calc(var(--spacing) * 32);
3065
+ }
2996
3066
  .pt-\[40px\] {
2997
3067
  padding-top: 40px;
2998
3068
  }
@@ -3035,6 +3105,9 @@
3035
3105
  .pb-0 {
3036
3106
  padding-bottom: calc(var(--spacing) * 0);
3037
3107
  }
3108
+ .pb-2 {
3109
+ padding-bottom: calc(var(--spacing) * 2);
3110
+ }
3038
3111
  .pb-3 {
3039
3112
  padding-bottom: calc(var(--spacing) * 3);
3040
3113
  }
@@ -3047,6 +3120,12 @@
3047
3120
  .pb-16 {
3048
3121
  padding-bottom: calc(var(--spacing) * 16);
3049
3122
  }
3123
+ .pb-20 {
3124
+ padding-bottom: calc(var(--spacing) * 20);
3125
+ }
3126
+ .pb-24 {
3127
+ padding-bottom: calc(var(--spacing) * 24);
3128
+ }
3050
3129
  .pb-\[24px\] {
3051
3130
  padding-bottom: 24px;
3052
3131
  }
@@ -3218,6 +3297,10 @@
3218
3297
  --tw-leading: calc(var(--spacing) * 7);
3219
3298
  line-height: calc(var(--spacing) * 7);
3220
3299
  }
3300
+ .leading-8 {
3301
+ --tw-leading: calc(var(--spacing) * 8);
3302
+ line-height: calc(var(--spacing) * 8);
3303
+ }
3221
3304
  .leading-\[var\(--line-height\)\] {
3222
3305
  --tw-leading: var(--line-height);
3223
3306
  line-height: var(--line-height);
@@ -3270,6 +3353,10 @@
3270
3353
  --tw-leading: 1;
3271
3354
  line-height: 1;
3272
3355
  }
3356
+ .leading-relaxed {
3357
+ --tw-leading: var(--leading-relaxed);
3358
+ line-height: var(--leading-relaxed);
3359
+ }
3273
3360
  .leading-tight {
3274
3361
  --tw-leading: var(--leading-tight);
3275
3362
  line-height: var(--leading-tight);
@@ -3373,6 +3460,9 @@
3373
3460
  .text-blue-700 {
3374
3461
  color: var(--color-blue-700);
3375
3462
  }
3463
+ .text-blue-800 {
3464
+ color: var(--color-blue-800);
3465
+ }
3376
3466
  .text-card-foreground {
3377
3467
  color: var(--card-foreground);
3378
3468
  }
@@ -3508,9 +3598,15 @@
3508
3598
  .text-sidebar-primary-foreground {
3509
3599
  color: var(--sidebar-primary-foreground);
3510
3600
  }
3601
+ .text-sky-600 {
3602
+ color: var(--color-sky-600);
3603
+ }
3511
3604
  .text-slate-500 {
3512
3605
  color: var(--color-slate-500);
3513
3606
  }
3607
+ .text-slate-600 {
3608
+ color: var(--color-slate-600);
3609
+ }
3514
3610
  .text-slate-900 {
3515
3611
  color: var(--color-slate-900);
3516
3612
  }
@@ -7858,6 +7954,11 @@
7858
7954
  margin-top: calc(var(--spacing) * 0);
7859
7955
  }
7860
7956
  }
7957
+ .sm\:mt-10 {
7958
+ @media (width >= 40rem) {
7959
+ margin-top: calc(var(--spacing) * 10);
7960
+ }
7961
+ }
7861
7962
  .sm\:ml-2 {
7862
7963
  @media (width >= 40rem) {
7863
7964
  margin-left: calc(var(--spacing) * 2);
@@ -8117,6 +8218,11 @@
8117
8218
  padding-right: calc(var(--spacing) * 16);
8118
8219
  }
8119
8220
  }
8221
+ .sm\:pb-32 {
8222
+ @media (width >= 40rem) {
8223
+ padding-bottom: calc(var(--spacing) * 32);
8224
+ }
8225
+ }
8120
8226
  .sm\:pl-1\.5 {
8121
8227
  @media (width >= 40rem) {
8122
8228
  padding-left: calc(var(--spacing) * 1.5);
@@ -8137,6 +8243,24 @@
8137
8243
  text-align: left;
8138
8244
  }
8139
8245
  }
8246
+ .sm\:text-4xl {
8247
+ @media (width >= 40rem) {
8248
+ font-size: var(--text-4xl);
8249
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
8250
+ }
8251
+ }
8252
+ .sm\:text-5xl {
8253
+ @media (width >= 40rem) {
8254
+ font-size: var(--text-5xl);
8255
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
8256
+ }
8257
+ }
8258
+ .sm\:text-6xl {
8259
+ @media (width >= 40rem) {
8260
+ font-size: var(--text-6xl);
8261
+ line-height: var(--tw-leading, var(--text-6xl--line-height));
8262
+ }
8263
+ }
8140
8264
  .sm\:text-sm\/5 {
8141
8265
  @media (width >= 40rem) {
8142
8266
  font-size: var(--text-sm);
@@ -8375,6 +8499,11 @@
8375
8499
  padding: calc(var(--spacing) * 0);
8376
8500
  }
8377
8501
  }
8502
+ .md\:p-12 {
8503
+ @media (width >= 48rem) {
8504
+ padding: calc(var(--spacing) * 12);
8505
+ }
8506
+ }
8378
8507
  .md\:px-0 {
8379
8508
  @media (width >= 48rem) {
8380
8509
  padding-inline: calc(var(--spacing) * 0);
@@ -8442,16 +8571,46 @@
8442
8571
  }
8443
8572
  }
8444
8573
  }
8574
+ .lg\:absolute {
8575
+ @media (width >= 64rem) {
8576
+ position: absolute;
8577
+ }
8578
+ }
8445
8579
  .lg\:relative {
8446
8580
  @media (width >= 64rem) {
8447
8581
  position: relative;
8448
8582
  }
8449
8583
  }
8584
+ .lg\:inset-0 {
8585
+ @media (width >= 64rem) {
8586
+ inset: calc(var(--spacing) * 0);
8587
+ }
8588
+ }
8589
+ .lg\:col-span-4 {
8590
+ @media (width >= 64rem) {
8591
+ grid-column: span 4 / span 4;
8592
+ }
8593
+ }
8594
+ .lg\:col-span-8 {
8595
+ @media (width >= 64rem) {
8596
+ grid-column: span 8 / span 8;
8597
+ }
8598
+ }
8599
+ .lg\:mx-0 {
8600
+ @media (width >= 64rem) {
8601
+ margin-inline: calc(var(--spacing) * 0);
8602
+ }
8603
+ }
8450
8604
  .lg\:mt-4 {
8451
8605
  @media (width >= 64rem) {
8452
8606
  margin-top: calc(var(--spacing) * 4);
8453
8607
  }
8454
8608
  }
8609
+ .lg\:-mr-8 {
8610
+ @media (width >= 64rem) {
8611
+ margin-right: calc(var(--spacing) * -8);
8612
+ }
8613
+ }
8455
8614
  .lg\:ml-6 {
8456
8615
  @media (width >= 64rem) {
8457
8616
  margin-left: calc(var(--spacing) * 6);
@@ -8467,6 +8626,11 @@
8467
8626
  display: flex;
8468
8627
  }
8469
8628
  }
8629
+ .lg\:grid {
8630
+ @media (width >= 64rem) {
8631
+ display: grid;
8632
+ }
8633
+ }
8470
8634
  .lg\:hidden {
8471
8635
  @media (width >= 64rem) {
8472
8636
  display: none;
@@ -8477,11 +8641,21 @@
8477
8641
  display: inline-flex;
8478
8642
  }
8479
8643
  }
8644
+ .lg\:aspect-auto {
8645
+ @media (width >= 64rem) {
8646
+ aspect-ratio: auto;
8647
+ }
8648
+ }
8480
8649
  .lg\:h-14 {
8481
8650
  @media (width >= 64rem) {
8482
8651
  height: calc(var(--spacing) * 14);
8483
8652
  }
8484
8653
  }
8654
+ .lg\:h-full {
8655
+ @media (width >= 64rem) {
8656
+ height: 100%;
8657
+ }
8658
+ }
8485
8659
  .lg\:w-64 {
8486
8660
  @media (width >= 64rem) {
8487
8661
  width: calc(var(--spacing) * 64);
@@ -8527,6 +8701,11 @@
8527
8701
  grid-template-columns: repeat(6, minmax(0, 1fr));
8528
8702
  }
8529
8703
  }
8704
+ .lg\:grid-cols-12 {
8705
+ @media (width >= 64rem) {
8706
+ grid-template-columns: repeat(12, minmax(0, 1fr));
8707
+ }
8708
+ }
8530
8709
  .lg\:flex-wrap {
8531
8710
  @media (width >= 64rem) {
8532
8711
  flex-wrap: wrap;
@@ -8552,6 +8731,11 @@
8552
8731
  justify-content: flex-start;
8553
8732
  }
8554
8733
  }
8734
+ .lg\:gap-x-8 {
8735
+ @media (width >= 64rem) {
8736
+ column-gap: calc(var(--spacing) * 8);
8737
+ }
8738
+ }
8555
8739
  .lg\:space-x-6 {
8556
8740
  @media (width >= 64rem) {
8557
8741
  :where(& > :not(:last-child)) {
@@ -8585,6 +8769,11 @@
8585
8769
  padding: calc(var(--spacing) * 10);
8586
8770
  }
8587
8771
  }
8772
+ .lg\:px-0 {
8773
+ @media (width >= 64rem) {
8774
+ padding-inline: calc(var(--spacing) * 0);
8775
+ }
8776
+ }
8588
8777
  .lg\:px-4 {
8589
8778
  @media (width >= 64rem) {
8590
8779
  padding-inline: calc(var(--spacing) * 4);
@@ -8600,6 +8789,11 @@
8600
8789
  padding-inline: calc(var(--spacing) * 12);
8601
8790
  }
8602
8791
  }
8792
+ .lg\:pt-24 {
8793
+ @media (width >= 64rem) {
8794
+ padding-top: calc(var(--spacing) * 24);
8795
+ }
8796
+ }
8603
8797
  .lg\:pr-0 {
8604
8798
  @media (width >= 64rem) {
8605
8799
  padding-right: calc(var(--spacing) * 0);
@@ -8610,6 +8804,11 @@
8610
8804
  padding-right: calc(var(--spacing) * 12);
8611
8805
  }
8612
8806
  }
8807
+ .lg\:pb-28 {
8808
+ @media (width >= 64rem) {
8809
+ padding-bottom: calc(var(--spacing) * 28);
8810
+ }
8811
+ }
8613
8812
  .lg\:pl-8 {
8614
8813
  @media (width >= 64rem) {
8615
8814
  padding-left: calc(var(--spacing) * 8);
@@ -8620,6 +8819,12 @@
8620
8819
  text-align: left;
8621
8820
  }
8622
8821
  }
8822
+ .lg\:text-6xl {
8823
+ @media (width >= 64rem) {
8824
+ font-size: var(--text-6xl);
8825
+ line-height: var(--tw-leading, var(--text-6xl--line-height));
8826
+ }
8827
+ }
8623
8828
  .lg\:text-sm {
8624
8829
  @media (width >= 64rem) {
8625
8830
  font-size: var(--text-sm);
@@ -8643,21 +8848,46 @@
8643
8848
  --tw-ring-color: color-mix(in oklab, oklch(0.12797094101582737 0.005697984318774021 242.08383926925922) 5%, transparent);
8644
8849
  }
8645
8850
  }
8851
+ .xl\:absolute {
8852
+ @media (width >= 80rem) {
8853
+ position: absolute;
8854
+ }
8855
+ }
8646
8856
  .xl\:sticky {
8647
8857
  @media (width >= 80rem) {
8648
8858
  position: sticky;
8649
8859
  }
8650
8860
  }
8861
+ .xl\:inset-0 {
8862
+ @media (width >= 80rem) {
8863
+ inset: calc(var(--spacing) * 0);
8864
+ }
8865
+ }
8651
8866
  .xl\:top-0 {
8652
8867
  @media (width >= 80rem) {
8653
8868
  top: calc(var(--spacing) * 0);
8654
8869
  }
8655
8870
  }
8871
+ .xl\:left-2\/3 {
8872
+ @media (width >= 80rem) {
8873
+ left: calc(2/3 * 100%);
8874
+ }
8875
+ }
8876
+ .xl\:col-span-8 {
8877
+ @media (width >= 80rem) {
8878
+ grid-column: span 8 / span 8;
8879
+ }
8880
+ }
8656
8881
  .xl\:-mr-6 {
8657
8882
  @media (width >= 80rem) {
8658
8883
  margin-right: calc(var(--spacing) * -6);
8659
8884
  }
8660
8885
  }
8886
+ .xl\:mr-0 {
8887
+ @media (width >= 80rem) {
8888
+ margin-right: calc(var(--spacing) * 0);
8889
+ }
8890
+ }
8661
8891
  .xl\:block {
8662
8892
  @media (width >= 80rem) {
8663
8893
  display: block;
@@ -11516,6 +11746,102 @@ code.language-html .token.comment {
11516
11746
  .dark #carbonads .carbon-poweredby {
11517
11747
  --tw-bg-opacity: 1;
11518
11748
  }
11749
+ :root {
11750
+ --font-size-1: calc(18px * var(--scaling));
11751
+ --font-size-2: calc(16px * var(--scaling));
11752
+ --font-size-3: calc(14px * var(--scaling));
11753
+ --font-size-4: calc(12px * var(--scaling));
11754
+ --font-weight-light: 300;
11755
+ --font-weight-regular: 400;
11756
+ --font-weight-medium: 500;
11757
+ --font-weight-bold: 700;
11758
+ --display-font-size-1: calc(88px * var(--scaling));
11759
+ --display-font-size-2: calc(52px * var(--scaling));
11760
+ --display-font-size-3: calc(48px * var(--scaling));
11761
+ --display-font-size-4: calc(44px * var(--scaling));
11762
+ --heading-font-size-1: calc(40px * var(--scaling));
11763
+ --heading-font-size-2: calc(36px * var(--scaling));
11764
+ --heading-font-size-3: calc(32px * var(--scaling));
11765
+ --heading-font-size-4: calc(28px * var(--scaling));
11766
+ --heading-font-size-5: calc(24px * var(--scaling));
11767
+ --heading-font-size-6: calc(20px * var(--scaling));
11768
+ --line-height-16: calc(16px * var(--scaling));
11769
+ --line-height-18: calc(18px * var(--scaling));
11770
+ --line-height-20: calc(20px * var(--scaling));
11771
+ --line-height-22: calc(22px * var(--scaling));
11772
+ --line-height-24: calc(24px * var(--scaling));
11773
+ --line-height-26: calc(26px * var(--scaling));
11774
+ --line-height-28: calc(28px * var(--scaling));
11775
+ --line-height-30: calc(30px * var(--scaling));
11776
+ --line-height-32: calc(32px * var(--scaling));
11777
+ --line-height-36: calc(36px * var(--scaling));
11778
+ --line-height-40: calc(40px * var(--scaling));
11779
+ --line-height-44: calc(44px * var(--scaling));
11780
+ --line-height-52: calc(52px * var(--scaling));
11781
+ --line-height-60: calc(60px * var(--scaling));
11782
+ --line-height-68: calc(68px * var(--scaling));
11783
+ --line-height-96: calc(96px * var(--scaling));
11784
+ --letter-spacing-0: 0em;
11785
+ --heading-letter-spacing-1: -0.01em;
11786
+ --heading-letter-spacing-2: -0.02em;
11787
+ --heading-letter-spacing-3: -0.03em;
11788
+ --default-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
11789
+ 'Open Sans', system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
11790
+ --default-font-size: var(--font-size-2);
11791
+ --default-font-style: normal;
11792
+ --default-font-weight: var(--font-weight-regular);
11793
+ --default-line-height: 1.5;
11794
+ --default-letter-spacing: 0em;
11795
+ --default-leading-trim-start: 0.42em;
11796
+ --default-leading-trim-end: 0.36em;
11797
+ --heading-font-family: var(--default-font-family);
11798
+ --heading-font-size-adjust: 1;
11799
+ --heading-font-style: normal;
11800
+ --heading-leading-trim-start: var(--default-leading-trim-start);
11801
+ --heading-leading-trim-end: var(--default-leading-trim-end);
11802
+ --heading-letter-spacing: 0em;
11803
+ --code-font-family: 'Menlo', 'Consolas (Custom)', 'Bitstream Vera Sans Mono', monospace, 'Apple Color Emoji',
11804
+ 'Segoe UI Emoji';
11805
+ --code-font-size-adjust: 0.95;
11806
+ --code-font-style: normal;
11807
+ --code-font-weight: inherit;
11808
+ --code-letter-spacing: -0.007em;
11809
+ --code-padding-top: 0.1em;
11810
+ --code-padding-bottom: 0.1em;
11811
+ --code-padding-left: 0.25em;
11812
+ --code-padding-right: 0.25em;
11813
+ --strong-font-family: var(--default-font-family);
11814
+ --strong-font-size-adjust: 1;
11815
+ --strong-font-style: inherit;
11816
+ --strong-font-weight: var(--font-weight-bold);
11817
+ --strong-letter-spacing: 0em;
11818
+ --em-font-family: 'Times New Roman', 'Times', serif;
11819
+ --em-font-size-adjust: 1.18;
11820
+ --em-font-style: italic;
11821
+ --em-font-weight: inherit;
11822
+ --em-letter-spacing: -0.025em;
11823
+ --quote-font-family: 'Times New Roman', 'Times', serif;
11824
+ --quote-font-size-adjust: 1.18;
11825
+ --quote-font-style: italic;
11826
+ --quote-font-weight: inherit;
11827
+ --quote-letter-spacing: -0.025em;
11828
+ --tab-active-letter-spacing: -0.01em;
11829
+ --tab-active-word-spacing: 0em;
11830
+ --tab-inactive-letter-spacing: 0em;
11831
+ --tab-inactive-word-spacing: 0em;
11832
+ }
11833
+ body {
11834
+ overflow-wrap: break-word;
11835
+ font-family: var(--default-font-family);
11836
+ font-size: var(--default-font-size);
11837
+ font-weight: var(--default-font-weight);
11838
+ font-style: var(--default-font-style);
11839
+ line-height: var(--default-line-height);
11840
+ letter-spacing: var(--default-letter-spacing);
11841
+ text-size-adjust: none;
11842
+ -webkit-font-smoothing: antialiased;
11843
+ -moz-osx-font-smoothing: grayscale;
11844
+ }
11519
11845
  :root {
11520
11846
  --scaling: 1;
11521
11847
  --radius: 0.25rem;
@@ -11625,102 +11951,6 @@ code.language-html .token.comment {
11625
11951
  --tw-prose-invert-th-borders: var(--color-grey-600);
11626
11952
  --tw-prose-invert-td-borders: var(--color-grey-700);
11627
11953
  }
11628
- :root {
11629
- --font-size-1: calc(18px * var(--scaling));
11630
- --font-size-2: calc(16px * var(--scaling));
11631
- --font-size-3: calc(14px * var(--scaling));
11632
- --font-size-4: calc(12px * var(--scaling));
11633
- --font-weight-light: 300;
11634
- --font-weight-regular: 400;
11635
- --font-weight-medium: 500;
11636
- --font-weight-bold: 700;
11637
- --display-font-size-1: calc(88px * var(--scaling));
11638
- --display-font-size-2: calc(52px * var(--scaling));
11639
- --display-font-size-3: calc(48px * var(--scaling));
11640
- --display-font-size-4: calc(44px * var(--scaling));
11641
- --heading-font-size-1: calc(40px * var(--scaling));
11642
- --heading-font-size-2: calc(36px * var(--scaling));
11643
- --heading-font-size-3: calc(32px * var(--scaling));
11644
- --heading-font-size-4: calc(28px * var(--scaling));
11645
- --heading-font-size-5: calc(24px * var(--scaling));
11646
- --heading-font-size-6: calc(20px * var(--scaling));
11647
- --line-height-16: calc(16px * var(--scaling));
11648
- --line-height-18: calc(18px * var(--scaling));
11649
- --line-height-20: calc(20px * var(--scaling));
11650
- --line-height-22: calc(22px * var(--scaling));
11651
- --line-height-24: calc(24px * var(--scaling));
11652
- --line-height-26: calc(26px * var(--scaling));
11653
- --line-height-28: calc(28px * var(--scaling));
11654
- --line-height-30: calc(30px * var(--scaling));
11655
- --line-height-32: calc(32px * var(--scaling));
11656
- --line-height-36: calc(36px * var(--scaling));
11657
- --line-height-40: calc(40px * var(--scaling));
11658
- --line-height-44: calc(44px * var(--scaling));
11659
- --line-height-52: calc(52px * var(--scaling));
11660
- --line-height-60: calc(60px * var(--scaling));
11661
- --line-height-68: calc(68px * var(--scaling));
11662
- --line-height-96: calc(96px * var(--scaling));
11663
- --letter-spacing-0: 0em;
11664
- --heading-letter-spacing-1: -0.01em;
11665
- --heading-letter-spacing-2: -0.02em;
11666
- --heading-letter-spacing-3: -0.03em;
11667
- --default-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
11668
- 'Open Sans', system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
11669
- --default-font-size: var(--font-size-2);
11670
- --default-font-style: normal;
11671
- --default-font-weight: var(--font-weight-regular);
11672
- --default-line-height: 1.5;
11673
- --default-letter-spacing: 0em;
11674
- --default-leading-trim-start: 0.42em;
11675
- --default-leading-trim-end: 0.36em;
11676
- --heading-font-family: var(--default-font-family);
11677
- --heading-font-size-adjust: 1;
11678
- --heading-font-style: normal;
11679
- --heading-leading-trim-start: var(--default-leading-trim-start);
11680
- --heading-leading-trim-end: var(--default-leading-trim-end);
11681
- --heading-letter-spacing: 0em;
11682
- --code-font-family: 'Menlo', 'Consolas (Custom)', 'Bitstream Vera Sans Mono', monospace, 'Apple Color Emoji',
11683
- 'Segoe UI Emoji';
11684
- --code-font-size-adjust: 0.95;
11685
- --code-font-style: normal;
11686
- --code-font-weight: inherit;
11687
- --code-letter-spacing: -0.007em;
11688
- --code-padding-top: 0.1em;
11689
- --code-padding-bottom: 0.1em;
11690
- --code-padding-left: 0.25em;
11691
- --code-padding-right: 0.25em;
11692
- --strong-font-family: var(--default-font-family);
11693
- --strong-font-size-adjust: 1;
11694
- --strong-font-style: inherit;
11695
- --strong-font-weight: var(--font-weight-bold);
11696
- --strong-letter-spacing: 0em;
11697
- --em-font-family: 'Times New Roman', 'Times', serif;
11698
- --em-font-size-adjust: 1.18;
11699
- --em-font-style: italic;
11700
- --em-font-weight: inherit;
11701
- --em-letter-spacing: -0.025em;
11702
- --quote-font-family: 'Times New Roman', 'Times', serif;
11703
- --quote-font-size-adjust: 1.18;
11704
- --quote-font-style: italic;
11705
- --quote-font-weight: inherit;
11706
- --quote-letter-spacing: -0.025em;
11707
- --tab-active-letter-spacing: -0.01em;
11708
- --tab-active-word-spacing: 0em;
11709
- --tab-inactive-letter-spacing: 0em;
11710
- --tab-inactive-word-spacing: 0em;
11711
- }
11712
- body {
11713
- overflow-wrap: break-word;
11714
- font-family: var(--default-font-family);
11715
- font-size: var(--default-font-size);
11716
- font-weight: var(--default-font-weight);
11717
- font-style: var(--default-font-style);
11718
- line-height: var(--default-line-height);
11719
- letter-spacing: var(--default-letter-spacing);
11720
- text-size-adjust: none;
11721
- -webkit-font-smoothing: antialiased;
11722
- -moz-osx-font-smoothing: grayscale;
11723
- }
11724
11954
  @layer base {
11725
11955
  html {
11726
11956
  scroll-behavior: smooth;
@@ -11754,6 +11984,21 @@ body {
11754
11984
  --sidebar-border: hsl(240 3.7% 15.9%);
11755
11985
  --sidebar-ring: hsl(217.2 91.2% 59.8%);
11756
11986
  }
11987
+ .gradient-text {
11988
+ background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
11989
+ -webkit-background-clip: text;
11990
+ -webkit-text-fill-color: transparent;
11991
+ background-clip: text;
11992
+ }
11993
+ .hover-lift {
11994
+ transition: transform 0.2s ease-in-out,
11995
+ box-shadow 0.2s ease-in-out;
11996
+ }
11997
+ .hover-lift:hover {
11998
+ transform: translateY(-2px);
11999
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
12000
+ 0 10px 10px -5px rgba(0, 0, 0, 0.04);
12001
+ }
11757
12002
  @keyframes enter {
11758
12003
  from {
11759
12004
  opacity: var(--tw-enter-opacity, 1);