|
7 | 7 | 'Noto Color Emoji'; |
8 | 8 | --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', |
9 | 9 | monospace; |
| 10 | + --color-red-500: oklch(63.7% 0.237 25.331); |
| 11 | + --color-red-600: oklch(57.7% 0.245 27.325); |
10 | 12 | --color-green-50: oklch(98.2% 0.018 155.826); |
11 | 13 | --color-green-200: oklch(92.5% 0.084 155.995); |
12 | 14 | --color-green-400: oklch(79.2% 0.209 151.711); |
| 15 | + --color-green-600: oklch(62.7% 0.194 149.214); |
13 | 16 | --color-green-700: oklch(52.7% 0.154 150.069); |
14 | 17 | --color-green-800: oklch(44.8% 0.119 151.328); |
15 | 18 | --color-green-900: oklch(39.3% 0.095 152.535); |
|
46 | 49 | --font-weight-bold: 700; |
47 | 50 | --tracking-wider: 0.05em; |
48 | 51 | --leading-relaxed: 1.625; |
| 52 | + --radius-lg: 0.5rem; |
49 | 53 | --radius-xl: 0.75rem; |
50 | 54 | --radius-2xl: 1rem; |
51 | 55 | --radius-3xl: 1.5rem; |
|
205 | 209 | .pointer-events-none { |
206 | 210 | pointer-events: none; |
207 | 211 | } |
| 212 | + .visible { |
| 213 | + visibility: visible; |
| 214 | + } |
208 | 215 | .absolute { |
209 | 216 | position: absolute; |
210 | 217 | } |
|
244 | 251 | max-width: 96rem; |
245 | 252 | } |
246 | 253 | } |
| 254 | + .mt-2 { |
| 255 | + margin-top: calc(var(--spacing) * 2); |
| 256 | + } |
247 | 257 | .mt-10 { |
248 | 258 | margin-top: calc(var(--spacing) * 10); |
249 | 259 | } |
|
253 | 263 | .block { |
254 | 264 | display: block; |
255 | 265 | } |
| 266 | + .contents { |
| 267 | + display: contents; |
| 268 | + } |
256 | 269 | .flex { |
257 | 270 | display: flex; |
258 | 271 | } |
|
268 | 281 | .h-6 { |
269 | 282 | height: calc(var(--spacing) * 6); |
270 | 283 | } |
| 284 | + .h-10 { |
| 285 | + height: calc(var(--spacing) * 10); |
| 286 | + } |
271 | 287 | .h-80 { |
272 | 288 | height: calc(var(--spacing) * 80); |
273 | 289 | } |
|
283 | 299 | .w-6 { |
284 | 300 | width: calc(var(--spacing) * 6); |
285 | 301 | } |
| 302 | + .w-12 { |
| 303 | + width: calc(var(--spacing) * 12); |
| 304 | + } |
| 305 | + .w-32 { |
| 306 | + width: calc(var(--spacing) * 32); |
| 307 | + } |
286 | 308 | .w-80 { |
287 | 309 | width: calc(var(--spacing) * 80); |
288 | 310 | } |
|
304 | 326 | .scale-\[1\.02\] { |
305 | 327 | scale: 1.02; |
306 | 328 | } |
| 329 | + .transform { |
| 330 | + transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,); |
| 331 | + } |
| 332 | + .cursor-pointer { |
| 333 | + cursor: pointer; |
| 334 | + } |
307 | 335 | .grid-cols-1 { |
308 | 336 | grid-template-columns: repeat(1, minmax(0, 1fr)); |
309 | 337 | } |
|
338 | 366 | margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse))); |
339 | 367 | } |
340 | 368 | } |
| 369 | + .space-y-4 { |
| 370 | + :where(& > :not(:last-child)) { |
| 371 | + --tw-space-y-reverse: 0; |
| 372 | + margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); |
| 373 | + margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); |
| 374 | + } |
| 375 | + } |
341 | 376 | .space-y-8 { |
342 | 377 | :where(& > :not(:last-child)) { |
343 | 378 | --tw-space-y-reverse: 0; |
|
360 | 395 | .rounded-full { |
361 | 396 | border-radius: calc(infinity * 1px); |
362 | 397 | } |
| 398 | + .rounded-lg { |
| 399 | + border-radius: var(--radius-lg); |
| 400 | + } |
363 | 401 | .rounded-xl { |
364 | 402 | border-radius: var(--radius-xl); |
365 | 403 | } |
|
377 | 415 | .border-slate-200 { |
378 | 416 | border-color: var(--color-slate-200); |
379 | 417 | } |
| 418 | + .border-slate-300 { |
| 419 | + border-color: var(--color-slate-300); |
| 420 | + } |
380 | 421 | .border-white\/50 { |
381 | 422 | border-color: color-mix(in srgb, #fff 50%, transparent); |
382 | 423 | @supports (color: color-mix(in lab, red, red)) { |
|
395 | 436 | .bg-purple-100 { |
396 | 437 | background-color: var(--color-purple-100); |
397 | 438 | } |
| 439 | + .bg-red-500 { |
| 440 | + background-color: var(--color-red-500); |
| 441 | + } |
398 | 442 | .bg-slate-50\/50 { |
399 | 443 | background-color: color-mix(in srgb, oklch(98.4% 0.003 247.858) 50%, transparent); |
400 | 444 | @supports (color: color-mix(in lab, red, red)) { |
|
478 | 522 | .p-8 { |
479 | 523 | padding: calc(var(--spacing) * 8); |
480 | 524 | } |
| 525 | + .px-3 { |
| 526 | + padding-inline: calc(var(--spacing) * 3); |
| 527 | + } |
481 | 528 | .px-4 { |
482 | 529 | padding-inline: calc(var(--spacing) * 4); |
483 | 530 | } |
484 | 531 | .px-6 { |
485 | 532 | padding-inline: calc(var(--spacing) * 6); |
486 | 533 | } |
| 534 | + .py-1\.5 { |
| 535 | + padding-block: calc(var(--spacing) * 1.5); |
| 536 | + } |
| 537 | + .py-2 { |
| 538 | + padding-block: calc(var(--spacing) * 2); |
| 539 | + } |
487 | 540 | .py-3 { |
488 | 541 | padding-block: calc(var(--spacing) * 3); |
489 | 542 | } |
|
546 | 599 | .text-\[\#4d3695\] { |
547 | 600 | color: #4d3695; |
548 | 601 | } |
| 602 | + .text-green-600 { |
| 603 | + color: var(--color-green-600); |
| 604 | + } |
549 | 605 | .text-green-700 { |
550 | 606 | color: var(--color-green-700); |
551 | 607 | } |
|
573 | 629 | .uppercase { |
574 | 630 | text-transform: uppercase; |
575 | 631 | } |
| 632 | + .italic { |
| 633 | + font-style: italic; |
| 634 | + } |
576 | 635 | .opacity-20 { |
577 | 636 | opacity: 20%; |
578 | 637 | } |
|
691 | 750 | color: var(--color-purple-900); |
692 | 751 | } |
693 | 752 | } |
| 753 | + .file\:mr-4 { |
| 754 | + &::file-selector-button { |
| 755 | + margin-right: calc(var(--spacing) * 4); |
| 756 | + } |
| 757 | + } |
| 758 | + .file\:cursor-pointer { |
| 759 | + &::file-selector-button { |
| 760 | + cursor: pointer; |
| 761 | + } |
| 762 | + } |
| 763 | + .file\:rounded-lg { |
| 764 | + &::file-selector-button { |
| 765 | + border-radius: var(--radius-lg); |
| 766 | + } |
| 767 | + } |
| 768 | + .file\:border-0 { |
| 769 | + &::file-selector-button { |
| 770 | + border-style: var(--tw-border-style); |
| 771 | + border-width: 0px; |
| 772 | + } |
| 773 | + } |
| 774 | + .file\:bg-\[\#4d3695\] { |
| 775 | + &::file-selector-button { |
| 776 | + background-color: #4d3695; |
| 777 | + } |
| 778 | + } |
| 779 | + .file\:px-4 { |
| 780 | + &::file-selector-button { |
| 781 | + padding-inline: calc(var(--spacing) * 4); |
| 782 | + } |
| 783 | + } |
| 784 | + .file\:py-2 { |
| 785 | + &::file-selector-button { |
| 786 | + padding-block: calc(var(--spacing) * 2); |
| 787 | + } |
| 788 | + } |
| 789 | + .file\:text-sm { |
| 790 | + &::file-selector-button { |
| 791 | + font-size: var(--text-sm); |
| 792 | + line-height: var(--tw-leading, var(--text-sm--line-height)); |
| 793 | + } |
| 794 | + } |
| 795 | + .file\:font-semibold { |
| 796 | + &::file-selector-button { |
| 797 | + --tw-font-weight: var(--font-weight-semibold); |
| 798 | + font-weight: var(--font-weight-semibold); |
| 799 | + } |
| 800 | + } |
| 801 | + .file\:text-white { |
| 802 | + &::file-selector-button { |
| 803 | + color: var(--color-white); |
| 804 | + } |
| 805 | + } |
694 | 806 | .placeholder\:text-slate-400 { |
695 | 807 | &::placeholder { |
696 | 808 | color: var(--color-slate-400); |
|
710 | 822 | } |
711 | 823 | } |
712 | 824 | } |
| 825 | + .hover\:bg-red-600 { |
| 826 | + &:hover { |
| 827 | + @media (hover: hover) { |
| 828 | + background-color: var(--color-red-600); |
| 829 | + } |
| 830 | + } |
| 831 | + } |
713 | 832 | .hover\:bg-slate-50 { |
714 | 833 | &:hover { |
715 | 834 | @media (hover: hover) { |
|
731 | 850 | } |
732 | 851 | } |
733 | 852 | } |
| 853 | + .hover\:file\:bg-\[\#3d2875\] { |
| 854 | + &:hover { |
| 855 | + @media (hover: hover) { |
| 856 | + &::file-selector-button { |
| 857 | + background-color: #3d2875; |
| 858 | + } |
| 859 | + } |
| 860 | + } |
| 861 | + } |
734 | 862 | .focus\:border-transparent { |
735 | 863 | &:focus { |
736 | 864 | border-color: transparent; |
|
1006 | 1134 | } |
1007 | 1135 | } |
1008 | 1136 | } |
| 1137 | +@property --tw-rotate-x { |
| 1138 | + syntax: "*"; |
| 1139 | + inherits: false; |
| 1140 | +} |
| 1141 | +@property --tw-rotate-y { |
| 1142 | + syntax: "*"; |
| 1143 | + inherits: false; |
| 1144 | +} |
| 1145 | +@property --tw-rotate-z { |
| 1146 | + syntax: "*"; |
| 1147 | + inherits: false; |
| 1148 | +} |
| 1149 | +@property --tw-skew-x { |
| 1150 | + syntax: "*"; |
| 1151 | + inherits: false; |
| 1152 | +} |
| 1153 | +@property --tw-skew-y { |
| 1154 | + syntax: "*"; |
| 1155 | + inherits: false; |
| 1156 | +} |
1009 | 1157 | @property --tw-space-y-reverse { |
1010 | 1158 | syntax: "*"; |
1011 | 1159 | inherits: false; |
|
1210 | 1358 | @layer properties { |
1211 | 1359 | @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) { |
1212 | 1360 | *, ::before, ::after, ::backdrop { |
| 1361 | + --tw-rotate-x: initial; |
| 1362 | + --tw-rotate-y: initial; |
| 1363 | + --tw-rotate-z: initial; |
| 1364 | + --tw-skew-x: initial; |
| 1365 | + --tw-skew-y: initial; |
1213 | 1366 | --tw-space-y-reverse: 0; |
1214 | 1367 | --tw-border-style: solid; |
1215 | 1368 | --tw-gradient-position: initial; |
|
0 commit comments