@run-ai-dev/styles 1.0.6 → 1.0.8
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/package.json +1 -1
- package/src/index.css +152 -16
package/package.json
CHANGED
package/src/index.css
CHANGED
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
12
12
|
"Courier New", monospace;
|
|
13
13
|
--color-red-600: oklch(57.7% 0.245 27.325);
|
|
14
|
+
--color-orange-100: oklch(95.4% 0.038 75.164);
|
|
15
|
+
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
14
16
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
17
|
+
--color-gray-400: oklch(70.7% 0.022 261.325);
|
|
15
18
|
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
16
19
|
--color-black: #000;
|
|
17
20
|
--color-white: #fff;
|
|
@@ -34,6 +37,7 @@
|
|
|
34
37
|
--font-weight-normal: 400;
|
|
35
38
|
--font-weight-medium: 500;
|
|
36
39
|
--font-weight-semibold: 600;
|
|
40
|
+
--font-weight-bold: 700;
|
|
37
41
|
--leading-tight: 1.25;
|
|
38
42
|
--radius-sm: 0.25rem;
|
|
39
43
|
--radius-md: 0.375rem;
|
|
@@ -90,6 +94,7 @@
|
|
|
90
94
|
--color-light-sand: #fdf8e8;
|
|
91
95
|
--color-pale-blue: #eeefff;
|
|
92
96
|
--color-cloudy-white: #dae1e5;
|
|
97
|
+
--color-vivid-blue: #2197ff;
|
|
93
98
|
--text-10: 10px;
|
|
94
99
|
--text-28: 28px;
|
|
95
100
|
--leading-28: 36px;
|
|
@@ -97,8 +102,15 @@
|
|
|
97
102
|
--text-40: 40px;
|
|
98
103
|
--leading-40: 50px;
|
|
99
104
|
--radius-20: 20px;
|
|
100
|
-
--background-image-gradient-dark: linear-gradient(180deg,
|
|
101
|
-
|
|
105
|
+
--background-image-gradient-dark: linear-gradient(180deg,
|
|
106
|
+
rgba(15, 23, 29, 0) 0%,
|
|
107
|
+
#0f171d 100%);
|
|
108
|
+
--background-image-gradient-light: linear-gradient(180deg,
|
|
109
|
+
rgba(255, 255, 255, 0) 0%,
|
|
110
|
+
#ffffff 100%);
|
|
111
|
+
--background-image-gradient-vivid-blue: radial-gradient(ellipse at center,
|
|
112
|
+
var(--color-vivid-blue),
|
|
113
|
+
transparent 60%);
|
|
102
114
|
}
|
|
103
115
|
}
|
|
104
116
|
|
|
@@ -386,12 +398,8 @@
|
|
|
386
398
|
top: calc(var(--spacing) * -2.5);
|
|
387
399
|
}
|
|
388
400
|
|
|
389
|
-
.-top-
|
|
390
|
-
top: calc(var(--spacing) * -
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.-top-4 {
|
|
394
|
-
top: calc(var(--spacing) * -4);
|
|
401
|
+
.-top-7\.5 {
|
|
402
|
+
top: calc(var(--spacing) * -7.5);
|
|
395
403
|
}
|
|
396
404
|
|
|
397
405
|
.-top-8\.5 {
|
|
@@ -402,14 +410,6 @@
|
|
|
402
410
|
top: calc(var(--spacing) * -11);
|
|
403
411
|
}
|
|
404
412
|
|
|
405
|
-
.-top-14\.5 {
|
|
406
|
-
top: calc(var(--spacing) * -14.5);
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.-top-20 {
|
|
410
|
-
top: calc(var(--spacing) * -20);
|
|
411
|
-
}
|
|
412
|
-
|
|
413
413
|
.-top-27\.5 {
|
|
414
414
|
top: calc(var(--spacing) * -27.5);
|
|
415
415
|
}
|
|
@@ -526,6 +526,18 @@
|
|
|
526
526
|
right: 5px;
|
|
527
527
|
}
|
|
528
528
|
|
|
529
|
+
.-bottom-8 {
|
|
530
|
+
bottom: calc(var(--spacing) * -8);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.-bottom-14 {
|
|
534
|
+
bottom: calc(var(--spacing) * -14);
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.-bottom-25 {
|
|
538
|
+
bottom: calc(var(--spacing) * -25);
|
|
539
|
+
}
|
|
540
|
+
|
|
529
541
|
.-bottom-\[19px\] {
|
|
530
542
|
bottom: calc(19px * -1);
|
|
531
543
|
}
|
|
@@ -562,6 +574,10 @@
|
|
|
562
574
|
left: calc(var(--spacing) * -2);
|
|
563
575
|
}
|
|
564
576
|
|
|
577
|
+
.-left-16\.25 {
|
|
578
|
+
left: calc(var(--spacing) * -16.25);
|
|
579
|
+
}
|
|
580
|
+
|
|
565
581
|
.-left-19 {
|
|
566
582
|
left: calc(var(--spacing) * -19);
|
|
567
583
|
}
|
|
@@ -742,6 +758,10 @@
|
|
|
742
758
|
margin-right: calc(var(--spacing) * 2.5);
|
|
743
759
|
}
|
|
744
760
|
|
|
761
|
+
.mr-3\.5 {
|
|
762
|
+
margin-right: calc(var(--spacing) * 3.5);
|
|
763
|
+
}
|
|
764
|
+
|
|
745
765
|
.mb-1 {
|
|
746
766
|
margin-bottom: calc(var(--spacing) * 1);
|
|
747
767
|
}
|
|
@@ -895,6 +915,10 @@
|
|
|
895
915
|
height: calc(var(--spacing) * 10.5);
|
|
896
916
|
}
|
|
897
917
|
|
|
918
|
+
.h-11 {
|
|
919
|
+
height: calc(var(--spacing) * 11);
|
|
920
|
+
}
|
|
921
|
+
|
|
898
922
|
.h-12 {
|
|
899
923
|
height: calc(var(--spacing) * 12);
|
|
900
924
|
}
|
|
@@ -915,6 +939,10 @@
|
|
|
915
939
|
height: calc(var(--spacing) * 30);
|
|
916
940
|
}
|
|
917
941
|
|
|
942
|
+
.h-32\.5 {
|
|
943
|
+
height: calc(var(--spacing) * 32.5);
|
|
944
|
+
}
|
|
945
|
+
|
|
918
946
|
.h-40 {
|
|
919
947
|
height: calc(var(--spacing) * 40);
|
|
920
948
|
}
|
|
@@ -1003,6 +1031,10 @@
|
|
|
1003
1031
|
width: calc(var(--spacing) * 10.5);
|
|
1004
1032
|
}
|
|
1005
1033
|
|
|
1034
|
+
.w-11 {
|
|
1035
|
+
width: calc(var(--spacing) * 11);
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1006
1038
|
.w-12 {
|
|
1007
1039
|
width: calc(var(--spacing) * 12);
|
|
1008
1040
|
}
|
|
@@ -1015,6 +1047,10 @@
|
|
|
1015
1047
|
width: calc(var(--spacing) * 15);
|
|
1016
1048
|
}
|
|
1017
1049
|
|
|
1050
|
+
.w-16 {
|
|
1051
|
+
width: calc(var(--spacing) * 16);
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1018
1054
|
.w-19 {
|
|
1019
1055
|
width: calc(var(--spacing) * 19);
|
|
1020
1056
|
}
|
|
@@ -1039,6 +1075,10 @@
|
|
|
1039
1075
|
width: calc(var(--spacing) * 55);
|
|
1040
1076
|
}
|
|
1041
1077
|
|
|
1078
|
+
.w-57\.5 {
|
|
1079
|
+
width: calc(var(--spacing) * 57.5);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1042
1082
|
.w-63 {
|
|
1043
1083
|
width: calc(var(--spacing) * 63);
|
|
1044
1084
|
}
|
|
@@ -1128,6 +1168,10 @@
|
|
|
1128
1168
|
max-width: calc(var(--spacing) * 245);
|
|
1129
1169
|
}
|
|
1130
1170
|
|
|
1171
|
+
.max-w-300 {
|
|
1172
|
+
max-width: calc(var(--spacing) * 300);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1131
1175
|
.max-w-\[70\%\] {
|
|
1132
1176
|
max-width: 70%;
|
|
1133
1177
|
}
|
|
@@ -1196,6 +1240,10 @@
|
|
|
1196
1240
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1197
1241
|
}
|
|
1198
1242
|
|
|
1243
|
+
.rotate-\[-8\.4deg\] {
|
|
1244
|
+
rotate: -8.4deg;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1199
1247
|
.transform {
|
|
1200
1248
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
1201
1249
|
}
|
|
@@ -1606,6 +1654,10 @@
|
|
|
1606
1654
|
background-color: var(--color-black);
|
|
1607
1655
|
}
|
|
1608
1656
|
|
|
1657
|
+
.bg-blue-100 {
|
|
1658
|
+
background-color: var(--color-blue-100);
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1609
1661
|
.bg-charcoal-blue {
|
|
1610
1662
|
background-color: var(--color-charcoal-blue);
|
|
1611
1663
|
}
|
|
@@ -1658,6 +1710,10 @@
|
|
|
1658
1710
|
background-color: var(--color-jetblack);
|
|
1659
1711
|
}
|
|
1660
1712
|
|
|
1713
|
+
.bg-orange-100 {
|
|
1714
|
+
background-color: var(--color-orange-100);
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1661
1717
|
.bg-pomegranate {
|
|
1662
1718
|
background-color: var(--color-pomegranate);
|
|
1663
1719
|
}
|
|
@@ -1699,6 +1755,10 @@
|
|
|
1699
1755
|
background-image: var(--background-image-gradient-dark);
|
|
1700
1756
|
}
|
|
1701
1757
|
|
|
1758
|
+
.bg-gradient-vivid-blue {
|
|
1759
|
+
background-image: var(--background-image-gradient-vivid-blue);
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1702
1762
|
.from-white\/10 {
|
|
1703
1763
|
--tw-gradient-from: color-mix(in srgb, #fff 10%, transparent);
|
|
1704
1764
|
|
|
@@ -2070,6 +2130,11 @@
|
|
|
2070
2130
|
line-height: var(--leading-tight);
|
|
2071
2131
|
}
|
|
2072
2132
|
|
|
2133
|
+
.font-bold {
|
|
2134
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
2135
|
+
font-weight: var(--font-weight-bold);
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2073
2138
|
.font-light {
|
|
2074
2139
|
--tw-font-weight: var(--font-weight-light);
|
|
2075
2140
|
font-weight: var(--font-weight-light);
|
|
@@ -2134,6 +2199,10 @@
|
|
|
2134
2199
|
color: var(--color-dark-gray);
|
|
2135
2200
|
}
|
|
2136
2201
|
|
|
2202
|
+
.text-gray-400 {
|
|
2203
|
+
color: var(--color-gray-400);
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2137
2206
|
.text-light-gray {
|
|
2138
2207
|
color: var(--color-light-gray);
|
|
2139
2208
|
}
|
|
@@ -2174,6 +2243,10 @@
|
|
|
2174
2243
|
opacity: 0%;
|
|
2175
2244
|
}
|
|
2176
2245
|
|
|
2246
|
+
.opacity-10 {
|
|
2247
|
+
opacity: 10%;
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2177
2250
|
.shadow-elevated {
|
|
2178
2251
|
--tw-shadow: 0px 6px 30px 0px var(--tw-shadow-color, rgba(0, 0, 0, 0.08));
|
|
2179
2252
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2227,6 +2300,12 @@
|
|
|
2227
2300
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2228
2301
|
}
|
|
2229
2302
|
|
|
2303
|
+
.transition-shadow {
|
|
2304
|
+
transition-property: box-shadow;
|
|
2305
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2306
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2230
2309
|
.delay-\[0\.5s\] {
|
|
2231
2310
|
transition-delay: 0.5s;
|
|
2232
2311
|
}
|
|
@@ -2281,6 +2360,22 @@
|
|
|
2281
2360
|
column-fill: balance;
|
|
2282
2361
|
}
|
|
2283
2362
|
|
|
2363
|
+
.group-hover\:pointer-events-auto {
|
|
2364
|
+
&:is(:where(.group):hover *) {
|
|
2365
|
+
@media (hover: hover) {
|
|
2366
|
+
pointer-events: auto;
|
|
2367
|
+
}
|
|
2368
|
+
}
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.group-hover\:pointer-events-none {
|
|
2372
|
+
&:is(:where(.group):hover *) {
|
|
2373
|
+
@media (hover: hover) {
|
|
2374
|
+
pointer-events: none;
|
|
2375
|
+
}
|
|
2376
|
+
}
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2284
2379
|
.group-hover\:visible {
|
|
2285
2380
|
&:is(:where(.group):hover *) {
|
|
2286
2381
|
@media (hover: hover) {
|
|
@@ -2289,6 +2384,25 @@
|
|
|
2289
2384
|
}
|
|
2290
2385
|
}
|
|
2291
2386
|
|
|
2387
|
+
.group-hover\:-left-15 {
|
|
2388
|
+
&:is(:where(.group):hover *) {
|
|
2389
|
+
@media (hover: hover) {
|
|
2390
|
+
left: calc(var(--spacing) * -15);
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.group-hover\:scale-0 {
|
|
2396
|
+
&:is(:where(.group):hover *) {
|
|
2397
|
+
@media (hover: hover) {
|
|
2398
|
+
--tw-scale-x: 0%;
|
|
2399
|
+
--tw-scale-y: 0%;
|
|
2400
|
+
--tw-scale-z: 0%;
|
|
2401
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2402
|
+
}
|
|
2403
|
+
}
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2292
2406
|
.group-hover\:scale-110 {
|
|
2293
2407
|
&:is(:where(.group):hover *) {
|
|
2294
2408
|
@media (hover: hover) {
|
|
@@ -2308,6 +2422,22 @@
|
|
|
2308
2422
|
}
|
|
2309
2423
|
}
|
|
2310
2424
|
|
|
2425
|
+
.group-hover\:opacity-0 {
|
|
2426
|
+
&:is(:where(.group):hover *) {
|
|
2427
|
+
@media (hover: hover) {
|
|
2428
|
+
opacity: 0%;
|
|
2429
|
+
}
|
|
2430
|
+
}
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
.group-hover\:opacity-50 {
|
|
2434
|
+
&:is(:where(.group):hover *) {
|
|
2435
|
+
@media (hover: hover) {
|
|
2436
|
+
opacity: 50%;
|
|
2437
|
+
}
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2311
2441
|
.group-hover\:opacity-100 {
|
|
2312
2442
|
&:is(:where(.group):hover *) {
|
|
2313
2443
|
@media (hover: hover) {
|
|
@@ -2866,6 +2996,12 @@
|
|
|
2866
2996
|
}
|
|
2867
2997
|
}
|
|
2868
2998
|
|
|
2999
|
+
.md\:max-w-307\.5 {
|
|
3000
|
+
@media (width >=48rem) {
|
|
3001
|
+
max-width: calc(var(--spacing) * 307.5);
|
|
3002
|
+
}
|
|
3003
|
+
}
|
|
3004
|
+
|
|
2869
3005
|
.md\:min-w-190 {
|
|
2870
3006
|
@media (width >=48rem) {
|
|
2871
3007
|
min-width: calc(var(--spacing) * 190);
|