|
1 | | -/*! tailwindcss v4.1.15 | MIT License | https://tailwindcss.com */ |
| 1 | +/*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */ |
2 | 2 | @layer properties; |
3 | 3 | @layer theme, base, components, utilities; |
4 | 4 | @layer theme { |
|
254 | 254 | ::placeholder { |
255 | 255 | color: currentcolor; |
256 | 256 | @supports (color: color-mix(in lab, red, red)) { |
257 | | - & { |
258 | | - color: color-mix(in oklab, currentcolor 50%, transparent); |
259 | | - } |
| 257 | + color: color-mix(in oklab, currentcolor 50%, transparent); |
260 | 258 | } |
261 | 259 | } |
262 | 260 | } |
|
302 | 300 | .pointer-events-none { |
303 | 301 | pointer-events: none; |
304 | 302 | } |
| 303 | + .visible { |
| 304 | + visibility: visible; |
| 305 | + } |
305 | 306 | .sr-only { |
306 | 307 | position: absolute; |
307 | 308 | width: 1px; |
|
355 | 356 | .col-span-3 { |
356 | 357 | grid-column: span 3 / span 3; |
357 | 358 | } |
| 359 | + .col-span-6 { |
| 360 | + grid-column: span 6 / span 6; |
| 361 | + } |
358 | 362 | .col-span-12 { |
359 | 363 | grid-column: span 12 / span 12; |
360 | 364 | } |
| 365 | + .container { |
| 366 | + width: 100%; |
| 367 | + @media (width >= 40rem) { |
| 368 | + max-width: 40rem; |
| 369 | + } |
| 370 | + @media (width >= 48rem) { |
| 371 | + max-width: 48rem; |
| 372 | + } |
| 373 | + @media (width >= 64rem) { |
| 374 | + max-width: 64rem; |
| 375 | + } |
| 376 | + @media (width >= 80rem) { |
| 377 | + max-width: 80rem; |
| 378 | + } |
| 379 | + @media (width >= 96rem) { |
| 380 | + max-width: 96rem; |
| 381 | + } |
| 382 | + } |
361 | 383 | .-m-2\.5 { |
362 | 384 | margin: calc(var(--spacing) * -2.5); |
363 | 385 | } |
|
454 | 476 | .mb-10 { |
455 | 477 | margin-bottom: calc(var(--spacing) * 10); |
456 | 478 | } |
| 479 | + .-ml-1 { |
| 480 | + margin-left: calc(var(--spacing) * -1); |
| 481 | + } |
457 | 482 | .-ml-px { |
458 | 483 | margin-left: -1px; |
459 | 484 | } |
|
532 | 557 | .h-20 { |
533 | 558 | height: calc(var(--spacing) * 20); |
534 | 559 | } |
| 560 | + .h-24 { |
| 561 | + height: calc(var(--spacing) * 24); |
| 562 | + } |
535 | 563 | .h-full { |
536 | 564 | height: 100%; |
537 | 565 | } |
|
586 | 614 | .w-80 { |
587 | 615 | width: calc(var(--spacing) * 80); |
588 | 616 | } |
| 617 | + .w-96 { |
| 618 | + width: calc(var(--spacing) * 96); |
| 619 | + } |
589 | 620 | .w-100 { |
590 | 621 | width: calc(var(--spacing) * 100); |
591 | 622 | } |
|
698 | 729 | .cursor-text { |
699 | 730 | cursor: text; |
700 | 731 | } |
| 732 | + .resize { |
| 733 | + resize: both; |
| 734 | + } |
701 | 735 | .list-decimal { |
702 | 736 | list-style-type: decimal; |
703 | 737 | } |
|
707 | 741 | .grid-cols-4 { |
708 | 742 | grid-template-columns: repeat(4, minmax(0, 1fr)); |
709 | 743 | } |
| 744 | + .grid-cols-6 { |
| 745 | + grid-template-columns: repeat(6, minmax(0, 1fr)); |
| 746 | + } |
710 | 747 | .grid-cols-12 { |
711 | 748 | grid-template-columns: repeat(12, minmax(0, 1fr)); |
712 | 749 | } |
|
959 | 996 | .bg-gray-500\/75 { |
960 | 997 | background-color: color-mix(in srgb, oklch(55.1% 0.027 264.364) 75%, transparent); |
961 | 998 | @supports (color: color-mix(in lab, red, red)) { |
962 | | - & { |
963 | | - background-color: color-mix(in oklab, var(--color-gray-500) 75%, transparent); |
964 | | - } |
| 999 | + background-color: color-mix(in oklab, var(--color-gray-500) 75%, transparent); |
965 | 1000 | } |
966 | 1001 | } |
967 | 1002 | .bg-gray-900\/80 { |
968 | 1003 | background-color: color-mix(in srgb, oklch(21% 0.034 264.665) 80%, transparent); |
969 | 1004 | @supports (color: color-mix(in lab, red, red)) { |
970 | | - & { |
971 | | - background-color: color-mix(in oklab, var(--color-gray-900) 80%, transparent); |
972 | | - } |
| 1005 | + background-color: color-mix(in oklab, var(--color-gray-900) 80%, transparent); |
973 | 1006 | } |
974 | 1007 | } |
975 | 1008 | .bg-green-50 { |
|
1113 | 1146 | .pt-2 { |
1114 | 1147 | padding-top: calc(var(--spacing) * 2); |
1115 | 1148 | } |
| 1149 | + .pt-3 { |
| 1150 | + padding-top: calc(var(--spacing) * 3); |
| 1151 | + } |
1116 | 1152 | .pt-4 { |
1117 | 1153 | padding-top: calc(var(--spacing) * 4); |
1118 | 1154 | } |
|
1378 | 1414 | .text-yellow-700 { |
1379 | 1415 | color: var(--color-yellow-700); |
1380 | 1416 | } |
| 1417 | + .capitalize { |
| 1418 | + text-transform: capitalize; |
| 1419 | + } |
1381 | 1420 | .normal-case { |
1382 | 1421 | text-transform: none; |
1383 | 1422 | } |
|
1425 | 1464 | .ring-black\/5 { |
1426 | 1465 | --tw-ring-color: color-mix(in srgb, #000 5%, transparent); |
1427 | 1466 | @supports (color: color-mix(in lab, red, red)) { |
1428 | | - & { |
1429 | | - --tw-ring-color: color-mix(in oklab, var(--color-black) 5%, transparent); |
1430 | | - } |
| 1467 | + --tw-ring-color: color-mix(in oklab, var(--color-black) 5%, transparent); |
1431 | 1468 | } |
1432 | 1469 | } |
1433 | 1470 | .ring-indigo-500 { |
1434 | 1471 | --tw-ring-color: var(--color-indigo-500); |
1435 | 1472 | } |
| 1473 | + .blur { |
| 1474 | + --tw-blur: blur(8px); |
| 1475 | + 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,); |
| 1476 | + } |
| 1477 | + .filter { |
| 1478 | + 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,); |
| 1479 | + } |
1436 | 1480 | .transition { |
1437 | 1481 | 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; |
1438 | 1482 | transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); |
|
2443 | 2487 | max-width: var(--breakpoint-lg); |
2444 | 2488 | } |
2445 | 2489 | } |
| 2490 | + .xl\:grid-cols-4 { |
| 2491 | + @media (width >= 80rem) { |
| 2492 | + grid-template-columns: repeat(4, minmax(0, 1fr)); |
| 2493 | + } |
| 2494 | + } |
2446 | 2495 | .\32 xl\:table-cell { |
2447 | 2496 | @media (width >= 96rem) { |
2448 | 2497 | display: table-cell; |
|
3258 | 3307 | [type='range'] { |
3259 | 3308 | height: 2.4rem; |
3260 | 3309 | } |
3261 | | - [type='button'],button[type='submit'] { |
| 3310 | + [type='button'],button[type='submit'],button[href] { |
3262 | 3311 | cursor: pointer; |
3263 | 3312 | } |
3264 | 3313 | @media (min-width: 640px) { |
|
3608 | 3657 | inherits: false; |
3609 | 3658 | initial-value: 0 0 #0000; |
3610 | 3659 | } |
| 3660 | +@property --tw-blur { |
| 3661 | + syntax: "*"; |
| 3662 | + inherits: false; |
| 3663 | +} |
| 3664 | +@property --tw-brightness { |
| 3665 | + syntax: "*"; |
| 3666 | + inherits: false; |
| 3667 | +} |
| 3668 | +@property --tw-contrast { |
| 3669 | + syntax: "*"; |
| 3670 | + inherits: false; |
| 3671 | +} |
| 3672 | +@property --tw-grayscale { |
| 3673 | + syntax: "*"; |
| 3674 | + inherits: false; |
| 3675 | +} |
| 3676 | +@property --tw-hue-rotate { |
| 3677 | + syntax: "*"; |
| 3678 | + inherits: false; |
| 3679 | +} |
| 3680 | +@property --tw-invert { |
| 3681 | + syntax: "*"; |
| 3682 | + inherits: false; |
| 3683 | +} |
| 3684 | +@property --tw-opacity { |
| 3685 | + syntax: "*"; |
| 3686 | + inherits: false; |
| 3687 | +} |
| 3688 | +@property --tw-saturate { |
| 3689 | + syntax: "*"; |
| 3690 | + inherits: false; |
| 3691 | +} |
| 3692 | +@property --tw-sepia { |
| 3693 | + syntax: "*"; |
| 3694 | + inherits: false; |
| 3695 | +} |
| 3696 | +@property --tw-drop-shadow { |
| 3697 | + syntax: "*"; |
| 3698 | + inherits: false; |
| 3699 | +} |
| 3700 | +@property --tw-drop-shadow-color { |
| 3701 | + syntax: "*"; |
| 3702 | + inherits: false; |
| 3703 | +} |
| 3704 | +@property --tw-drop-shadow-alpha { |
| 3705 | + syntax: "<percentage>"; |
| 3706 | + inherits: false; |
| 3707 | + initial-value: 100%; |
| 3708 | +} |
| 3709 | +@property --tw-drop-shadow-size { |
| 3710 | + syntax: "*"; |
| 3711 | + inherits: false; |
| 3712 | +} |
3611 | 3713 | @property --tw-duration { |
3612 | 3714 | syntax: "*"; |
3613 | 3715 | inherits: false; |
|
3671 | 3773 | --tw-ring-offset-width: 0px; |
3672 | 3774 | --tw-ring-offset-color: #fff; |
3673 | 3775 | --tw-ring-offset-shadow: 0 0 #0000; |
| 3776 | + --tw-blur: initial; |
| 3777 | + --tw-brightness: initial; |
| 3778 | + --tw-contrast: initial; |
| 3779 | + --tw-grayscale: initial; |
| 3780 | + --tw-hue-rotate: initial; |
| 3781 | + --tw-invert: initial; |
| 3782 | + --tw-opacity: initial; |
| 3783 | + --tw-saturate: initial; |
| 3784 | + --tw-sepia: initial; |
| 3785 | + --tw-drop-shadow: initial; |
| 3786 | + --tw-drop-shadow-color: initial; |
| 3787 | + --tw-drop-shadow-alpha: 100%; |
| 3788 | + --tw-drop-shadow-size: initial; |
3674 | 3789 | --tw-duration: initial; |
3675 | 3790 | --tw-ease: initial; |
3676 | 3791 | --tw-scale-x: 1; |
|
0 commit comments