@remotion/promo-pages 4.0.371 → 4.0.373
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/Homepage.js +6812 -1989
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/Homepage.js +6812 -1989
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/design.js +5827 -984
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/homepage/Pricing.js +5859 -1055
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/template-modal-content.js +5931 -1118
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/templates.js +5924 -1113
- package/dist/design.js +5827 -984
- package/dist/homepage/Pricing.js +5859 -1055
- package/dist/tailwind.css +381 -3
- package/dist/template-modal-content.js +5931 -1118
- package/dist/templates.js +5924 -1113
- package/package.json +12 -12
- package/dist/Users/jonathanburger/remotion/packages/promo-pages/dist/templates.css +0 -43
- package/dist/templates.css +0 -43
package/dist/tailwind.css
CHANGED
|
@@ -18,6 +18,20 @@
|
|
|
18
18
|
--tw-numeric-figure: initial;
|
|
19
19
|
--tw-numeric-spacing: initial;
|
|
20
20
|
--tw-numeric-fraction: initial;
|
|
21
|
+
--tw-shadow: 0 0 #0000;
|
|
22
|
+
--tw-shadow-color: initial;
|
|
23
|
+
--tw-shadow-alpha: 100%;
|
|
24
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
25
|
+
--tw-inset-shadow-color: initial;
|
|
26
|
+
--tw-inset-shadow-alpha: 100%;
|
|
27
|
+
--tw-ring-color: initial;
|
|
28
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
29
|
+
--tw-inset-ring-color: initial;
|
|
30
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
31
|
+
--tw-ring-inset: initial;
|
|
32
|
+
--tw-ring-offset-width: 0px;
|
|
33
|
+
--tw-ring-offset-color: #fff;
|
|
34
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
21
35
|
--tw-outline-style: solid;
|
|
22
36
|
--tw-blur: initial;
|
|
23
37
|
--tw-brightness: initial;
|
|
@@ -43,6 +57,7 @@
|
|
|
43
57
|
'Noto Color Emoji';
|
|
44
58
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
45
59
|
monospace;
|
|
60
|
+
--color-slate-200: oklch(92.9% 0.013 255.508);
|
|
46
61
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
47
62
|
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
48
63
|
--color-gray-600: oklch(44.6% 0.03 256.802);
|
|
@@ -68,6 +83,10 @@
|
|
|
68
83
|
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
69
84
|
--text-5xl: 3rem;
|
|
70
85
|
--text-5xl--line-height: 1;
|
|
86
|
+
--text-7xl: 4.5rem;
|
|
87
|
+
--text-7xl--line-height: 1;
|
|
88
|
+
--text-8xl: 6rem;
|
|
89
|
+
--text-8xl--line-height: 1;
|
|
71
90
|
--font-weight-medium: 500;
|
|
72
91
|
--font-weight-semibold: 600;
|
|
73
92
|
--font-weight-bold: 700;
|
|
@@ -95,12 +114,18 @@
|
|
|
95
114
|
.absolute {
|
|
96
115
|
position: absolute;
|
|
97
116
|
}
|
|
117
|
+
.fixed {
|
|
118
|
+
position: fixed;
|
|
119
|
+
}
|
|
98
120
|
.relative {
|
|
99
121
|
position: relative;
|
|
100
122
|
}
|
|
101
123
|
.static {
|
|
102
124
|
position: static;
|
|
103
125
|
}
|
|
126
|
+
.sticky {
|
|
127
|
+
position: sticky;
|
|
128
|
+
}
|
|
104
129
|
.top-0 {
|
|
105
130
|
top: calc(var(--spacing) * 0);
|
|
106
131
|
}
|
|
@@ -134,6 +159,9 @@
|
|
|
134
159
|
.left-1\/2 {
|
|
135
160
|
left: calc(1/2 * 100%);
|
|
136
161
|
}
|
|
162
|
+
.left-2 {
|
|
163
|
+
left: calc(var(--spacing) * 2);
|
|
164
|
+
}
|
|
137
165
|
.left-2\.5 {
|
|
138
166
|
left: calc(var(--spacing) * 2.5);
|
|
139
167
|
}
|
|
@@ -146,6 +174,9 @@
|
|
|
146
174
|
.z-10 {
|
|
147
175
|
z-index: 10;
|
|
148
176
|
}
|
|
177
|
+
.z-50 {
|
|
178
|
+
z-index: 50;
|
|
179
|
+
}
|
|
149
180
|
.float-left {
|
|
150
181
|
float: left;
|
|
151
182
|
}
|
|
@@ -173,9 +204,15 @@
|
|
|
173
204
|
.m-auto {
|
|
174
205
|
margin: auto;
|
|
175
206
|
}
|
|
207
|
+
.-mx-1 {
|
|
208
|
+
margin-inline: calc(var(--spacing) * -1);
|
|
209
|
+
}
|
|
176
210
|
.mx-auto {
|
|
177
211
|
margin-inline: auto;
|
|
178
212
|
}
|
|
213
|
+
.my-1 {
|
|
214
|
+
margin-block: calc(var(--spacing) * 1);
|
|
215
|
+
}
|
|
179
216
|
.my-4 {
|
|
180
217
|
margin-block: calc(var(--spacing) * 4);
|
|
181
218
|
}
|
|
@@ -194,6 +231,9 @@
|
|
|
194
231
|
.mt-2 {
|
|
195
232
|
margin-top: calc(var(--spacing) * 2);
|
|
196
233
|
}
|
|
234
|
+
.mt-2\.5 {
|
|
235
|
+
margin-top: calc(var(--spacing) * 2.5);
|
|
236
|
+
}
|
|
197
237
|
.mt-3 {
|
|
198
238
|
margin-top: calc(var(--spacing) * 3);
|
|
199
239
|
}
|
|
@@ -218,9 +258,18 @@
|
|
|
218
258
|
.mt-\[3px\] {
|
|
219
259
|
margin-top: 3px;
|
|
220
260
|
}
|
|
261
|
+
.mt-\[75px\] {
|
|
262
|
+
margin-top: 75px;
|
|
263
|
+
}
|
|
264
|
+
.mr-2\.5 {
|
|
265
|
+
margin-right: calc(var(--spacing) * 2.5);
|
|
266
|
+
}
|
|
221
267
|
.mr-3 {
|
|
222
268
|
margin-right: calc(var(--spacing) * 3);
|
|
223
269
|
}
|
|
270
|
+
.mr-\[15px\] {
|
|
271
|
+
margin-right: 15px;
|
|
272
|
+
}
|
|
224
273
|
.-mb-40 {
|
|
225
274
|
margin-bottom: calc(var(--spacing) * -40);
|
|
226
275
|
}
|
|
@@ -233,18 +282,27 @@
|
|
|
233
282
|
.mb-2 {
|
|
234
283
|
margin-bottom: calc(var(--spacing) * 2);
|
|
235
284
|
}
|
|
285
|
+
.mb-2\.5 {
|
|
286
|
+
margin-bottom: calc(var(--spacing) * 2.5);
|
|
287
|
+
}
|
|
236
288
|
.mb-4 {
|
|
237
289
|
margin-bottom: calc(var(--spacing) * 4);
|
|
238
290
|
}
|
|
239
291
|
.mb-5 {
|
|
240
292
|
margin-bottom: calc(var(--spacing) * 5);
|
|
241
293
|
}
|
|
294
|
+
.mb-7 {
|
|
295
|
+
margin-bottom: calc(var(--spacing) * 7);
|
|
296
|
+
}
|
|
242
297
|
.mb-10 {
|
|
243
298
|
margin-bottom: calc(var(--spacing) * 10);
|
|
244
299
|
}
|
|
245
300
|
.mb-20 {
|
|
246
301
|
margin-bottom: calc(var(--spacing) * 20);
|
|
247
302
|
}
|
|
303
|
+
.mb-\[50px\] {
|
|
304
|
+
margin-bottom: 50px;
|
|
305
|
+
}
|
|
248
306
|
.-ml-3 {
|
|
249
307
|
margin-left: calc(var(--spacing) * -3);
|
|
250
308
|
}
|
|
@@ -293,6 +351,9 @@
|
|
|
293
351
|
.inline-flex {
|
|
294
352
|
display: inline-flex;
|
|
295
353
|
}
|
|
354
|
+
.table {
|
|
355
|
+
display: table;
|
|
356
|
+
}
|
|
296
357
|
.aspect-square {
|
|
297
358
|
aspect-ratio: 1 / 1;
|
|
298
359
|
}
|
|
@@ -304,9 +365,15 @@
|
|
|
304
365
|
width: calc(var(--spacing) * 6);
|
|
305
366
|
height: calc(var(--spacing) * 6);
|
|
306
367
|
}
|
|
368
|
+
.h-\(--radix-select-trigger-height\) {
|
|
369
|
+
height: var(--radix-select-trigger-height);
|
|
370
|
+
}
|
|
307
371
|
.h-2 {
|
|
308
372
|
height: calc(var(--spacing) * 2);
|
|
309
373
|
}
|
|
374
|
+
.h-3\.5 {
|
|
375
|
+
height: calc(var(--spacing) * 3.5);
|
|
376
|
+
}
|
|
310
377
|
.h-4 {
|
|
311
378
|
height: calc(var(--spacing) * 4);
|
|
312
379
|
}
|
|
@@ -316,21 +383,42 @@
|
|
|
316
383
|
.h-6 {
|
|
317
384
|
height: calc(var(--spacing) * 6);
|
|
318
385
|
}
|
|
386
|
+
.h-7 {
|
|
387
|
+
height: calc(var(--spacing) * 7);
|
|
388
|
+
}
|
|
319
389
|
.h-8 {
|
|
320
390
|
height: calc(var(--spacing) * 8);
|
|
321
391
|
}
|
|
392
|
+
.h-9 {
|
|
393
|
+
height: calc(var(--spacing) * 9);
|
|
394
|
+
}
|
|
395
|
+
.h-10 {
|
|
396
|
+
height: calc(var(--spacing) * 10);
|
|
397
|
+
}
|
|
322
398
|
.h-12 {
|
|
323
399
|
height: calc(var(--spacing) * 12);
|
|
324
400
|
}
|
|
325
401
|
.h-14 {
|
|
326
402
|
height: calc(var(--spacing) * 14);
|
|
327
403
|
}
|
|
404
|
+
.h-\[30px\] {
|
|
405
|
+
height: 30px;
|
|
406
|
+
}
|
|
328
407
|
.h-\[250px\] {
|
|
329
408
|
height: 250px;
|
|
330
409
|
}
|
|
410
|
+
.h-auto {
|
|
411
|
+
height: auto;
|
|
412
|
+
}
|
|
331
413
|
.h-full {
|
|
332
414
|
height: 100%;
|
|
333
415
|
}
|
|
416
|
+
.h-px {
|
|
417
|
+
height: 1px;
|
|
418
|
+
}
|
|
419
|
+
.max-h-96 {
|
|
420
|
+
max-height: calc(var(--spacing) * 96);
|
|
421
|
+
}
|
|
334
422
|
.max-h-\[110px\] {
|
|
335
423
|
max-height: 110px;
|
|
336
424
|
}
|
|
@@ -343,9 +431,15 @@
|
|
|
343
431
|
.w-2 {
|
|
344
432
|
width: calc(var(--spacing) * 2);
|
|
345
433
|
}
|
|
434
|
+
.w-3\.5 {
|
|
435
|
+
width: calc(var(--spacing) * 3.5);
|
|
436
|
+
}
|
|
346
437
|
.w-4 {
|
|
347
438
|
width: calc(var(--spacing) * 4);
|
|
348
439
|
}
|
|
440
|
+
.w-6 {
|
|
441
|
+
width: calc(var(--spacing) * 6);
|
|
442
|
+
}
|
|
349
443
|
.w-8 {
|
|
350
444
|
width: calc(var(--spacing) * 8);
|
|
351
445
|
}
|
|
@@ -379,9 +473,6 @@
|
|
|
379
473
|
.w-\[550px\] {
|
|
380
474
|
width: 550px;
|
|
381
475
|
}
|
|
382
|
-
.w-\[800px\] {
|
|
383
|
-
width: 800px;
|
|
384
|
-
}
|
|
385
476
|
.w-auto {
|
|
386
477
|
width: auto;
|
|
387
478
|
}
|
|
@@ -397,12 +488,21 @@
|
|
|
397
488
|
.max-w-\[700px\] {
|
|
398
489
|
max-width: 700px;
|
|
399
490
|
}
|
|
491
|
+
.max-w-\[800px\] {
|
|
492
|
+
max-width: 800px;
|
|
493
|
+
}
|
|
400
494
|
.max-w-\[1000px\] {
|
|
401
495
|
max-width: 1000px;
|
|
402
496
|
}
|
|
497
|
+
.min-w-\(--radix-select-trigger-width\) {
|
|
498
|
+
min-width: var(--radix-select-trigger-width);
|
|
499
|
+
}
|
|
403
500
|
.min-w-0 {
|
|
404
501
|
min-width: calc(var(--spacing) * 0);
|
|
405
502
|
}
|
|
503
|
+
.min-w-32 {
|
|
504
|
+
min-width: calc(var(--spacing) * 32);
|
|
505
|
+
}
|
|
406
506
|
.min-w-\[80px\] {
|
|
407
507
|
min-width: 80px;
|
|
408
508
|
}
|
|
@@ -435,12 +535,18 @@
|
|
|
435
535
|
.cursor-pointer {
|
|
436
536
|
cursor: pointer;
|
|
437
537
|
}
|
|
538
|
+
.resize {
|
|
539
|
+
resize: both;
|
|
540
|
+
}
|
|
438
541
|
.appearance-none {
|
|
439
542
|
appearance: none;
|
|
440
543
|
}
|
|
441
544
|
.grid-flow-col {
|
|
442
545
|
grid-auto-flow: column;
|
|
443
546
|
}
|
|
547
|
+
.grid-cols-1 {
|
|
548
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
549
|
+
}
|
|
444
550
|
.grid-rows-1 {
|
|
445
551
|
grid-template-rows: repeat(1, minmax(0, 1fr));
|
|
446
552
|
}
|
|
@@ -501,12 +607,18 @@
|
|
|
501
607
|
.gap-12 {
|
|
502
608
|
gap: calc(var(--spacing) * 12);
|
|
503
609
|
}
|
|
610
|
+
.gap-\[15px\] {
|
|
611
|
+
gap: 15px;
|
|
612
|
+
}
|
|
504
613
|
.self-center {
|
|
505
614
|
align-self: center;
|
|
506
615
|
}
|
|
507
616
|
.justify-self-center {
|
|
508
617
|
justify-self: center;
|
|
509
618
|
}
|
|
619
|
+
.overflow-auto {
|
|
620
|
+
overflow: auto;
|
|
621
|
+
}
|
|
510
622
|
.overflow-hidden {
|
|
511
623
|
overflow: hidden;
|
|
512
624
|
}
|
|
@@ -568,6 +680,18 @@
|
|
|
568
680
|
border-style: var(--tw-border-style);
|
|
569
681
|
border-width: 5px;
|
|
570
682
|
}
|
|
683
|
+
.border-t-2 {
|
|
684
|
+
border-top-style: var(--tw-border-style);
|
|
685
|
+
border-top-width: 2px;
|
|
686
|
+
}
|
|
687
|
+
.border-r-2 {
|
|
688
|
+
border-right-style: var(--tw-border-style);
|
|
689
|
+
border-right-width: 2px;
|
|
690
|
+
}
|
|
691
|
+
.border-b-2 {
|
|
692
|
+
border-bottom-style: var(--tw-border-style);
|
|
693
|
+
border-bottom-width: 2px;
|
|
694
|
+
}
|
|
571
695
|
.border-b-4 {
|
|
572
696
|
border-bottom-style: var(--tw-border-style);
|
|
573
697
|
border-bottom-width: 4px;
|
|
@@ -580,6 +704,9 @@
|
|
|
580
704
|
--tw-border-style: solid;
|
|
581
705
|
border-style: solid;
|
|
582
706
|
}
|
|
707
|
+
.border-\[var\(--ifm-color-emphasis-300\)\] {
|
|
708
|
+
border-color: var(--ifm-color-emphasis-300);
|
|
709
|
+
}
|
|
583
710
|
.border-black {
|
|
584
711
|
border-color: var(--color-black);
|
|
585
712
|
}
|
|
@@ -658,12 +785,18 @@
|
|
|
658
785
|
.p-0 {
|
|
659
786
|
padding: calc(var(--spacing) * 0);
|
|
660
787
|
}
|
|
788
|
+
.p-1 {
|
|
789
|
+
padding: calc(var(--spacing) * 1);
|
|
790
|
+
}
|
|
661
791
|
.p-2 {
|
|
662
792
|
padding: calc(var(--spacing) * 2);
|
|
663
793
|
}
|
|
664
794
|
.p-3 {
|
|
665
795
|
padding: calc(var(--spacing) * 3);
|
|
666
796
|
}
|
|
797
|
+
.p-3\.5 {
|
|
798
|
+
padding: calc(var(--spacing) * 3.5);
|
|
799
|
+
}
|
|
667
800
|
.p-5 {
|
|
668
801
|
padding: calc(var(--spacing) * 5);
|
|
669
802
|
}
|
|
@@ -682,9 +815,18 @@
|
|
|
682
815
|
.px-4 {
|
|
683
816
|
padding-inline: calc(var(--spacing) * 4);
|
|
684
817
|
}
|
|
818
|
+
.px-5 {
|
|
819
|
+
padding-inline: calc(var(--spacing) * 5);
|
|
820
|
+
}
|
|
685
821
|
.py-0 {
|
|
686
822
|
padding-block: calc(var(--spacing) * 0);
|
|
687
823
|
}
|
|
824
|
+
.py-1 {
|
|
825
|
+
padding-block: calc(var(--spacing) * 1);
|
|
826
|
+
}
|
|
827
|
+
.py-1\.5 {
|
|
828
|
+
padding-block: calc(var(--spacing) * 1.5);
|
|
829
|
+
}
|
|
688
830
|
.py-2 {
|
|
689
831
|
padding-block: calc(var(--spacing) * 2);
|
|
690
832
|
}
|
|
@@ -694,6 +836,12 @@
|
|
|
694
836
|
.py-4 {
|
|
695
837
|
padding-block: calc(var(--spacing) * 4);
|
|
696
838
|
}
|
|
839
|
+
.py-5 {
|
|
840
|
+
padding-block: calc(var(--spacing) * 5);
|
|
841
|
+
}
|
|
842
|
+
.pt-1 {
|
|
843
|
+
padding-top: calc(var(--spacing) * 1);
|
|
844
|
+
}
|
|
697
845
|
.pt-4 {
|
|
698
846
|
padding-top: calc(var(--spacing) * 4);
|
|
699
847
|
}
|
|
@@ -715,6 +863,12 @@
|
|
|
715
863
|
.pr-5 {
|
|
716
864
|
padding-right: calc(var(--spacing) * 5);
|
|
717
865
|
}
|
|
866
|
+
.pr-8 {
|
|
867
|
+
padding-right: calc(var(--spacing) * 8);
|
|
868
|
+
}
|
|
869
|
+
.pb-1 {
|
|
870
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
871
|
+
}
|
|
718
872
|
.pb-10 {
|
|
719
873
|
padding-bottom: calc(var(--spacing) * 10);
|
|
720
874
|
}
|
|
@@ -727,6 +881,9 @@
|
|
|
727
881
|
.pl-5 {
|
|
728
882
|
padding-left: calc(var(--spacing) * 5);
|
|
729
883
|
}
|
|
884
|
+
.pl-8 {
|
|
885
|
+
padding-left: calc(var(--spacing) * 8);
|
|
886
|
+
}
|
|
730
887
|
.pl-\[1px\] {
|
|
731
888
|
padding-left: 1px;
|
|
732
889
|
}
|
|
@@ -742,6 +899,9 @@
|
|
|
742
899
|
.text-right {
|
|
743
900
|
text-align: right;
|
|
744
901
|
}
|
|
902
|
+
.align-middle {
|
|
903
|
+
vertical-align: middle;
|
|
904
|
+
}
|
|
745
905
|
.fontbrand {
|
|
746
906
|
font-family: 'GTPlanar', sans-serif;
|
|
747
907
|
font-feature-settings: 'ss03' 1;
|
|
@@ -845,6 +1005,9 @@
|
|
|
845
1005
|
.whitespace-nowrap {
|
|
846
1006
|
white-space: nowrap;
|
|
847
1007
|
}
|
|
1008
|
+
.whitespace-pre {
|
|
1009
|
+
white-space: pre;
|
|
1010
|
+
}
|
|
848
1011
|
.bluelink {
|
|
849
1012
|
color: #0b84f3;
|
|
850
1013
|
text-decoration-line: none;
|
|
@@ -858,9 +1021,15 @@
|
|
|
858
1021
|
.text-\[var\(--ifm-color-primary\)\] {
|
|
859
1022
|
color: var(--ifm-color-primary);
|
|
860
1023
|
}
|
|
1024
|
+
.text-\[var\(--light-text-color\)\] {
|
|
1025
|
+
color: var(--light-text-color);
|
|
1026
|
+
}
|
|
861
1027
|
.text-\[var\(--subtitle\)\] {
|
|
862
1028
|
color: var(--subtitle);
|
|
863
1029
|
}
|
|
1030
|
+
.text-\[var\(--text-color\)\] {
|
|
1031
|
+
color: var(--text-color);
|
|
1032
|
+
}
|
|
864
1033
|
.text-black {
|
|
865
1034
|
color: var(--color-black);
|
|
866
1035
|
}
|
|
@@ -901,9 +1070,24 @@
|
|
|
901
1070
|
.opacity-0 {
|
|
902
1071
|
opacity: 0%;
|
|
903
1072
|
}
|
|
1073
|
+
.opacity-50 {
|
|
1074
|
+
opacity: 50%;
|
|
1075
|
+
}
|
|
904
1076
|
.opacity-80 {
|
|
905
1077
|
opacity: 80%;
|
|
906
1078
|
}
|
|
1079
|
+
.shadow-md {
|
|
1080
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1081
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1082
|
+
}
|
|
1083
|
+
.outline-hidden {
|
|
1084
|
+
--tw-outline-style: none;
|
|
1085
|
+
outline-style: none;
|
|
1086
|
+
@media (forced-colors: active) {
|
|
1087
|
+
outline: 2px solid transparent;
|
|
1088
|
+
outline-offset: 2px;
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
907
1091
|
.outline {
|
|
908
1092
|
outline-style: var(--tw-outline-style);
|
|
909
1093
|
outline-width: 1px;
|
|
@@ -912,6 +1096,10 @@
|
|
|
912
1096
|
outline-style: var(--tw-outline-style);
|
|
913
1097
|
outline-width: 0px;
|
|
914
1098
|
}
|
|
1099
|
+
.blur {
|
|
1100
|
+
--tw-blur: blur(8px);
|
|
1101
|
+
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,);
|
|
1102
|
+
}
|
|
915
1103
|
.filter {
|
|
916
1104
|
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,);
|
|
917
1105
|
}
|
|
@@ -947,6 +1135,10 @@
|
|
|
947
1135
|
--tw-outline-style: none;
|
|
948
1136
|
outline-style: none;
|
|
949
1137
|
}
|
|
1138
|
+
.select-none {
|
|
1139
|
+
-webkit-user-select: none;
|
|
1140
|
+
user-select: none;
|
|
1141
|
+
}
|
|
950
1142
|
.hover\:text-brand {
|
|
951
1143
|
&:hover {
|
|
952
1144
|
@media (hover: hover) {
|
|
@@ -961,11 +1153,43 @@
|
|
|
961
1153
|
}
|
|
962
1154
|
}
|
|
963
1155
|
}
|
|
1156
|
+
.focus\:bg-slate-200 {
|
|
1157
|
+
&:focus {
|
|
1158
|
+
background-color: var(--color-slate-200);
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
.focus\:ring-2 {
|
|
1162
|
+
&:focus {
|
|
1163
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentColor);
|
|
1164
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
.focus\:ring-offset-2 {
|
|
1168
|
+
&:focus {
|
|
1169
|
+
--tw-ring-offset-width: 2px;
|
|
1170
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
.focus\:outline-hidden {
|
|
1174
|
+
&:focus {
|
|
1175
|
+
--tw-outline-style: none;
|
|
1176
|
+
outline-style: none;
|
|
1177
|
+
@media (forced-colors: active) {
|
|
1178
|
+
outline: 2px solid transparent;
|
|
1179
|
+
outline-offset: 2px;
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
}
|
|
964
1183
|
.disabled\:cursor-default {
|
|
965
1184
|
&:disabled {
|
|
966
1185
|
cursor: default;
|
|
967
1186
|
}
|
|
968
1187
|
}
|
|
1188
|
+
.disabled\:cursor-not-allowed {
|
|
1189
|
+
&:disabled {
|
|
1190
|
+
cursor: not-allowed;
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
969
1193
|
.disabled\:border-black {
|
|
970
1194
|
&:disabled {
|
|
971
1195
|
border-color: var(--color-black);
|
|
@@ -989,6 +1213,21 @@
|
|
|
989
1213
|
}
|
|
990
1214
|
}
|
|
991
1215
|
}
|
|
1216
|
+
.disabled\:opacity-50 {
|
|
1217
|
+
&:disabled {
|
|
1218
|
+
opacity: 50%;
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
.data-disabled\:pointer-events-none {
|
|
1222
|
+
&[data-disabled] {
|
|
1223
|
+
pointer-events: none;
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1226
|
+
.data-disabled\:opacity-50 {
|
|
1227
|
+
&[data-disabled] {
|
|
1228
|
+
opacity: 50%;
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
992
1231
|
.data-\[active\=true\]\:left-\[calc\(100\%-24px\)\] {
|
|
993
1232
|
&[data-active="true"] {
|
|
994
1233
|
left: calc(100% - 24px);
|
|
@@ -1004,11 +1243,40 @@
|
|
|
1004
1243
|
color: #0b84f3;
|
|
1005
1244
|
}
|
|
1006
1245
|
}
|
|
1246
|
+
.data-\[side\=bottom\]\:translate-y-1 {
|
|
1247
|
+
&[data-side="bottom"] {
|
|
1248
|
+
--tw-translate-y: calc(var(--spacing) * 1);
|
|
1249
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1250
|
+
}
|
|
1251
|
+
}
|
|
1252
|
+
.data-\[side\=left\]\:-translate-x-1 {
|
|
1253
|
+
&[data-side="left"] {
|
|
1254
|
+
--tw-translate-x: calc(var(--spacing) * -1);
|
|
1255
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
.data-\[side\=right\]\:translate-x-1 {
|
|
1259
|
+
&[data-side="right"] {
|
|
1260
|
+
--tw-translate-x: calc(var(--spacing) * 1);
|
|
1261
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
.data-\[side\=top\]\:-translate-y-1 {
|
|
1265
|
+
&[data-side="top"] {
|
|
1266
|
+
--tw-translate-y: calc(var(--spacing) * -1);
|
|
1267
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1007
1270
|
.data-\[visible\=true\]\:opacity-100 {
|
|
1008
1271
|
&[data-visible="true"] {
|
|
1009
1272
|
opacity: 100%;
|
|
1010
1273
|
}
|
|
1011
1274
|
}
|
|
1275
|
+
.sm\:grid-cols-2 {
|
|
1276
|
+
@media (width >= 40rem) {
|
|
1277
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1012
1280
|
.md\:mt-0 {
|
|
1013
1281
|
@media (width >= 48rem) {
|
|
1014
1282
|
margin-top: calc(var(--spacing) * 0);
|
|
@@ -1070,6 +1338,12 @@
|
|
|
1070
1338
|
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
|
1071
1339
|
}
|
|
1072
1340
|
}
|
|
1341
|
+
.md\:text-7xl {
|
|
1342
|
+
@media (width >= 48rem) {
|
|
1343
|
+
font-size: var(--text-7xl);
|
|
1344
|
+
line-height: var(--tw-leading, var(--text-7xl--line-height));
|
|
1345
|
+
}
|
|
1346
|
+
}
|
|
1073
1347
|
.lg\:relative {
|
|
1074
1348
|
@media (width >= 64rem) {
|
|
1075
1349
|
position: relative;
|
|
@@ -1153,6 +1427,11 @@
|
|
|
1153
1427
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1154
1428
|
}
|
|
1155
1429
|
}
|
|
1430
|
+
.lg\:grid-cols-3 {
|
|
1431
|
+
@media (width >= 64rem) {
|
|
1432
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1433
|
+
}
|
|
1434
|
+
}
|
|
1156
1435
|
.lg\:flex-row {
|
|
1157
1436
|
@media (width >= 64rem) {
|
|
1158
1437
|
flex-direction: row;
|
|
@@ -1173,6 +1452,12 @@
|
|
|
1173
1452
|
stroke-width: 0.035;
|
|
1174
1453
|
}
|
|
1175
1454
|
}
|
|
1455
|
+
.lg\:text-8xl {
|
|
1456
|
+
@media (width >= 64rem) {
|
|
1457
|
+
font-size: var(--text-8xl);
|
|
1458
|
+
line-height: var(--tw-leading, var(--text-8xl--line-height));
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1176
1461
|
.lg\:text-\[5em\] {
|
|
1177
1462
|
@media (width >= 64rem) {
|
|
1178
1463
|
font-size: 5em;
|
|
@@ -1183,6 +1468,34 @@
|
|
|
1183
1468
|
background-color: #121212;
|
|
1184
1469
|
}
|
|
1185
1470
|
}
|
|
1471
|
+
.dark\:text-gray-200 {
|
|
1472
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
1473
|
+
color: var(--color-gray-200);
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
.dark\:text-white {
|
|
1477
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
1478
|
+
color: var(--color-white);
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
.dark\:focus\:bg-white\/10 {
|
|
1482
|
+
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
1483
|
+
&:focus {
|
|
1484
|
+
background-color: color-mix(in srgb, #fff 10%, transparent);
|
|
1485
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1486
|
+
background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
|
|
1487
|
+
}
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
}
|
|
1491
|
+
.\[\&\>span\]\:line-clamp-1 {
|
|
1492
|
+
&>span {
|
|
1493
|
+
overflow: hidden;
|
|
1494
|
+
display: -webkit-box;
|
|
1495
|
+
-webkit-box-orient: vertical;
|
|
1496
|
+
-webkit-line-clamp: 1;
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1186
1499
|
}
|
|
1187
1500
|
@font-face {
|
|
1188
1501
|
font-family: 'GTPlanar';
|
|
@@ -1381,6 +1694,71 @@ body {
|
|
|
1381
1694
|
syntax: "*";
|
|
1382
1695
|
inherits: false;
|
|
1383
1696
|
}
|
|
1697
|
+
@property --tw-shadow {
|
|
1698
|
+
syntax: "*";
|
|
1699
|
+
inherits: false;
|
|
1700
|
+
initial-value: 0 0 #0000;
|
|
1701
|
+
}
|
|
1702
|
+
@property --tw-shadow-color {
|
|
1703
|
+
syntax: "*";
|
|
1704
|
+
inherits: false;
|
|
1705
|
+
}
|
|
1706
|
+
@property --tw-shadow-alpha {
|
|
1707
|
+
syntax: "<percentage>";
|
|
1708
|
+
inherits: false;
|
|
1709
|
+
initial-value: 100%;
|
|
1710
|
+
}
|
|
1711
|
+
@property --tw-inset-shadow {
|
|
1712
|
+
syntax: "*";
|
|
1713
|
+
inherits: false;
|
|
1714
|
+
initial-value: 0 0 #0000;
|
|
1715
|
+
}
|
|
1716
|
+
@property --tw-inset-shadow-color {
|
|
1717
|
+
syntax: "*";
|
|
1718
|
+
inherits: false;
|
|
1719
|
+
}
|
|
1720
|
+
@property --tw-inset-shadow-alpha {
|
|
1721
|
+
syntax: "<percentage>";
|
|
1722
|
+
inherits: false;
|
|
1723
|
+
initial-value: 100%;
|
|
1724
|
+
}
|
|
1725
|
+
@property --tw-ring-color {
|
|
1726
|
+
syntax: "*";
|
|
1727
|
+
inherits: false;
|
|
1728
|
+
}
|
|
1729
|
+
@property --tw-ring-shadow {
|
|
1730
|
+
syntax: "*";
|
|
1731
|
+
inherits: false;
|
|
1732
|
+
initial-value: 0 0 #0000;
|
|
1733
|
+
}
|
|
1734
|
+
@property --tw-inset-ring-color {
|
|
1735
|
+
syntax: "*";
|
|
1736
|
+
inherits: false;
|
|
1737
|
+
}
|
|
1738
|
+
@property --tw-inset-ring-shadow {
|
|
1739
|
+
syntax: "*";
|
|
1740
|
+
inherits: false;
|
|
1741
|
+
initial-value: 0 0 #0000;
|
|
1742
|
+
}
|
|
1743
|
+
@property --tw-ring-inset {
|
|
1744
|
+
syntax: "*";
|
|
1745
|
+
inherits: false;
|
|
1746
|
+
}
|
|
1747
|
+
@property --tw-ring-offset-width {
|
|
1748
|
+
syntax: "<length>";
|
|
1749
|
+
inherits: false;
|
|
1750
|
+
initial-value: 0px;
|
|
1751
|
+
}
|
|
1752
|
+
@property --tw-ring-offset-color {
|
|
1753
|
+
syntax: "*";
|
|
1754
|
+
inherits: false;
|
|
1755
|
+
initial-value: #fff;
|
|
1756
|
+
}
|
|
1757
|
+
@property --tw-ring-offset-shadow {
|
|
1758
|
+
syntax: "*";
|
|
1759
|
+
inherits: false;
|
|
1760
|
+
initial-value: 0 0 #0000;
|
|
1761
|
+
}
|
|
1384
1762
|
@property --tw-outline-style {
|
|
1385
1763
|
syntax: "*";
|
|
1386
1764
|
inherits: false;
|