7657 lines
187 KiB
CSS
7657 lines
187 KiB
CSS
html[dir="ltr"],
|
||
[data-sonner-toaster][dir="ltr"] {
|
||
--toast-icon-margin-start: -3px;
|
||
--toast-icon-margin-end: 4px;
|
||
--toast-svg-margin-start: -1px;
|
||
--toast-svg-margin-end: 0px;
|
||
--toast-button-margin-start: auto;
|
||
--toast-button-margin-end: 0;
|
||
--toast-close-button-start: 0;
|
||
--toast-close-button-end: unset;
|
||
--toast-close-button-transform: translate(-35%, -35%);
|
||
}
|
||
html[dir="rtl"],
|
||
[data-sonner-toaster][dir="rtl"] {
|
||
--toast-icon-margin-start: 4px;
|
||
--toast-icon-margin-end: -3px;
|
||
--toast-svg-margin-start: 0px;
|
||
--toast-svg-margin-end: -1px;
|
||
--toast-button-margin-start: 0;
|
||
--toast-button-margin-end: auto;
|
||
--toast-close-button-start: unset;
|
||
--toast-close-button-end: 0;
|
||
--toast-close-button-transform: translate(35%, -35%);
|
||
}
|
||
[data-sonner-toaster] {
|
||
position: fixed;
|
||
width: var(--width);
|
||
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
|
||
Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
|
||
Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
||
--gray1: hsl(0, 0%, 99%);
|
||
--gray2: hsl(0, 0%, 97.3%);
|
||
--gray3: hsl(0, 0%, 95.1%);
|
||
--gray4: hsl(0, 0%, 93%);
|
||
--gray5: hsl(0, 0%, 90.9%);
|
||
--gray6: hsl(0, 0%, 88.7%);
|
||
--gray7: hsl(0, 0%, 85.8%);
|
||
--gray8: hsl(0, 0%, 78%);
|
||
--gray9: hsl(0, 0%, 56.1%);
|
||
--gray10: hsl(0, 0%, 52.3%);
|
||
--gray11: hsl(0, 0%, 43.5%);
|
||
--gray12: hsl(0, 0%, 9%);
|
||
--border-radius: 8px;
|
||
box-sizing: border-box;
|
||
padding: 0;
|
||
margin: 0;
|
||
list-style: none;
|
||
outline: none;
|
||
z-index: 999999999;
|
||
transition: transform 0.4s ease;
|
||
}
|
||
@media (hover: none) and (pointer: coarse) {
|
||
[data-sonner-toaster][data-lifted="true"] {
|
||
transform: none;
|
||
}
|
||
}
|
||
[data-sonner-toaster][data-x-position="right"] {
|
||
right: var(--offset-right);
|
||
}
|
||
[data-sonner-toaster][data-x-position="left"] {
|
||
left: var(--offset-left);
|
||
}
|
||
[data-sonner-toaster][data-x-position="center"] {
|
||
left: 50%;
|
||
transform: translate(-50%);
|
||
}
|
||
[data-sonner-toaster][data-y-position="top"] {
|
||
top: var(--offset-top);
|
||
}
|
||
[data-sonner-toaster][data-y-position="bottom"] {
|
||
bottom: var(--offset-bottom);
|
||
}
|
||
[data-sonner-toast] {
|
||
--y: translateY(100%);
|
||
--lift-amount: calc(var(--lift) * var(--gap));
|
||
z-index: var(--z-index);
|
||
position: absolute;
|
||
opacity: 0;
|
||
transform: var(--y);
|
||
touch-action: none;
|
||
transition: transform 0.4s, opacity 0.4s, height 0.4s, box-shadow 0.2s;
|
||
box-sizing: border-box;
|
||
outline: none;
|
||
overflow-wrap: anywhere;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] {
|
||
padding: 16px;
|
||
background: var(--normal-bg);
|
||
border: 1px solid var(--normal-border);
|
||
color: var(--normal-text);
|
||
border-radius: var(--border-radius);
|
||
box-shadow: 0 4px 12px #0000001a;
|
||
width: var(--width);
|
||
font-size: 13px;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
[data-sonner-toast]:focus-visible {
|
||
box-shadow: 0 4px 12px #0000001a, 0 0 0 2px #0003;
|
||
}
|
||
[data-sonner-toast][data-y-position="top"] {
|
||
top: 0;
|
||
--y: translateY(-100%);
|
||
--lift: 1;
|
||
--lift-amount: calc(1 * var(--gap));
|
||
}
|
||
[data-sonner-toast][data-y-position="bottom"] {
|
||
bottom: 0;
|
||
--y: translateY(100%);
|
||
--lift: -1;
|
||
--lift-amount: calc(var(--lift) * var(--gap));
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-description] {
|
||
font-weight: 400;
|
||
line-height: 1.4;
|
||
color: #3f3f3f;
|
||
}
|
||
[data-rich-colors="true"][data-sonner-toast][data-styled="true"]
|
||
[data-description] {
|
||
color: inherit;
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="dark"] [data-description] {
|
||
color: #e8e8e8;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-title] {
|
||
font-weight: 500;
|
||
line-height: 1.5;
|
||
color: inherit;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-icon] {
|
||
display: flex;
|
||
height: 16px;
|
||
width: 16px;
|
||
position: relative;
|
||
justify-content: flex-start;
|
||
align-items: center;
|
||
flex-shrink: 0;
|
||
margin-left: var(--toast-icon-margin-start);
|
||
margin-right: var(--toast-icon-margin-end);
|
||
}
|
||
[data-sonner-toast][data-promise="true"] [data-icon] > svg {
|
||
opacity: 0;
|
||
transform: scale(0.8);
|
||
transform-origin: center;
|
||
animation: sonner-fade-in 0.3s ease forwards;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-icon] > * {
|
||
flex-shrink: 0;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-icon] svg {
|
||
margin-left: var(--toast-svg-margin-start);
|
||
margin-right: var(--toast-svg-margin-end);
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-content] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 2px;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-button] {
|
||
border-radius: 4px;
|
||
padding-left: 8px;
|
||
padding-right: 8px;
|
||
height: 24px;
|
||
font-size: 12px;
|
||
color: var(--normal-bg);
|
||
background: var(--normal-text);
|
||
margin-left: var(--toast-button-margin-start);
|
||
margin-right: var(--toast-button-margin-end);
|
||
border: none;
|
||
font-weight: 500;
|
||
cursor: pointer;
|
||
outline: none;
|
||
display: flex;
|
||
align-items: center;
|
||
flex-shrink: 0;
|
||
transition: opacity 0.4s, box-shadow 0.2s;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-button]:focus-visible {
|
||
box-shadow: 0 0 0 2px #0006;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-button]:first-of-type {
|
||
margin-left: var(--toast-button-margin-start);
|
||
margin-right: var(--toast-button-margin-end);
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-cancel] {
|
||
color: var(--normal-text);
|
||
background: #00000014;
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="dark"]
|
||
[data-sonner-toast][data-styled="true"]
|
||
[data-cancel] {
|
||
background: #ffffff4d;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-close-button] {
|
||
position: absolute;
|
||
left: var(--toast-close-button-start);
|
||
right: var(--toast-close-button-end);
|
||
top: 0;
|
||
height: 20px;
|
||
width: 20px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
padding: 0;
|
||
color: var(--gray12);
|
||
background: var(--normal-bg);
|
||
border: 1px solid var(--gray4);
|
||
transform: var(--toast-close-button-transform);
|
||
border-radius: 50%;
|
||
cursor: pointer;
|
||
z-index: 1;
|
||
transition: opacity 0.1s, background 0.2s, border-color 0.2s;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-close-button]:focus-visible {
|
||
box-shadow: 0 4px 12px #0000001a, 0 0 0 2px #0003;
|
||
}
|
||
[data-sonner-toast][data-styled="true"] [data-disabled="true"] {
|
||
cursor: not-allowed;
|
||
}
|
||
[data-sonner-toast][data-styled="true"]:hover [data-close-button]:hover {
|
||
background: var(--gray2);
|
||
border-color: var(--gray5);
|
||
}
|
||
[data-sonner-toast][data-swiping="true"]:before {
|
||
content: "";
|
||
position: absolute;
|
||
left: -100%;
|
||
right: -100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
}
|
||
[data-sonner-toast][data-y-position="top"][data-swiping="true"]:before {
|
||
bottom: 50%;
|
||
transform: scaleY(3) translateY(50%);
|
||
}
|
||
[data-sonner-toast][data-y-position="bottom"][data-swiping="true"]:before {
|
||
top: 50%;
|
||
transform: scaleY(3) translateY(-50%);
|
||
}
|
||
[data-sonner-toast][data-swiping="false"][data-removed="true"]:before {
|
||
content: "";
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
transform: scaleY(2);
|
||
}
|
||
[data-sonner-toast][data-expanded="true"]:after {
|
||
content: "";
|
||
position: absolute;
|
||
left: 0;
|
||
height: calc(var(--gap) + 1px);
|
||
bottom: 100%;
|
||
width: 100%;
|
||
}
|
||
[data-sonner-toast][data-mounted="true"] {
|
||
--y: translateY(0);
|
||
opacity: 1;
|
||
}
|
||
[data-sonner-toast][data-expanded="false"][data-front="false"] {
|
||
--scale: var(--toasts-before) * 0.05 + 1;
|
||
--y: translateY(calc(var(--lift-amount) * var(--toasts-before)))
|
||
scale(calc(-1 * var(--scale)));
|
||
height: var(--front-toast-height);
|
||
}
|
||
[data-sonner-toast] > * {
|
||
transition: opacity 0.4s;
|
||
}
|
||
[data-sonner-toast][data-x-position="right"] {
|
||
right: 0;
|
||
}
|
||
[data-sonner-toast][data-x-position="left"] {
|
||
left: 0;
|
||
}
|
||
[data-sonner-toast][data-expanded="false"][data-front="false"][data-styled="true"]
|
||
> * {
|
||
opacity: 0;
|
||
}
|
||
[data-sonner-toast][data-visible="false"] {
|
||
opacity: 0;
|
||
pointer-events: none;
|
||
}
|
||
[data-sonner-toast][data-mounted="true"][data-expanded="true"] {
|
||
--y: translateY(calc(var(--lift) * var(--offset)));
|
||
height: var(--initial-height);
|
||
}
|
||
[data-sonner-toast][data-removed="true"][data-front="true"][data-swipe-out="false"] {
|
||
--y: translateY(calc(var(--lift) * -100%));
|
||
opacity: 0;
|
||
}
|
||
[data-sonner-toast][data-removed="true"][data-front="false"][data-swipe-out="false"][data-expanded="true"] {
|
||
--y: translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));
|
||
opacity: 0;
|
||
}
|
||
[data-sonner-toast][data-removed="true"][data-front="false"][data-swipe-out="false"][data-expanded="false"] {
|
||
--y: translateY(40%);
|
||
opacity: 0;
|
||
transition: transform 0.5s, opacity 0.2s;
|
||
}
|
||
[data-sonner-toast][data-removed="true"][data-front="false"]:before {
|
||
height: calc(var(--initial-height) + 20%);
|
||
}
|
||
[data-sonner-toast][data-swiping="true"] {
|
||
transform: var(--y) translateY(var(--swipe-amount-y, 0px))
|
||
translate(var(--swipe-amount-x, 0px));
|
||
transition: none;
|
||
}
|
||
[data-sonner-toast][data-swiped="true"] {
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
}
|
||
[data-sonner-toast][data-swipe-out="true"][data-y-position="bottom"],
|
||
[data-sonner-toast][data-swipe-out="true"][data-y-position="top"] {
|
||
animation-duration: 0.2s;
|
||
animation-timing-function: ease-out;
|
||
animation-fill-mode: forwards;
|
||
}
|
||
[data-sonner-toast][data-swipe-out="true"][data-swipe-direction="left"] {
|
||
animation-name: swipe-out-left;
|
||
}
|
||
[data-sonner-toast][data-swipe-out="true"][data-swipe-direction="right"] {
|
||
animation-name: swipe-out-right;
|
||
}
|
||
[data-sonner-toast][data-swipe-out="true"][data-swipe-direction="up"] {
|
||
animation-name: swipe-out-up;
|
||
}
|
||
[data-sonner-toast][data-swipe-out="true"][data-swipe-direction="down"] {
|
||
animation-name: swipe-out-down;
|
||
}
|
||
@keyframes swipe-out-left {
|
||
0% {
|
||
transform: var(--y) translate(var(--swipe-amount-x));
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
transform: var(--y) translate(calc(var(--swipe-amount-x) - 100%));
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes swipe-out-right {
|
||
0% {
|
||
transform: var(--y) translate(var(--swipe-amount-x));
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
transform: var(--y) translate(calc(var(--swipe-amount-x) + 100%));
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes swipe-out-up {
|
||
0% {
|
||
transform: var(--y) translateY(var(--swipe-amount-y));
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
transform: var(--y) translateY(calc(var(--swipe-amount-y) - 100%));
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes swipe-out-down {
|
||
0% {
|
||
transform: var(--y) translateY(var(--swipe-amount-y));
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
transform: var(--y) translateY(calc(var(--swipe-amount-y) + 100%));
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@media (max-width: 600px) {
|
||
[data-sonner-toaster] {
|
||
position: fixed;
|
||
right: var(--mobile-offset-right);
|
||
left: var(--mobile-offset-left);
|
||
width: 100%;
|
||
}
|
||
[data-sonner-toaster][dir="rtl"] {
|
||
left: calc(var(--mobile-offset-left) * -1);
|
||
}
|
||
[data-sonner-toaster] [data-sonner-toast] {
|
||
left: 0;
|
||
right: 0;
|
||
width: calc(100% - var(--mobile-offset-left) * 2);
|
||
}
|
||
[data-sonner-toaster][data-x-position="left"] {
|
||
left: var(--mobile-offset-left);
|
||
}
|
||
[data-sonner-toaster][data-y-position="bottom"] {
|
||
bottom: var(--mobile-offset-bottom);
|
||
}
|
||
[data-sonner-toaster][data-y-position="top"] {
|
||
top: var(--mobile-offset-top);
|
||
}
|
||
[data-sonner-toaster][data-x-position="center"] {
|
||
left: var(--mobile-offset-left);
|
||
right: var(--mobile-offset-right);
|
||
transform: none;
|
||
}
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="light"] {
|
||
--normal-bg: #fff;
|
||
--normal-border: var(--gray4);
|
||
--normal-text: var(--gray12);
|
||
--success-bg: hsl(143, 85%, 96%);
|
||
--success-border: hsl(145, 92%, 87%);
|
||
--success-text: hsl(140, 100%, 27%);
|
||
--info-bg: hsl(208, 100%, 97%);
|
||
--info-border: hsl(221, 91%, 93%);
|
||
--info-text: hsl(210, 92%, 45%);
|
||
--warning-bg: hsl(49, 100%, 97%);
|
||
--warning-border: hsl(49, 91%, 84%);
|
||
--warning-text: hsl(31, 92%, 45%);
|
||
--error-bg: hsl(359, 100%, 97%);
|
||
--error-border: hsl(359, 100%, 94%);
|
||
--error-text: hsl(360, 100%, 45%);
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="light"]
|
||
[data-sonner-toast][data-invert="true"] {
|
||
--normal-bg: #000;
|
||
--normal-border: hsl(0, 0%, 20%);
|
||
--normal-text: var(--gray1);
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="dark"]
|
||
[data-sonner-toast][data-invert="true"] {
|
||
--normal-bg: #fff;
|
||
--normal-border: var(--gray3);
|
||
--normal-text: var(--gray12);
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="dark"] {
|
||
--normal-bg: #000;
|
||
--normal-bg-hover: hsl(0, 0%, 12%);
|
||
--normal-border: hsl(0, 0%, 20%);
|
||
--normal-border-hover: hsl(0, 0%, 25%);
|
||
--normal-text: var(--gray1);
|
||
--success-bg: hsl(150, 100%, 6%);
|
||
--success-border: hsl(147, 100%, 12%);
|
||
--success-text: hsl(150, 86%, 65%);
|
||
--info-bg: hsl(215, 100%, 6%);
|
||
--info-border: hsl(223, 43%, 17%);
|
||
--info-text: hsl(216, 87%, 65%);
|
||
--warning-bg: hsl(64, 100%, 6%);
|
||
--warning-border: hsl(60, 100%, 9%);
|
||
--warning-text: hsl(46, 87%, 65%);
|
||
--error-bg: hsl(358, 76%, 10%);
|
||
--error-border: hsl(357, 89%, 16%);
|
||
--error-text: hsl(358, 100%, 81%);
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="dark"]
|
||
[data-sonner-toast]
|
||
[data-close-button] {
|
||
background: var(--normal-bg);
|
||
border-color: var(--normal-border);
|
||
color: var(--normal-text);
|
||
}
|
||
[data-sonner-toaster][data-sonner-theme="dark"]
|
||
[data-sonner-toast]
|
||
[data-close-button]:hover {
|
||
background: var(--normal-bg-hover);
|
||
border-color: var(--normal-border-hover);
|
||
}
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="success"],
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="success"]
|
||
[data-close-button] {
|
||
background: var(--success-bg);
|
||
border-color: var(--success-border);
|
||
color: var(--success-text);
|
||
}
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="info"],
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="info"]
|
||
[data-close-button] {
|
||
background: var(--info-bg);
|
||
border-color: var(--info-border);
|
||
color: var(--info-text);
|
||
}
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="warning"],
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="warning"]
|
||
[data-close-button] {
|
||
background: var(--warning-bg);
|
||
border-color: var(--warning-border);
|
||
color: var(--warning-text);
|
||
}
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="error"],
|
||
[data-rich-colors="true"][data-sonner-toast][data-type="error"]
|
||
[data-close-button] {
|
||
background: var(--error-bg);
|
||
border-color: var(--error-border);
|
||
color: var(--error-text);
|
||
}
|
||
.sonner-loading-wrapper {
|
||
--size: 16px;
|
||
height: var(--size);
|
||
width: var(--size);
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
z-index: 10;
|
||
}
|
||
.sonner-loading-wrapper[data-visible="false"] {
|
||
transform-origin: center;
|
||
animation: sonner-fade-out 0.2s ease forwards;
|
||
}
|
||
.sonner-spinner {
|
||
position: relative;
|
||
top: 50%;
|
||
left: 50%;
|
||
height: var(--size);
|
||
width: var(--size);
|
||
}
|
||
.sonner-loading-bar {
|
||
animation: sonner-spin 1.2s linear infinite;
|
||
background: var(--gray11);
|
||
border-radius: 6px;
|
||
height: 8%;
|
||
left: -10%;
|
||
position: absolute;
|
||
top: -3.9%;
|
||
width: 24%;
|
||
}
|
||
.sonner-loading-bar:nth-child(1) {
|
||
animation-delay: -1.2s;
|
||
transform: rotate(0.0001deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(2) {
|
||
animation-delay: -1.1s;
|
||
transform: rotate(30deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(3) {
|
||
animation-delay: -1s;
|
||
transform: rotate(60deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(4) {
|
||
animation-delay: -0.9s;
|
||
transform: rotate(90deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(5) {
|
||
animation-delay: -0.8s;
|
||
transform: rotate(120deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(6) {
|
||
animation-delay: -0.7s;
|
||
transform: rotate(150deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(7) {
|
||
animation-delay: -0.6s;
|
||
transform: rotate(180deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(8) {
|
||
animation-delay: -0.5s;
|
||
transform: rotate(210deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(9) {
|
||
animation-delay: -0.4s;
|
||
transform: rotate(240deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(10) {
|
||
animation-delay: -0.3s;
|
||
transform: rotate(270deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(11) {
|
||
animation-delay: -0.2s;
|
||
transform: rotate(300deg) translate(146%);
|
||
}
|
||
.sonner-loading-bar:nth-child(12) {
|
||
animation-delay: -0.1s;
|
||
transform: rotate(330deg) translate(146%);
|
||
}
|
||
@keyframes sonner-fade-in {
|
||
0% {
|
||
opacity: 0;
|
||
transform: scale(0.8);
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
transform: scale(1);
|
||
}
|
||
}
|
||
@keyframes sonner-fade-out {
|
||
0% {
|
||
opacity: 1;
|
||
transform: scale(1);
|
||
}
|
||
to {
|
||
opacity: 0;
|
||
transform: scale(0.8);
|
||
}
|
||
}
|
||
@keyframes sonner-spin {
|
||
0% {
|
||
opacity: 1;
|
||
}
|
||
to {
|
||
opacity: 0.15;
|
||
}
|
||
}
|
||
@media (prefers-reduced-motion) {
|
||
[data-sonner-toast],
|
||
[data-sonner-toast] > *,
|
||
.sonner-loading-bar {
|
||
transition: none !important;
|
||
animation: none !important;
|
||
}
|
||
}
|
||
.sonner-loader {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
transform-origin: center;
|
||
transition: opacity 0.2s, transform 0.2s;
|
||
}
|
||
.sonner-loader[data-visible="false"] {
|
||
opacity: 0;
|
||
transform: scale(0.8) translate(-50%, -50%);
|
||
} /*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
|
||
@layer properties {
|
||
@supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or
|
||
((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
|
||
*,
|
||
:before,
|
||
:after,
|
||
::backdrop {
|
||
--tw-translate-x: 0;
|
||
--tw-translate-y: 0;
|
||
--tw-translate-z: 0;
|
||
--tw-rotate-x: initial;
|
||
--tw-rotate-y: initial;
|
||
--tw-rotate-z: initial;
|
||
--tw-skew-x: initial;
|
||
--tw-skew-y: initial;
|
||
--tw-border-style: solid;
|
||
--tw-leading: initial;
|
||
--tw-font-weight: initial;
|
||
--tw-tracking: initial;
|
||
--tw-shadow: 0 0 #0000;
|
||
--tw-shadow-color: initial;
|
||
--tw-shadow-alpha: 100%;
|
||
--tw-inset-shadow: 0 0 #0000;
|
||
--tw-inset-shadow-color: initial;
|
||
--tw-inset-shadow-alpha: 100%;
|
||
--tw-ring-color: initial;
|
||
--tw-ring-shadow: 0 0 #0000;
|
||
--tw-inset-ring-color: initial;
|
||
--tw-inset-ring-shadow: 0 0 #0000;
|
||
--tw-ring-inset: initial;
|
||
--tw-ring-offset-width: 0px;
|
||
--tw-ring-offset-color: #fff;
|
||
--tw-ring-offset-shadow: 0 0 #0000;
|
||
--tw-backdrop-blur: initial;
|
||
--tw-backdrop-brightness: initial;
|
||
--tw-backdrop-contrast: initial;
|
||
--tw-backdrop-grayscale: initial;
|
||
--tw-backdrop-hue-rotate: initial;
|
||
--tw-backdrop-invert: initial;
|
||
--tw-backdrop-opacity: initial;
|
||
--tw-backdrop-saturate: initial;
|
||
--tw-backdrop-sepia: initial;
|
||
--tw-duration: initial;
|
||
--tw-content: "";
|
||
--tw-blur: initial;
|
||
--tw-brightness: initial;
|
||
--tw-contrast: initial;
|
||
--tw-grayscale: initial;
|
||
--tw-hue-rotate: initial;
|
||
--tw-invert: initial;
|
||
--tw-opacity: initial;
|
||
--tw-saturate: initial;
|
||
--tw-sepia: initial;
|
||
--tw-drop-shadow: initial;
|
||
--tw-drop-shadow-color: initial;
|
||
--tw-drop-shadow-alpha: 100%;
|
||
--tw-drop-shadow-size: initial;
|
||
--tw-animation-delay: 0s;
|
||
--tw-animation-direction: normal;
|
||
--tw-animation-duration: initial;
|
||
--tw-animation-fill-mode: none;
|
||
--tw-animation-iteration-count: 1;
|
||
--tw-enter-blur: 0;
|
||
--tw-enter-opacity: 1;
|
||
--tw-enter-rotate: 0;
|
||
--tw-enter-scale: 1;
|
||
--tw-enter-translate-x: 0;
|
||
--tw-enter-translate-y: 0;
|
||
--tw-exit-blur: 0;
|
||
--tw-exit-opacity: 1;
|
||
--tw-exit-rotate: 0;
|
||
--tw-exit-scale: 1;
|
||
--tw-exit-translate-x: 0;
|
||
--tw-exit-translate-y: 0;
|
||
--tw-outline-style: solid;
|
||
}
|
||
}
|
||
}
|
||
@layer theme {
|
||
:root,
|
||
:host {
|
||
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
||
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
|
||
"Liberation Mono", "Courier New", monospace;
|
||
--color-red-400: oklch(70.4% 0.191 22.216);
|
||
--color-red-500: oklch(63.7% 0.237 25.331);
|
||
--color-red-600: oklch(57.7% 0.245 27.325);
|
||
--color-orange-500: oklch(70.5% 0.213 47.604);
|
||
--color-amber-500: oklch(76.9% 0.188 70.08);
|
||
--color-amber-600: oklch(66.6% 0.179 58.318);
|
||
--color-yellow-400: oklch(85.2% 0.199 91.936);
|
||
--color-yellow-500: oklch(79.5% 0.184 86.047);
|
||
--color-lime-500: oklch(76.8% 0.233 130.85);
|
||
--color-green-100: oklch(96.2% 0.044 156.743);
|
||
--color-green-500: oklch(72.3% 0.219 149.579);
|
||
--color-green-600: oklch(62.7% 0.194 149.214);
|
||
--color-emerald-500: oklch(69.6% 0.17 162.48);
|
||
--color-teal-500: oklch(70.4% 0.14 182.503);
|
||
--color-cyan-500: oklch(71.5% 0.143 215.221);
|
||
--color-sky-500: oklch(68.5% 0.169 237.323);
|
||
--color-blue-500: oklch(62.3% 0.214 259.815);
|
||
--color-blue-600: oklch(54.6% 0.245 262.881);
|
||
--color-blue-800: oklch(42.4% 0.199 265.638);
|
||
--color-indigo-500: oklch(58.5% 0.233 277.117);
|
||
--color-violet-500: oklch(60.6% 0.25 292.717);
|
||
--color-purple-500: oklch(62.7% 0.265 303.9);
|
||
--color-fuchsia-500: oklch(66.7% 0.295 322.15);
|
||
--color-pink-500: oklch(65.6% 0.241 354.308);
|
||
--color-rose-500: oklch(64.5% 0.246 16.439);
|
||
--color-black: #000;
|
||
--color-white: #fff;
|
||
--spacing: 0.25rem;
|
||
--container-xs: 20rem;
|
||
--container-sm: 24rem;
|
||
--container-md: 28rem;
|
||
--container-lg: 32rem;
|
||
--container-xl: 36rem;
|
||
--container-2xl: 42rem;
|
||
--container-3xl: 48rem;
|
||
--container-4xl: 56rem;
|
||
--container-5xl: 64rem;
|
||
--container-7xl: 80rem;
|
||
--text-xs: 0.75rem;
|
||
--text-xs--line-height: calc(1 / 0.75);
|
||
--text-sm: 0.875rem;
|
||
--text-sm--line-height: calc(1.25 / 0.875);
|
||
--text-base: 1rem;
|
||
--text-base--line-height: 1.5;
|
||
--text-lg: 1.125rem;
|
||
--text-lg--line-height: calc(1.75 / 1.125);
|
||
--text-xl: 1.25rem;
|
||
--text-xl--line-height: calc(1.75 / 1.25);
|
||
--text-2xl: 1.5rem;
|
||
--text-2xl--line-height: calc(2 / 1.5);
|
||
--text-3xl: 1.875rem;
|
||
--text-3xl--line-height: 1.2;
|
||
--text-4xl: 2.25rem;
|
||
--text-4xl--line-height: calc(2.5 / 2.25);
|
||
--text-5xl: 3rem;
|
||
--text-5xl--line-height: 1;
|
||
--text-7xl: 4.5rem;
|
||
--text-7xl--line-height: 1;
|
||
--font-weight-normal: 400;
|
||
--font-weight-medium: 500;
|
||
--font-weight-semibold: 600;
|
||
--font-weight-bold: 700;
|
||
--font-weight-extrabold: 800;
|
||
--tracking-widest: 0.1em;
|
||
--radius-xs: 0.125rem;
|
||
--radius-sm: 0.25rem;
|
||
--radius-md: 0.375rem;
|
||
--radius-lg: 0.5rem;
|
||
--radius-xl: 0.75rem;
|
||
--radius-2xl: 1rem;
|
||
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
||
--animate-bounce: bounce 1s infinite;
|
||
--blur-sm: 8px;
|
||
--aspect-video: 16/9;
|
||
--default-transition-duration: 0.15s;
|
||
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||
--default-font-family: var(--font-sans);
|
||
--default-mono-font-family: var(--font-mono);
|
||
}
|
||
}
|
||
@layer base {
|
||
*,
|
||
:after,
|
||
:before,
|
||
::backdrop {
|
||
box-sizing: border-box;
|
||
border: 0 solid;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
::file-selector-button {
|
||
box-sizing: border-box;
|
||
border: 0 solid;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
html,
|
||
:host {
|
||
-webkit-text-size-adjust: 100%;
|
||
-moz-tab-size: 4;
|
||
tab-size: 4;
|
||
line-height: 1.5;
|
||
font-family: var(
|
||
--default-font-family,
|
||
ui-sans-serif,
|
||
system-ui,
|
||
sans-serif,
|
||
"Apple Color Emoji",
|
||
"Segoe UI Emoji",
|
||
"Segoe UI Symbol",
|
||
"Noto Color Emoji"
|
||
);
|
||
font-feature-settings: var(--default-font-feature-settings, normal);
|
||
font-variation-settings: var(--default-font-variation-settings, normal);
|
||
-webkit-tap-highlight-color: transparent;
|
||
}
|
||
hr {
|
||
height: 0;
|
||
color: inherit;
|
||
border-top-width: 1px;
|
||
}
|
||
abbr:where([title]) {
|
||
-webkit-text-decoration: underline dotted;
|
||
text-decoration: underline dotted;
|
||
}
|
||
h1,
|
||
h2,
|
||
h3,
|
||
h4,
|
||
h5,
|
||
h6 {
|
||
font-size: inherit;
|
||
font-weight: inherit;
|
||
}
|
||
a {
|
||
color: inherit;
|
||
-webkit-text-decoration: inherit;
|
||
text-decoration: inherit;
|
||
}
|
||
b,
|
||
strong {
|
||
font-weight: bolder;
|
||
}
|
||
code,
|
||
kbd,
|
||
samp,
|
||
pre {
|
||
font-family: var(
|
||
--default-mono-font-family,
|
||
ui-monospace,
|
||
SFMono-Regular,
|
||
Menlo,
|
||
Monaco,
|
||
Consolas,
|
||
"Liberation Mono",
|
||
"Courier New",
|
||
monospace
|
||
);
|
||
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
||
font-variation-settings: var(
|
||
--default-mono-font-variation-settings,
|
||
normal
|
||
);
|
||
font-size: 1em;
|
||
}
|
||
small {
|
||
font-size: 80%;
|
||
}
|
||
sub,
|
||
sup {
|
||
vertical-align: baseline;
|
||
font-size: 75%;
|
||
line-height: 0;
|
||
position: relative;
|
||
}
|
||
sub {
|
||
bottom: -0.25em;
|
||
}
|
||
sup {
|
||
top: -0.5em;
|
||
}
|
||
table {
|
||
text-indent: 0;
|
||
border-color: inherit;
|
||
border-collapse: collapse;
|
||
}
|
||
:-moz-focusring {
|
||
outline: auto;
|
||
}
|
||
progress {
|
||
vertical-align: baseline;
|
||
}
|
||
summary {
|
||
display: list-item;
|
||
}
|
||
ol,
|
||
ul,
|
||
menu {
|
||
list-style: none;
|
||
}
|
||
img,
|
||
svg,
|
||
video,
|
||
canvas,
|
||
audio,
|
||
iframe,
|
||
embed,
|
||
object {
|
||
vertical-align: middle;
|
||
display: block;
|
||
}
|
||
img,
|
||
video {
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
button,
|
||
input,
|
||
select,
|
||
optgroup,
|
||
textarea {
|
||
font: inherit;
|
||
font-feature-settings: inherit;
|
||
font-variation-settings: inherit;
|
||
letter-spacing: inherit;
|
||
color: inherit;
|
||
opacity: 1;
|
||
background-color: #0000;
|
||
border-radius: 0;
|
||
}
|
||
::file-selector-button {
|
||
font: inherit;
|
||
font-feature-settings: inherit;
|
||
font-variation-settings: inherit;
|
||
letter-spacing: inherit;
|
||
color: inherit;
|
||
opacity: 1;
|
||
background-color: #0000;
|
||
border-radius: 0;
|
||
}
|
||
:where(select:is([multiple], [size])) optgroup {
|
||
font-weight: bolder;
|
||
}
|
||
:where(select:is([multiple], [size])) optgroup option {
|
||
padding-inline-start: 20px;
|
||
}
|
||
::file-selector-button {
|
||
margin-inline-end: 4px;
|
||
}
|
||
::placeholder {
|
||
opacity: 1;
|
||
}
|
||
@supports (not ((-webkit-appearance: -apple-pay-button))) or
|
||
(contain-intrinsic-size: 1px) {
|
||
::placeholder {
|
||
color: currentColor;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
::placeholder {
|
||
color: color-mix(in oklab, currentcolor 50%, transparent);
|
||
}
|
||
}
|
||
}
|
||
textarea {
|
||
resize: vertical;
|
||
}
|
||
::-webkit-search-decoration {
|
||
-webkit-appearance: none;
|
||
}
|
||
::-webkit-date-and-time-value {
|
||
min-height: 1lh;
|
||
text-align: inherit;
|
||
}
|
||
::-webkit-datetime-edit {
|
||
display: inline-flex;
|
||
}
|
||
::-webkit-datetime-edit-fields-wrapper {
|
||
padding: 0;
|
||
}
|
||
::-webkit-datetime-edit {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-year-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-month-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-day-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-hour-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-minute-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-second-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-millisecond-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-datetime-edit-meridiem-field {
|
||
padding-block: 0;
|
||
}
|
||
::-webkit-calendar-picker-indicator {
|
||
line-height: 1;
|
||
}
|
||
:-moz-ui-invalid {
|
||
box-shadow: none;
|
||
}
|
||
button,
|
||
input:where([type="button"], [type="reset"], [type="submit"]) {
|
||
-webkit-appearance: button;
|
||
-moz-appearance: button;
|
||
appearance: button;
|
||
}
|
||
::file-selector-button {
|
||
-webkit-appearance: button;
|
||
-moz-appearance: button;
|
||
appearance: button;
|
||
}
|
||
::-webkit-inner-spin-button {
|
||
height: auto;
|
||
}
|
||
::-webkit-outer-spin-button {
|
||
height: auto;
|
||
}
|
||
[hidden]:where(:not([hidden="until-found"])) {
|
||
display: none !important;
|
||
}
|
||
:root {
|
||
color-scheme: light only;
|
||
--version: 1.13;
|
||
}
|
||
html,
|
||
body {
|
||
height: 100%;
|
||
}
|
||
* {
|
||
overscroll-behavior: contain;
|
||
touch-action: manipulation;
|
||
}
|
||
.maplibregl-ctrl-bottom-right {
|
||
z-index: 1;
|
||
height: max-content;
|
||
top: 0;
|
||
left: 0;
|
||
right: unset !important;
|
||
}
|
||
.maplibregl-ctrl-attrib.maplibregl-compact {
|
||
margin: 10px 80px 10px 12px !important;
|
||
}
|
||
#map canvas {
|
||
cursor: default;
|
||
}
|
||
body {
|
||
background-color: var(--color-base-100);
|
||
font-family: "Geist", var(--font-sans);
|
||
}
|
||
input:focus,
|
||
textarea:focus,
|
||
label:has(:focus) {
|
||
outline-style: var(--tw-outline-style) !important;
|
||
outline-width: 0 !important;
|
||
}
|
||
button,
|
||
a {
|
||
cursor: pointer;
|
||
}
|
||
@supports selector(:-moz-focusring) {
|
||
:root {
|
||
--fx-noise: none !important;
|
||
}
|
||
}
|
||
@font-face {
|
||
font-family: Geist;
|
||
font-style: normal;
|
||
font-weight: 100 900;
|
||
font-display: swap;
|
||
src: url(./Geist-cyrillic.CHSlOQsW.woff2) format("woff2");
|
||
unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
|
||
}
|
||
@font-face {
|
||
font-family: Geist;
|
||
font-style: normal;
|
||
font-weight: 100 900;
|
||
font-display: swap;
|
||
src: url(./Geist-latin-ext.DMtmJ5ZE.woff2) format("woff2");
|
||
unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304,
|
||
U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
|
||
U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||
}
|
||
@font-face {
|
||
font-family: Geist;
|
||
font-style: normal;
|
||
font-weight: 100 900;
|
||
font-display: swap;
|
||
src: url(./Geist-latin.Dg_dQHbK.woff2) format("woff2");
|
||
unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304,
|
||
U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||
U+FEFF, U+FFFD;
|
||
}
|
||
@font-face {
|
||
font-family: Geist Mono;
|
||
font-style: normal;
|
||
font-weight: 100 900;
|
||
font-display: swap;
|
||
src: url(./GeistMono-cyrillic.BZdD_g9V.woff2) format("woff2");
|
||
unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
|
||
}
|
||
@font-face {
|
||
font-family: Geist Mono;
|
||
font-style: normal;
|
||
font-weight: 100 900;
|
||
font-display: swap;
|
||
src: url(./GeistMono-latin-ext.b6lpi8_2.woff2) format("woff2");
|
||
unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304,
|
||
U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
|
||
U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||
}
|
||
@font-face {
|
||
font-family: Geist Mono;
|
||
font-style: normal;
|
||
font-weight: 100 900;
|
||
font-display: swap;
|
||
src: url(./GeistMono-latin.Cjtb1TV-.woff2) format("woff2");
|
||
unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304,
|
||
U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||
U+FEFF, U+FFFD;
|
||
}
|
||
@font-face {
|
||
font-family: Pixelify Sans;
|
||
font-style: normal;
|
||
font-weight: 400 700;
|
||
font-display: swap;
|
||
src: url(./PixelifySans-cyrillic.CPPz0Qvd.woff2) format("woff2");
|
||
unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
|
||
}
|
||
@font-face {
|
||
font-family: Pixelify Sans;
|
||
font-style: normal;
|
||
font-weight: 400 700;
|
||
font-display: swap;
|
||
src: url(./PixelifySans-cyrillic.CPPz0Qvd.woff2) format("woff2");
|
||
unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304,
|
||
U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
|
||
U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
||
}
|
||
@font-face {
|
||
font-family: Pixelify Sans;
|
||
font-style: normal;
|
||
font-weight: 400 700;
|
||
font-display: swap;
|
||
src: url(./PixelifySans-latin.vdc2vUDH.woff2) format("woff2");
|
||
unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304,
|
||
U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
||
U+FEFF, U+FFFD;
|
||
}
|
||
@font-face {
|
||
font-family: Noto Color Emoji;
|
||
font-style: normal;
|
||
font-weight: 400;
|
||
font-display: swap;
|
||
src: url(./NotoColorEmoji-flags.ClvgErYz.woff2) format("woff2");
|
||
unicode-range: U+1F1E6-1F1FF;
|
||
}
|
||
.iti {
|
||
--iti-path-flags-1x: url(./flags.a2kmUSbF.webp);
|
||
--iti-path-flags-2x: url(./flags@2x.gR6KPp3x.webp);
|
||
--iti-path-globe-1x: url(data:image/webp;base64,UklGRvoBAABXRUJQVlA4TO4BAAAvE8AEENXIkiRZtZu7H33ql07cqTlilvbz9i4tosSMZma27zWzHRGyIEk2bcu2bdvGn23btm3btm3btm0/m5PqAEkLTYYwxTPAW84Tl6wNgmvIqptKKH9nYAr4xle+TML/BDI2LSg6QHKT/nngE4+ZMIUePUGeTvly+YoV8F1DtkGUzlfst2LUKTX6PaWZeMWiDqN6PgcciGa2boYPmxlR5bIIL5l6RVyDYMXmY1f10pGb7PmAN6sRTBTN3N9C9Zi/LbVhlL+Oo2M7RxoE/a4+/nDjeBrSVwtGYXGGMIrUbJzCU1LgFftP9K1hkpOXmBim30cIJ1hgOkSwMhYCMgmaw7rXcfT5/wQcFhrcuaOEBuq5ytYblLPBEhV0Aq/ZqcDn/6RUDgrUL0/0UZgK/p+rR8/4nZAqFfuXA6TbtFQyJSe4gpj6T19a5q+HLEkox0mlWXvbIGbuJw28fkozjybhT5oXHNY4py5rH1CflcyeB1fId9wXDAvFmz/8m6AE/8TgYzEVGoRMCKUhND7PQho7jGo1utkdV559cm3llGFs3sxBZrmGbEExop91jyfg5G7BmCCi6evNaSDFBrG3vyaRNzt+HJ9kQpVbgj+xFUoNgr3abxqGfH3WfQq9lp5UZPRW74ZbFgpq+EGo67dUAQ==);
|
||
--iti-path-globe-2x: url(data:image/webp;base64,UklGRlwFAABXRUJQVlA4TE8FAAAvJ8AJEEfHKJIkKdmcgvjj3wwill7QwKhtJEnOnIDmv/zJLAdGbSNJcuYENP/lT2Y5OGwjSZHmtL3wTFl9tp8SM/9xz47Ctm2b7mnwDggKFNd77jgHyxhIYVvLQBDEHEBKRQBIOXzQpAhiBQCIAMaIAACHhAQHIMFhhRkSRt1hlRIYDAZDhiE3CVrBS2gFkZGRYdA6mjQQBYAv6yOZSVAQCoPWMCWBIBQKwtCCUBANFARBlChBfPCG/dZUjxJECYJQECU+KGFQEC1YdN/NSUNRTDm4osQBGUwFjDFCBOYRo9QWxAmPlKQECRERMbVLCZapZ0owSrnz3hb6/P8auL9vAwr7/xeS5EV9q2sWU2vbtjla27Zt28akprq6a3bPtm2np87eJIvePUzd9fvoXkT0fwK4Vwdo8t6qyQW+O7Tn4k7NAdvi/jMR0fGpwhglhZBKm3B0pzvg3JcDrUuMEn7SDaUIRTLhhqb/AbDvw+bbJToMEq5QflFfv+QhJVPxcmkm/Ih9TzZfFxk/CJUnP7zMykJqnhsqQ51M6tTv2Pdgc/GKCuKmaI96HlhVAJy4vWVWWgRSfYJ9l4jv+4aB0F15Td3kH1YW4DiMnEJHGSaFOoOdw4LxOhCqPTf0JvLys6I8Wv/9BeeuhEkZfE+UZfNSOumqT+CArgHwbBHZw+ZB00AGeiYxIKKudH2zDxg97VK7FxdO6+9Pmt3l4J/bZR58rtyEOY6dtdhcMbPh2jsyNKr3mNnDy+c8Pig0od5wGXakg7DYgYgfU5648s0fC0Ljv9SigQVrHwUafXVgmNE92zBBBeYjsHn5L6Emz/6776EnxwJUsqKADMDmq8fG/T16fujr7lhknhheLG4PPwFD15IXs2xWFWBZVj4ndDW+fDItPRncssi75Fxv/iHQQL2PDbkg4k/zP/BfgfR1axxy59PM/IYdsypZWUCUiTlck2/zTz4fm3LzqkNlxxnzW+A4fK4vkbNrIbn7bgVoKn3djQu90krrllynQ1g7v2rpjUYsfeR6tdLSaqV5w5fR6E5+k8BVT/0aqqSXDAdV4wvpCplTCJnbFTLb9dTEHjoQQiTMC7Ah3PPuwbffOfD+xP4d3s7uMGDC+wcOvrs7kVKTZ6m4EMIVfn1O61JyrnuU3EM3A3znefrp142f5cnmnDXNyXecPFYUYNt2pVUlvot//qWFDszz9aTrCuGpQVX4Wn+KAw6rCrAgw/eqLZXQVQfmXZ5QnnCF2wrwdlJ5F8DhC1MP/itRnhv+wmHji7hpT+x0tekziRw7jxUF2LZznX3xOydH3e5fVhYWO5QOlClPzYFX9EMD65P9bBHZ16fLq7dHfrlal5vO2LxuKkTcfABvjZDxwsWvf9hs7pCv2ry5cowvB2/8iosq5YraWHw7JCxLyaAWZPoUrilMaRMKo8WwpQv0z2AXqnLzLA42H5gKEVcTuM76RfDtpVrzh9b5oTp0e5SI+Topy78hAzFm6QqRMN2gugNYLH0EoHF6Pyw3vm+OYQMRlwPpCd+sAep/WQ1OPGZZ13lO0ugpE0+m1xGRbdNKe67wzTN3Nouw3yfw03WH+nrnqUAnEul5YOXA5o20L4SnAiXjoX6f7Pm6RIeBl14EGe4a8VLad4UnvZTwysxR2DtOumEiUOpliLi7FWNb2vOEK4QQnnyoIav+Ko9XhGbUF1gZ7tWKcVBLX+T05HkOGmn0iA4WjsW9Ww6ny3WiTAjhyd41WWfGrv4sAof7t/l+ppGJlFeR7oBVr4kF2BYP0oYjDxsZpjuTsQDHsXjAUYxrrwwe9gGWRRRZ3CcA);
|
||
}
|
||
:root,
|
||
[data-theme] {
|
||
background-color: var(--root-bg, var(--color-base-100));
|
||
color: var(--color-base-content);
|
||
}
|
||
:root {
|
||
--fx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E");
|
||
}
|
||
@property --radialprogress {
|
||
syntax: "<percentage>";
|
||
inherits: true;
|
||
initial-value: 0%;
|
||
}
|
||
:root {
|
||
scrollbar-color: currentColor #0000;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root {
|
||
scrollbar-color: color-mix(in oklch, currentColor 35%, #0000) #0000;
|
||
}
|
||
}
|
||
:root:has(
|
||
.modal-open,
|
||
.modal[open],
|
||
.modal:target,
|
||
.modal-toggle:checked,
|
||
.drawer:not([class*="drawer-open"]) > .drawer-toggle:checked
|
||
) {
|
||
overflow: hidden;
|
||
}
|
||
:where(:root),
|
||
:root:has(input.theme-controller[value="custom-winter"]:checked),
|
||
[data-theme="custom-winter"] {
|
||
color-scheme: light;
|
||
--color-base-100: oklch(100% 0 0);
|
||
--color-base-200: oklch(97.466% 0.011 259.822);
|
||
--color-base-300: oklch(93.268% 0.016 262.751);
|
||
--color-base-content: oklch(41.886% 0.053 255.824);
|
||
--color-primary: oklch(56.86% 0.255 257.57);
|
||
--color-primary-content: oklch(100% 0.051 257.57);
|
||
--color-secondary: oklch(42.551% 0.161 282.339);
|
||
--color-secondary-content: oklch(88.51% 0.032 282.339);
|
||
--color-accent: oklch(59.939% 0.191 335.171);
|
||
--color-accent-content: oklch(11.988% 0.038 335.171);
|
||
--color-neutral: oklch(19.616% 0.063 257.651);
|
||
--color-neutral-content: oklch(83.923% 0.012 257.651);
|
||
--color-info: oklch(88.127% 0.085 214.515);
|
||
--color-info-content: oklch(17.625% 0.017 214.515);
|
||
--color-success: oklch(80.494% 0.077 197.823);
|
||
--color-success-content: oklch(16.098% 0.015 197.823);
|
||
--color-warning: oklch(89.172% 0.045 71.47);
|
||
--color-warning-content: oklch(17.834% 0.009 71.47);
|
||
--color-error: oklch(73.092% 0.11 20.076);
|
||
--color-error-content: oklch(14.618% 0.022 20.076);
|
||
--radius-selector: 2rem;
|
||
--radius-field: 2rem;
|
||
--radius-box: 2rem;
|
||
--size-selector: 0.25rem;
|
||
--size-field: 0.25rem;
|
||
--border: 2px;
|
||
--depth: 1;
|
||
--noise: 1;
|
||
}
|
||
:root:has(input.theme-controller[value="dark"]:checked),
|
||
[data-theme="dark"] {
|
||
color-scheme: dark;
|
||
--color-base-100: oklch(30.857% 0.023 264.149);
|
||
--color-base-200: oklch(28.036% 0.019 264.182);
|
||
--color-base-300: oklch(26.346% 0.018 262.177);
|
||
--color-base-content: oklch(97.807% 0.029 256.847);
|
||
--color-primary: oklch(58% 0.233 277.117);
|
||
--color-primary-content: oklch(96% 0.018 272.314);
|
||
--color-secondary: oklch(65% 0.241 354.308);
|
||
--color-secondary-content: oklch(94% 0.028 342.258);
|
||
--color-accent: oklch(77% 0.152 181.912);
|
||
--color-accent-content: oklch(38% 0.063 188.416);
|
||
--color-neutral: oklch(14% 0.005 285.823);
|
||
--color-neutral-content: oklch(92% 0.004 286.32);
|
||
--color-info: oklch(74% 0.16 232.661);
|
||
--color-info-content: oklch(29% 0.066 243.157);
|
||
--color-success: oklch(76% 0.177 163.223);
|
||
--color-success-content: oklch(37% 0.077 168.94);
|
||
--color-warning: oklch(82% 0.189 84.429);
|
||
--color-warning-content: oklch(41% 0.112 45.904);
|
||
--color-error: oklch(71% 0.194 13.428);
|
||
--color-error-content: oklch(27% 0.105 12.094);
|
||
--radius-selector: 2rem;
|
||
--radius-field: 2rem;
|
||
--radius-box: 2rem;
|
||
--size-selector: 0.25rem;
|
||
--size-field: 0.25rem;
|
||
--border: 2px;
|
||
--depth: 1;
|
||
--noise: 1;
|
||
}
|
||
}
|
||
@layer components;
|
||
@layer utilities {
|
||
.diff {
|
||
webkit-user-select: none;
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
direction: ltr;
|
||
grid-template-columns: auto 1fr;
|
||
width: 100%;
|
||
display: grid;
|
||
position: relative;
|
||
overflow: hidden;
|
||
container-type: inline-size;
|
||
}
|
||
.diff:focus-visible,
|
||
.diff:has(.diff-item-1:focus-visible) {
|
||
outline-style: var(--tw-outline-style);
|
||
outline-offset: 1px;
|
||
outline-width: 2px;
|
||
outline-color: var(--color-base-content);
|
||
}
|
||
.diff:focus-visible .diff-resizer {
|
||
min-width: 90cqi;
|
||
max-width: 90cqi;
|
||
}
|
||
.diff:has(.diff-item-2:focus-visible) {
|
||
outline-style: var(--tw-outline-style);
|
||
outline-offset: 1px;
|
||
outline-width: 2px;
|
||
}
|
||
.diff:has(.diff-item-2:focus-visible) .diff-resizer {
|
||
min-width: 10cqi;
|
||
max-width: 10cqi;
|
||
}
|
||
@supports (-webkit-overflow-scrolling: touch) and (overflow: -webkit-paged-x) {
|
||
.diff:focus .diff-resizer {
|
||
min-width: 10cqi;
|
||
max-width: 10cqi;
|
||
}
|
||
.diff:has(.diff-item-1:focus) .diff-resizer {
|
||
min-width: 90cqi;
|
||
max-width: 90cqi;
|
||
}
|
||
}
|
||
.modal {
|
||
pointer-events: none;
|
||
visibility: hidden;
|
||
width: 100%;
|
||
max-width: none;
|
||
height: 100%;
|
||
max-height: none;
|
||
color: inherit;
|
||
transition: translate 0.3s ease-out, visibility 0.3s allow-discrete,
|
||
background-color 0.3s ease-out, opacity 0.1s ease-out;
|
||
overscroll-behavior: contain;
|
||
z-index: 999;
|
||
background-color: #0000;
|
||
place-items: center;
|
||
margin: 0;
|
||
padding: 0;
|
||
display: grid;
|
||
position: fixed;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
overflow: hidden;
|
||
}
|
||
.modal::backdrop {
|
||
display: none;
|
||
}
|
||
.modal.modal-open,
|
||
.modal[open],
|
||
.modal:target {
|
||
pointer-events: auto;
|
||
visibility: visible;
|
||
opacity: 1;
|
||
background-color: #0006;
|
||
}
|
||
:is(.modal.modal-open, .modal[open], .modal:target) .modal-box {
|
||
opacity: 1;
|
||
translate: 0;
|
||
scale: 1;
|
||
}
|
||
@starting-style {
|
||
.modal.modal-open,
|
||
.modal[open],
|
||
.modal:target {
|
||
visibility: hidden;
|
||
opacity: 0;
|
||
}
|
||
}
|
||
.tooltip {
|
||
--tt-bg: var(--color-neutral);
|
||
--tt-off: calc(100% + 0.5rem);
|
||
--tt-tail: calc(100% + 1px + 0.25rem);
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
.tooltip > :where(.tooltip-content),
|
||
.tooltip:where([data-tip]):before {
|
||
border-radius: var(--radius-field);
|
||
text-align: center;
|
||
white-space: normal;
|
||
max-width: 20rem;
|
||
color: var(--color-neutral-content);
|
||
opacity: 0;
|
||
background-color: var(--tt-bg);
|
||
pointer-events: none;
|
||
z-index: 2;
|
||
--tw-content: attr(data-tip);
|
||
content: var(--tw-content);
|
||
width: max-content;
|
||
padding-block: 0.25rem;
|
||
padding-inline: 0.5rem;
|
||
font-size: 0.875rem;
|
||
line-height: 1.25;
|
||
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 75ms,
|
||
transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 75ms;
|
||
position: absolute;
|
||
}
|
||
.tooltip:after {
|
||
opacity: 0;
|
||
background-color: var(--tt-bg);
|
||
content: "";
|
||
pointer-events: none;
|
||
--mask-tooltip: url("data:image/svg+xml,%3Csvg width='10' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.500009 1C3.5 1 3.00001 4 5.00001 4C7 4 6.5 1 9.5 1C10 1 10 0.499897 10 0H0C-1.99338e-08 0.5 0 1 0.500009 1Z' fill='black'/%3E%3C/svg%3E%0A");
|
||
width: 0.625rem;
|
||
height: 0.25rem;
|
||
-webkit-mask-position: -1px 0;
|
||
mask-position: -1px 0;
|
||
-webkit-mask-repeat: no-repeat;
|
||
mask-repeat: no-repeat;
|
||
-webkit-mask-image: var(--mask-tooltip);
|
||
mask-image: var(--mask-tooltip);
|
||
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 75ms,
|
||
transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 75ms;
|
||
display: block;
|
||
position: absolute;
|
||
}
|
||
:is(
|
||
.tooltip.tooltip-open,
|
||
.tooltip[data-tip]:not([data-tip=""]):hover,
|
||
.tooltip:not(:has(.tooltip-content:empty)):has(.tooltip-content):hover,
|
||
.tooltip:has(:focus-visible)
|
||
)
|
||
> .tooltip-content,
|
||
:is(
|
||
.tooltip.tooltip-open,
|
||
.tooltip[data-tip]:not([data-tip=""]):hover,
|
||
.tooltip:not(:has(.tooltip-content:empty)):has(.tooltip-content):hover,
|
||
.tooltip:has(:focus-visible)
|
||
)[data-tip]:before,
|
||
:is(
|
||
.tooltip.tooltip-open,
|
||
.tooltip[data-tip]:not([data-tip=""]):hover,
|
||
.tooltip:not(:has(.tooltip-content:empty)):has(.tooltip-content):hover,
|
||
.tooltip:has(:focus-visible)
|
||
):after {
|
||
opacity: 1;
|
||
--tt-pos: 0rem;
|
||
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
|
||
transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||
}
|
||
.tooltip > .tooltip-content,
|
||
.tooltip[data-tip]:before {
|
||
transform: translate(-50%) translateY(var(--tt-pos, 0.25rem));
|
||
inset: auto auto var(--tt-off) 50%;
|
||
}
|
||
.tooltip:after {
|
||
transform: translate(-50%) translateY(var(--tt-pos, 0.25rem));
|
||
inset: auto auto var(--tt-tail) 50%;
|
||
}
|
||
.tab {
|
||
cursor: pointer;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
text-align: center;
|
||
webkit-user-select: none;
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
flex-wrap: wrap;
|
||
justify-content: center;
|
||
align-items: center;
|
||
display: inline-flex;
|
||
position: relative;
|
||
}
|
||
@media (hover: hover) {
|
||
.tab:hover {
|
||
color: var(--color-base-content);
|
||
}
|
||
}
|
||
.tab {
|
||
--tab-p: 1rem;
|
||
--tab-bg: var(--color-base-100);
|
||
--tab-border-color: var(--color-base-300);
|
||
--tab-radius-ss: 0;
|
||
--tab-radius-se: 0;
|
||
--tab-radius-es: 0;
|
||
--tab-radius-ee: 0;
|
||
--tab-order: 0;
|
||
--tab-radius-min: calc(0.75rem - var(--border));
|
||
order: var(--tab-order);
|
||
height: var(--tab-height);
|
||
border-color: #0000;
|
||
padding-inline-start: var(--tab-p);
|
||
padding-inline-end: var(--tab-p);
|
||
font-size: 0.875rem;
|
||
}
|
||
.tab:is(input[type="radio"]) {
|
||
min-width: fit-content;
|
||
}
|
||
.tab:is(input[type="radio"]):after {
|
||
content: attr(aria-label);
|
||
}
|
||
.tab:is(label) {
|
||
position: relative;
|
||
}
|
||
.tab:is(label) input {
|
||
cursor: pointer;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
opacity: 0;
|
||
position: absolute;
|
||
top: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
left: 0;
|
||
}
|
||
:is(
|
||
.tab:checked,
|
||
.tab:is(label:has(:checked)),
|
||
.tab:is(.tab-active, [aria-selected="true"])
|
||
)
|
||
+ .tab-content {
|
||
height: calc(100% - var(--tab-height) + var(--border));
|
||
display: block;
|
||
}
|
||
.tab:not(
|
||
:checked,
|
||
label:has(:checked),
|
||
:hover,
|
||
.tab-active,
|
||
[aria-selected="true"]
|
||
) {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.tab:not(
|
||
:checked,
|
||
label:has(:checked),
|
||
:hover,
|
||
.tab-active,
|
||
[aria-selected="true"]
|
||
) {
|
||
color: color-mix(in oklab, var(--color-base-content) 50%, transparent);
|
||
}
|
||
}
|
||
.tab:not(input):empty {
|
||
cursor: default;
|
||
flex-grow: 1;
|
||
}
|
||
.tab:focus {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.tab:focus {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.tab:focus-visible,
|
||
.tab:is(label:has(:checked:focus-visible)) {
|
||
outline-offset: -5px;
|
||
outline: 2px solid;
|
||
}
|
||
.tab[disabled] {
|
||
pointer-events: none;
|
||
opacity: 0.4;
|
||
}
|
||
.menu {
|
||
--menu-active-fg: var(--color-neutral-content);
|
||
--menu-active-bg: var(--color-neutral);
|
||
flex-flow: column wrap;
|
||
width: fit-content;
|
||
padding: 0.5rem;
|
||
font-size: 0.875rem;
|
||
display: flex;
|
||
}
|
||
.menu :where(li ul) {
|
||
white-space: nowrap;
|
||
margin-inline-start: 1rem;
|
||
padding-inline-start: 0.5rem;
|
||
position: relative;
|
||
}
|
||
.menu :where(li ul):before {
|
||
background-color: var(--color-base-content);
|
||
opacity: 0.1;
|
||
width: var(--border);
|
||
content: "";
|
||
inset-inline-start: 0;
|
||
position: absolute;
|
||
top: 0.75rem;
|
||
bottom: 0.75rem;
|
||
}
|
||
.menu :where(li > .menu-dropdown:not(.menu-dropdown-show)) {
|
||
display: none;
|
||
}
|
||
.menu :where(li:not(.menu-title) > :not(ul, details, .menu-title, .btn)),
|
||
.menu :where(li:not(.menu-title) > details > summary:not(.menu-title)) {
|
||
border-radius: var(--radius-field);
|
||
text-align: start;
|
||
text-wrap: balance;
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
grid-auto-columns: minmax(auto, max-content) auto max-content;
|
||
grid-auto-flow: column;
|
||
align-content: flex-start;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
padding-block: 0.375rem;
|
||
padding-inline: 0.75rem;
|
||
transition-property: color, background-color, box-shadow;
|
||
transition-duration: 0.2s;
|
||
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
||
display: grid;
|
||
}
|
||
.menu :where(li > details > summary) {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.menu :where(li > details > summary) {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.menu :where(li > details > summary)::-webkit-details-marker {
|
||
display: none;
|
||
}
|
||
:is(
|
||
.menu :where(li > details > summary),
|
||
.menu :where(li > .menu-dropdown-toggle)
|
||
):after {
|
||
content: "";
|
||
transform-origin: 50%;
|
||
pointer-events: none;
|
||
justify-self: flex-end;
|
||
width: 0.375rem;
|
||
height: 0.375rem;
|
||
transition-property: rotate, translate;
|
||
transition-duration: 0.2s;
|
||
display: block;
|
||
translate: 0 -1px;
|
||
rotate: -135deg;
|
||
box-shadow: inset 2px 2px;
|
||
}
|
||
.menu :where(li > details[open] > summary):after,
|
||
.menu :where(li > .menu-dropdown-toggle.menu-dropdown-show):after {
|
||
translate: 0 1px;
|
||
rotate: 45deg;
|
||
}
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn).menu-focus,
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn):focus-visible {
|
||
cursor: pointer;
|
||
background-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn).menu-focus,
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn):focus-visible {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn).menu-focus,
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn):focus-visible {
|
||
color: var(--color-base-content);
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn).menu-focus,
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled) > :not(ul, details, .menu-title),
|
||
li:not(.menu-title, .disabled) > details > summary:not(.menu-title)
|
||
):not(.menu-active, :active, .btn):focus-visible {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled)
|
||
> :not(ul, details, .menu-title):not(.menu-active, :active, .btn):hover,
|
||
li:not(.menu-title, .disabled)
|
||
> details
|
||
> summary:not(.menu-title):not(.menu-active, :active, .btn):hover
|
||
) {
|
||
cursor: pointer;
|
||
background-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled)
|
||
> :not(ul, details, .menu-title):not(
|
||
.menu-active,
|
||
:active,
|
||
.btn
|
||
):hover,
|
||
li:not(.menu-title, .disabled)
|
||
> details
|
||
> summary:not(.menu-title):not(.menu-active, :active, .btn):hover
|
||
) {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled)
|
||
> :not(ul, details, .menu-title):not(.menu-active, :active, .btn):hover,
|
||
li:not(.menu-title, .disabled)
|
||
> details
|
||
> summary:not(.menu-title):not(.menu-active, :active, .btn):hover
|
||
) {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled)
|
||
> :not(ul, details, .menu-title):not(
|
||
.menu-active,
|
||
:active,
|
||
.btn
|
||
):hover,
|
||
li:not(.menu-title, .disabled)
|
||
> details
|
||
> summary:not(.menu-title):not(.menu-active, :active, .btn):hover
|
||
) {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.menu
|
||
:where(
|
||
li:not(.menu-title, .disabled)
|
||
> :not(ul, details, .menu-title):not(.menu-active, :active, .btn):hover,
|
||
li:not(.menu-title, .disabled)
|
||
> details
|
||
> summary:not(.menu-title):not(.menu-active, :active, .btn):hover
|
||
) {
|
||
box-shadow: inset 0 1px #00000003, inset 0 -1px #ffffff03;
|
||
}
|
||
.menu :where(li:empty) {
|
||
background-color: var(--color-base-content);
|
||
opacity: 0.1;
|
||
height: 1px;
|
||
margin: 0.5rem 1rem;
|
||
}
|
||
.menu :where(li) {
|
||
flex-flow: column wrap;
|
||
flex-shrink: 0;
|
||
align-items: stretch;
|
||
display: flex;
|
||
position: relative;
|
||
}
|
||
.menu :where(li) .badge {
|
||
justify-self: flex-end;
|
||
}
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn):active,
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn).menu-active,
|
||
.menu :where(li) > details > summary:active {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn):active,
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn).menu-active,
|
||
.menu :where(li) > details > summary:active {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn):active,
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn).menu-active,
|
||
.menu :where(li) > details > summary:active {
|
||
color: var(--menu-active-fg);
|
||
background-color: var(--menu-active-bg);
|
||
background-size: auto, calc(var(--noise) * 100%);
|
||
background-image: none, var(--fx-noise);
|
||
}
|
||
:is(
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn):active,
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn).menu-active,
|
||
.menu :where(li) > details > summary:active
|
||
):not(
|
||
:is(
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn):active,
|
||
.menu :where(li) > :not(ul, .menu-title, details, .btn).menu-active,
|
||
.menu :where(li) > details > summary:active
|
||
):active
|
||
) {
|
||
box-shadow: 0 2px calc(var(--depth) * 3px) -2px var(--menu-active-bg);
|
||
}
|
||
.menu :where(li).menu-disabled {
|
||
pointer-events: none;
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.menu :where(li).menu-disabled {
|
||
color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
|
||
}
|
||
}
|
||
.menu .dropdown:focus-within .menu-dropdown-toggle:after {
|
||
translate: 0 1px;
|
||
rotate: 45deg;
|
||
}
|
||
.menu .dropdown-content {
|
||
margin-top: 0.5rem;
|
||
padding: 0.5rem;
|
||
}
|
||
.menu .dropdown-content:before {
|
||
display: none;
|
||
}
|
||
.dropdown {
|
||
position-area: var(--anchor-v, bottom) var(--anchor-h, span-right);
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
.dropdown > :not(summary):focus {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.dropdown > :not(summary):focus {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.dropdown .dropdown-content {
|
||
position: absolute;
|
||
}
|
||
.dropdown:not(details, .dropdown-open, .dropdown-hover:hover, :focus-within)
|
||
.dropdown-content {
|
||
transform-origin: top;
|
||
opacity: 0;
|
||
display: none;
|
||
scale: 95%;
|
||
}
|
||
.dropdown[popover],
|
||
.dropdown .dropdown-content {
|
||
z-index: 999;
|
||
transition-behavior: allow-discrete;
|
||
transition-property: opacity, scale, display;
|
||
transition-duration: 0.2s;
|
||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||
animation: 0.2s dropdown;
|
||
}
|
||
@starting-style {
|
||
.dropdown[popover],
|
||
.dropdown .dropdown-content {
|
||
opacity: 0;
|
||
scale: 95%;
|
||
}
|
||
}
|
||
:is(
|
||
.dropdown.dropdown-open,
|
||
.dropdown:not(.dropdown-hover):focus,
|
||
.dropdown:focus-within
|
||
)
|
||
> [tabindex]:first-child {
|
||
pointer-events: none;
|
||
}
|
||
:is(
|
||
.dropdown.dropdown-open,
|
||
.dropdown:not(.dropdown-hover):focus,
|
||
.dropdown:focus-within
|
||
)
|
||
.dropdown-content {
|
||
opacity: 1;
|
||
}
|
||
.dropdown.dropdown-hover:hover .dropdown-content {
|
||
opacity: 1;
|
||
scale: 100%;
|
||
}
|
||
.dropdown:is(details) summary::-webkit-details-marker {
|
||
display: none;
|
||
}
|
||
:is(.dropdown.dropdown-open, .dropdown:focus, .dropdown:focus-within)
|
||
.dropdown-content {
|
||
scale: 100%;
|
||
}
|
||
.dropdown:where([popover]) {
|
||
background: 0 0;
|
||
}
|
||
.dropdown[popover] {
|
||
color: inherit;
|
||
position: fixed;
|
||
}
|
||
@supports not (position-area: bottom) {
|
||
.dropdown[popover] {
|
||
margin: auto;
|
||
}
|
||
.dropdown[popover].dropdown-open:not(:popover-open) {
|
||
transform-origin: top;
|
||
opacity: 0;
|
||
display: none;
|
||
scale: 95%;
|
||
}
|
||
.dropdown[popover]::backdrop {
|
||
background-color: oklab(0% none none/.3);
|
||
}
|
||
}
|
||
.dropdown[popover]:not(.dropdown-open, :popover-open) {
|
||
transform-origin: top;
|
||
opacity: 0;
|
||
display: none;
|
||
scale: 95%;
|
||
}
|
||
:where(.btn) {
|
||
width: unset;
|
||
}
|
||
.btn {
|
||
cursor: pointer;
|
||
text-align: center;
|
||
vertical-align: middle;
|
||
outline-offset: 2px;
|
||
webkit-user-select: none;
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
padding-inline: var(--btn-p);
|
||
color: var(--btn-fg);
|
||
--tw-prose-links: var(--btn-fg);
|
||
height: var(--size);
|
||
font-size: var(--fontsize, 0.875rem);
|
||
outline-color: var(--btn-color, var(--color-base-content));
|
||
background-color: var(--btn-bg);
|
||
background-size: auto, calc(var(--noise) * 100%);
|
||
background-image: none, var(--btn-noise);
|
||
border-width: var(--border);
|
||
border-style: solid;
|
||
border-color: var(--btn-border);
|
||
text-shadow: 0 0.5px oklch(100% 0 0 / calc(var(--depth) * 0.15));
|
||
touch-action: manipulation;
|
||
box-shadow: 0 0.5px 0 0.5px oklch(100% 0 0 / calc(var(--depth) * 6%)) inset,
|
||
var(--btn-shadow);
|
||
--size: calc(var(--size-field, 0.25rem) * 10);
|
||
--btn-bg: var(--btn-color, var(--color-base-200));
|
||
--btn-fg: var(--color-base-content);
|
||
--btn-p: 1rem;
|
||
--btn-border: var(--btn-bg);
|
||
border-start-start-radius: var(--join-ss, var(--radius-field));
|
||
border-start-end-radius: var(--join-se, var(--radius-field));
|
||
border-end-end-radius: var(--join-ee, var(--radius-field));
|
||
border-end-start-radius: var(--join-es, var(--radius-field));
|
||
flex-wrap: nowrap;
|
||
flex-shrink: 0;
|
||
justify-content: center;
|
||
align-items: center;
|
||
gap: 0.375rem;
|
||
font-weight: 600;
|
||
transition-property: color, background-color, border-color, box-shadow;
|
||
transition-duration: 0.2s;
|
||
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
||
display: inline-flex;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn {
|
||
--btn-border: color-mix(
|
||
in oklab,
|
||
var(--btn-bg),
|
||
#000 calc(var(--depth) * 5%)
|
||
);
|
||
}
|
||
}
|
||
.btn {
|
||
--btn-shadow: 0 3px 2px -2px var(--btn-bg), 0 4px 3px -2px var(--btn-bg);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn {
|
||
--btn-shadow: 0 3px 2px -2px color-mix(in oklab, var(--btn-bg)
|
||
calc(var(--depth) * 30%), #0000),
|
||
0 4px 3px -2px color-mix(in oklab, var(--btn-bg)
|
||
calc(var(--depth) * 30%), #0000);
|
||
}
|
||
}
|
||
.btn {
|
||
--btn-noise: var(--fx-noise);
|
||
}
|
||
.prose .btn {
|
||
text-decoration-line: none;
|
||
}
|
||
@media (hover: hover) {
|
||
.btn:hover {
|
||
--btn-bg: var(--btn-color, var(--color-base-200));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:hover {
|
||
--btn-bg: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-200)),
|
||
#000 7%
|
||
);
|
||
}
|
||
}
|
||
}
|
||
.btn:focus-visible {
|
||
isolation: isolate;
|
||
outline-width: 2px;
|
||
outline-style: solid;
|
||
}
|
||
.btn:active:not(.btn-active) {
|
||
--btn-bg: var(--btn-color, var(--color-base-200));
|
||
translate: 0 0.5px;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:active:not(.btn-active) {
|
||
--btn-bg: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-200)),
|
||
#000 5%
|
||
);
|
||
}
|
||
}
|
||
.btn:active:not(.btn-active) {
|
||
--btn-border: var(--btn-color, var(--color-base-200));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:active:not(.btn-active) {
|
||
--btn-border: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-200)),
|
||
#000 7%
|
||
);
|
||
}
|
||
}
|
||
.btn:active:not(.btn-active) {
|
||
--btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0);
|
||
}
|
||
.btn:is(:disabled, [disabled], .btn-disabled):not(.btn-link, .btn-ghost) {
|
||
background-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:is(:disabled, [disabled], .btn-disabled):not(.btn-link, .btn-ghost) {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.btn:is(:disabled, [disabled], .btn-disabled):not(.btn-link, .btn-ghost) {
|
||
box-shadow: none;
|
||
}
|
||
.btn:is(:disabled, [disabled], .btn-disabled) {
|
||
pointer-events: none;
|
||
--btn-border: #0000;
|
||
--btn-noise: none;
|
||
--btn-fg: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:is(:disabled, [disabled], .btn-disabled) {
|
||
--btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
@media (hover: hover) {
|
||
.btn:is(:disabled, [disabled], .btn-disabled):hover {
|
||
pointer-events: none;
|
||
background-color: var(--color-neutral);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:is(:disabled, [disabled], .btn-disabled):hover {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-neutral) 20%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.btn:is(:disabled, [disabled], .btn-disabled):hover {
|
||
--btn-border: #0000;
|
||
--btn-fg: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn:is(:disabled, [disabled], .btn-disabled):hover {
|
||
--btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
}
|
||
.btn:is(input[type="checkbox"], input[type="radio"]) {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
}
|
||
.btn:is(input[type="checkbox"], input[type="radio"]):after {
|
||
content: attr(aria-label);
|
||
}
|
||
.btn:where(input:checked:not(.filter .btn)) {
|
||
--btn-color: var(--color-primary);
|
||
--btn-fg: var(--color-primary-content);
|
||
isolation: isolate;
|
||
}
|
||
.\!loading {
|
||
pointer-events: none !important;
|
||
aspect-ratio: 1 !important;
|
||
vertical-align: middle !important;
|
||
width: calc(var(--size-selector, 0.25rem) * 6) !important;
|
||
background-color: currentColor !important;
|
||
display: inline-block !important;
|
||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E") !important;
|
||
mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E") !important;
|
||
-webkit-mask-position: 50% !important;
|
||
mask-position: 50% !important;
|
||
-webkit-mask-size: 100% !important;
|
||
mask-size: 100% !important;
|
||
-webkit-mask-repeat: no-repeat !important;
|
||
mask-repeat: no-repeat !important;
|
||
}
|
||
.loading {
|
||
pointer-events: none;
|
||
aspect-ratio: 1;
|
||
vertical-align: middle;
|
||
width: calc(var(--size-selector, 0.25rem) * 6);
|
||
background-color: currentColor;
|
||
display: inline-block;
|
||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
|
||
mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
|
||
-webkit-mask-position: 50%;
|
||
mask-position: 50%;
|
||
-webkit-mask-size: 100%;
|
||
mask-size: 100%;
|
||
-webkit-mask-repeat: no-repeat;
|
||
mask-repeat: no-repeat;
|
||
}
|
||
.pointer-events-none {
|
||
pointer-events: none;
|
||
}
|
||
.invisible {
|
||
visibility: hidden;
|
||
}
|
||
.visible {
|
||
visibility: visible;
|
||
}
|
||
.list {
|
||
flex-direction: column;
|
||
font-size: 0.875rem;
|
||
display: flex;
|
||
}
|
||
.list :where(.list-row) {
|
||
--list-grid-cols: minmax(0, auto) 1fr;
|
||
border-radius: var(--radius-box);
|
||
word-break: break-word;
|
||
grid-auto-flow: column;
|
||
grid-template-columns: var(--list-grid-cols);
|
||
gap: 1rem;
|
||
padding: 1rem;
|
||
display: grid;
|
||
position: relative;
|
||
}
|
||
.list :where(.list-row):has(.list-col-grow:first-child) {
|
||
--list-grid-cols: 1fr;
|
||
}
|
||
.list :where(.list-row):has(.list-col-grow:nth-child(2)) {
|
||
--list-grid-cols: minmax(0, auto) 1fr;
|
||
}
|
||
.list :where(.list-row):has(.list-col-grow:nth-child(3)) {
|
||
--list-grid-cols: minmax(0, auto) minmax(0, auto) 1fr;
|
||
}
|
||
.list :where(.list-row):has(.list-col-grow:nth-child(4)) {
|
||
--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr;
|
||
}
|
||
.list :where(.list-row):has(.list-col-grow:nth-child(5)) {
|
||
--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto)
|
||
minmax(0, auto) 1fr;
|
||
}
|
||
.list :where(.list-row):has(.list-col-grow:nth-child(6)) {
|
||
--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto)
|
||
minmax(0, auto) minmax(0, auto) 1fr;
|
||
}
|
||
.list :where(.list-row) :not(.list-col-wrap) {
|
||
grid-row-start: 1;
|
||
}
|
||
:is(
|
||
.list > :not(:last-child).list-row,
|
||
.list > :not(:last-child) .list-row
|
||
):after {
|
||
content: "";
|
||
border-bottom: var(--border) solid;
|
||
inset-inline: var(--radius-box);
|
||
border-color: var(--color-base-content);
|
||
position: absolute;
|
||
bottom: 0;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:is(
|
||
.list > :not(:last-child).list-row,
|
||
.list > :not(:last-child) .list-row
|
||
):after {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 5%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.toast {
|
||
translate: var(--toast-x, 0) var(--toast-y, 0);
|
||
inset-inline: auto 1rem;
|
||
background-color: #0000;
|
||
flex-direction: column;
|
||
gap: 0.5rem;
|
||
width: max-content;
|
||
max-width: calc(100vw - 2rem);
|
||
display: flex;
|
||
position: fixed;
|
||
top: auto;
|
||
bottom: 1rem;
|
||
}
|
||
.toast > * {
|
||
animation: 0.25s ease-out toast;
|
||
}
|
||
.toast:where(.toast-start) {
|
||
--toast-x: 0;
|
||
inset-inline: 1rem auto;
|
||
}
|
||
.toast:where(.toast-center) {
|
||
--toast-x: -50%;
|
||
inset-inline: 50%;
|
||
}
|
||
.toast:where(.toast-end) {
|
||
--toast-x: 0;
|
||
inset-inline: auto 1rem;
|
||
}
|
||
.toast:where(.toast-bottom) {
|
||
--toast-y: 0;
|
||
top: auto;
|
||
bottom: 1rem;
|
||
}
|
||
.toast:where(.toast-middle) {
|
||
--toast-y: -50%;
|
||
top: 50%;
|
||
bottom: auto;
|
||
}
|
||
.toast:where(.toast-top) {
|
||
--toast-y: 0;
|
||
top: 1rem;
|
||
bottom: auto;
|
||
}
|
||
.input {
|
||
cursor: text;
|
||
border: var(--border) solid #0000;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
background-color: var(--color-base-100);
|
||
vertical-align: middle;
|
||
white-space: nowrap;
|
||
width: clamp(3rem, 20rem, 100%);
|
||
height: var(--size);
|
||
touch-action: manipulation;
|
||
border-color: var(--input-color);
|
||
box-shadow: 0 1px var(--input-color) inset,
|
||
0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
border-start-start-radius: var(--join-ss, var(--radius-field));
|
||
border-start-end-radius: var(--join-se, var(--radius-field));
|
||
border-end-end-radius: var(--join-ee, var(--radius-field));
|
||
border-end-start-radius: var(--join-es, var(--radius-field));
|
||
flex-shrink: 1;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
padding-inline: 0.75rem;
|
||
font-size: 0.875rem;
|
||
display: inline-flex;
|
||
position: relative;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.input {
|
||
box-shadow: 0 1px
|
||
color-mix(
|
||
in oklab,
|
||
var(--input-color) calc(var(--depth) * 10%),
|
||
#0000
|
||
)
|
||
inset,
|
||
0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
}
|
||
}
|
||
.input {
|
||
--size: calc(var(--size-field, 0.25rem) * 10);
|
||
--input-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.input {
|
||
--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
.input:where(input) {
|
||
display: inline-flex;
|
||
}
|
||
.input :where(input) {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
background-color: #0000;
|
||
border: none;
|
||
width: 100%;
|
||
height: 100%;
|
||
display: inline-flex;
|
||
}
|
||
.input :where(input):focus,
|
||
.input :where(input):focus-within {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.input :where(input):focus,
|
||
.input :where(input):focus-within {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.input :where(input[type="url"]),
|
||
.input :where(input[type="email"]) {
|
||
direction: ltr;
|
||
}
|
||
.input :where(input[type="date"]) {
|
||
display: inline-block;
|
||
}
|
||
.input:focus,
|
||
.input:focus-within {
|
||
--input-color: var(--color-base-content);
|
||
box-shadow: 0 1px var(--input-color);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.input:focus,
|
||
.input:focus-within {
|
||
box-shadow: 0 1px
|
||
color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000);
|
||
}
|
||
}
|
||
.input:focus,
|
||
.input:focus-within {
|
||
outline: 2px solid var(--input-color);
|
||
outline-offset: 2px;
|
||
isolation: isolate;
|
||
z-index: 1;
|
||
}
|
||
.input:has(> input[disabled]),
|
||
.input:is(:disabled, [disabled]) {
|
||
cursor: not-allowed;
|
||
border-color: var(--color-base-200);
|
||
background-color: var(--color-base-200);
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.input:has(> input[disabled]),
|
||
.input:is(:disabled, [disabled]) {
|
||
color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
|
||
}
|
||
}
|
||
:is(
|
||
.input:has(> input[disabled]),
|
||
.input:is(:disabled, [disabled])
|
||
)::placeholder {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:is(
|
||
.input:has(> input[disabled]),
|
||
.input:is(:disabled, [disabled])
|
||
)::placeholder {
|
||
color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
|
||
}
|
||
}
|
||
.input:has(> input[disabled]),
|
||
.input:is(:disabled, [disabled]) {
|
||
box-shadow: none;
|
||
}
|
||
.input:has(> input[disabled]) > input[disabled] {
|
||
cursor: not-allowed;
|
||
}
|
||
.input::-webkit-date-and-time-value {
|
||
text-align: inherit;
|
||
}
|
||
.input[type="number"]::-webkit-inner-spin-button {
|
||
margin-block: -0.75rem;
|
||
margin-inline-end: -0.75rem;
|
||
}
|
||
.input::-webkit-calendar-picker-indicator {
|
||
position: absolute;
|
||
inset-inline-end: 0.75em;
|
||
}
|
||
.indicator {
|
||
width: max-content;
|
||
display: inline-flex;
|
||
position: relative;
|
||
}
|
||
.indicator :where(.indicator-item) {
|
||
z-index: 1;
|
||
white-space: nowrap;
|
||
top: var(--indicator-t, 0);
|
||
bottom: var(--indicator-b, auto);
|
||
left: var(--indicator-s, auto);
|
||
right: var(--indicator-e, 0);
|
||
translate: var(--indicator-x, 50%) var(--indicator-y, -50%);
|
||
position: absolute;
|
||
}
|
||
.table {
|
||
border-radius: var(--radius-box);
|
||
text-align: left;
|
||
width: 100%;
|
||
font-size: 0.875rem;
|
||
position: relative;
|
||
}
|
||
.table:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
||
text-align: right;
|
||
}
|
||
@media (hover: hover) {
|
||
:is(.table tr.row-hover, .table tr.row-hover:nth-child(2n)):hover {
|
||
background-color: var(--color-base-200);
|
||
}
|
||
}
|
||
.table :where(th, td) {
|
||
vertical-align: middle;
|
||
padding-block: 0.75rem;
|
||
padding-inline: 1rem;
|
||
}
|
||
.table :where(thead, tfoot) {
|
||
white-space: nowrap;
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.table :where(thead, tfoot) {
|
||
color: color-mix(in oklab, var(--color-base-content) 60%, transparent);
|
||
}
|
||
}
|
||
.table :where(thead, tfoot) {
|
||
font-size: 0.875rem;
|
||
font-weight: 600;
|
||
}
|
||
.table :where(tfoot) {
|
||
border-top: var(--border) solid var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.table :where(tfoot) {
|
||
border-top: var(--border) solid
|
||
color-mix(in oklch, var(--color-base-content) 5%, #0000);
|
||
}
|
||
}
|
||
.table :where(.table-pin-rows thead tr) {
|
||
z-index: 1;
|
||
background-color: var(--color-base-100);
|
||
position: sticky;
|
||
top: 0;
|
||
}
|
||
.table :where(.table-pin-rows tfoot tr) {
|
||
z-index: 1;
|
||
background-color: var(--color-base-100);
|
||
position: sticky;
|
||
bottom: 0;
|
||
}
|
||
.table :where(.table-pin-cols tr th) {
|
||
background-color: var(--color-base-100);
|
||
position: sticky;
|
||
left: 0;
|
||
right: 0;
|
||
}
|
||
.table :where(thead tr, tbody tr:not(:last-child)) {
|
||
border-bottom: var(--border) solid var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.table :where(thead tr, tbody tr:not(:last-child)) {
|
||
border-bottom: var(--border) solid
|
||
color-mix(in oklch, var(--color-base-content) 5%, #0000);
|
||
}
|
||
}
|
||
.tabs-border .tab {
|
||
--tab-border-color: #0000 #0000 var(--tab-border-color) #0000;
|
||
border-radius: var(--radius-field);
|
||
position: relative;
|
||
}
|
||
.tabs-border .tab:before {
|
||
--tw-content: "";
|
||
content: var(--tw-content);
|
||
background-color: var(--tab-border-color);
|
||
border-radius: var(--radius-field);
|
||
width: 80%;
|
||
height: 3px;
|
||
transition: background-color 0.2s;
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 10%;
|
||
}
|
||
:is(
|
||
.tabs-border
|
||
.tab:is(.tab-active, [aria-selected="true"]):not(
|
||
.tab-disabled,
|
||
[disabled]
|
||
),
|
||
.tabs-border .tab:is(input:checked),
|
||
.tabs-border .tab:is(label:has(:checked))
|
||
):before {
|
||
--tab-border-color: currentColor;
|
||
border-top: 3px solid;
|
||
}
|
||
.select {
|
||
border: var(--border) solid #0000;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
background-color: var(--color-base-100);
|
||
vertical-align: middle;
|
||
width: clamp(3rem, 20rem, 100%);
|
||
height: var(--size);
|
||
touch-action: manipulation;
|
||
text-overflow: ellipsis;
|
||
box-shadow: 0 1px var(--input-color) inset,
|
||
0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
background-image: linear-gradient(45deg, #0000 50%, currentColor 50%),
|
||
linear-gradient(135deg, currentColor 50%, #0000 50%);
|
||
background-position: calc(100% - 20px) calc(1px + 50%),
|
||
calc(100% - 16.1px) calc(1px + 50%);
|
||
background-repeat: no-repeat;
|
||
background-size: 4px 4px, 4px 4px;
|
||
border-start-start-radius: var(--join-ss, var(--radius-field));
|
||
border-start-end-radius: var(--join-se, var(--radius-field));
|
||
border-end-end-radius: var(--join-ee, var(--radius-field));
|
||
border-end-start-radius: var(--join-es, var(--radius-field));
|
||
flex-shrink: 1;
|
||
align-items: center;
|
||
gap: 0.375rem;
|
||
padding-inline: 1rem 1.75rem;
|
||
font-size: 0.875rem;
|
||
display: inline-flex;
|
||
position: relative;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.select {
|
||
box-shadow: 0 1px
|
||
color-mix(
|
||
in oklab,
|
||
var(--input-color) calc(var(--depth) * 10%),
|
||
#0000
|
||
)
|
||
inset,
|
||
0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
}
|
||
}
|
||
.select {
|
||
border-color: var(--input-color);
|
||
--input-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.select {
|
||
--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
.select {
|
||
--size: calc(var(--size-field, 0.25rem) * 10);
|
||
}
|
||
[dir="rtl"] .select {
|
||
background-position: 12px calc(1px + 50%), 16px calc(1px + 50%);
|
||
}
|
||
.select select {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
background: inherit;
|
||
border-radius: inherit;
|
||
border-style: none;
|
||
width: calc(100% + 2.75rem);
|
||
height: calc(100% - 2px);
|
||
margin-inline: -1rem -1.75rem;
|
||
padding-inline: 1rem 1.75rem;
|
||
}
|
||
.select select:focus,
|
||
.select select:focus-within {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.select select:focus,
|
||
.select select:focus-within {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.select select:not(:last-child) {
|
||
background-image: none;
|
||
margin-inline-end: -1.375rem;
|
||
}
|
||
.select:focus,
|
||
.select:focus-within {
|
||
--input-color: var(--color-base-content);
|
||
box-shadow: 0 1px var(--input-color);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.select:focus,
|
||
.select:focus-within {
|
||
box-shadow: 0 1px
|
||
color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000);
|
||
}
|
||
}
|
||
.select:focus,
|
||
.select:focus-within {
|
||
outline: 2px solid var(--input-color);
|
||
outline-offset: 2px;
|
||
isolation: isolate;
|
||
z-index: 1;
|
||
}
|
||
.select:has(> select[disabled]),
|
||
.select:is(:disabled, [disabled]) {
|
||
cursor: not-allowed;
|
||
border-color: var(--color-base-200);
|
||
background-color: var(--color-base-200);
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.select:has(> select[disabled]),
|
||
.select:is(:disabled, [disabled]) {
|
||
color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
|
||
}
|
||
}
|
||
:is(
|
||
.select:has(> select[disabled]),
|
||
.select:is(:disabled, [disabled])
|
||
)::placeholder {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:is(
|
||
.select:has(> select[disabled]),
|
||
.select:is(:disabled, [disabled])
|
||
)::placeholder {
|
||
color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
|
||
}
|
||
}
|
||
.select:has(> select[disabled]) > select[disabled] {
|
||
cursor: not-allowed;
|
||
}
|
||
.card {
|
||
border-radius: var(--radius-box);
|
||
outline-offset: 2px;
|
||
outline: 0 solid #0000;
|
||
flex-direction: column;
|
||
transition: outline 0.2s ease-in-out;
|
||
display: flex;
|
||
position: relative;
|
||
}
|
||
.card:focus {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.card:focus {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.card:focus-visible {
|
||
outline-color: currentColor;
|
||
}
|
||
.card :where(figure:first-child) {
|
||
border-start-start-radius: inherit;
|
||
border-start-end-radius: inherit;
|
||
border-end-end-radius: unset;
|
||
border-end-start-radius: unset;
|
||
overflow: hidden;
|
||
}
|
||
.card :where(figure:last-child) {
|
||
border-start-start-radius: unset;
|
||
border-start-end-radius: unset;
|
||
border-end-end-radius: inherit;
|
||
border-end-start-radius: inherit;
|
||
overflow: hidden;
|
||
}
|
||
.card:where(.card-border) {
|
||
border: var(--border) solid var(--color-base-200);
|
||
}
|
||
.card:where(.card-dash) {
|
||
border: var(--border) dashed var(--color-base-200);
|
||
}
|
||
.card.image-full {
|
||
display: grid;
|
||
}
|
||
.card.image-full > * {
|
||
grid-row-start: 1;
|
||
grid-column-start: 1;
|
||
}
|
||
.card.image-full > .card-body {
|
||
color: var(--color-neutral-content);
|
||
position: relative;
|
||
}
|
||
.card.image-full :where(figure) {
|
||
border-radius: inherit;
|
||
overflow: hidden;
|
||
}
|
||
.card.image-full > figure img {
|
||
object-fit: cover;
|
||
filter: brightness(28%);
|
||
height: 100%;
|
||
}
|
||
.card figure {
|
||
justify-content: center;
|
||
align-items: center;
|
||
display: flex;
|
||
}
|
||
.card:has(> input:is(input[type="checkbox"], input[type="radio"])) {
|
||
cursor: pointer;
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
}
|
||
.card:has(> :checked) {
|
||
outline: 2px solid;
|
||
}
|
||
.sr-only {
|
||
clip: rect(0, 0, 0, 0);
|
||
white-space: nowrap;
|
||
border-width: 0;
|
||
width: 1px;
|
||
height: 1px;
|
||
margin: -1px;
|
||
padding: 0;
|
||
position: absolute;
|
||
overflow: hidden;
|
||
}
|
||
.avatar {
|
||
vertical-align: middle;
|
||
display: inline-flex;
|
||
position: relative;
|
||
}
|
||
.avatar > div {
|
||
aspect-ratio: 1;
|
||
display: block;
|
||
overflow: hidden;
|
||
}
|
||
.avatar img {
|
||
object-fit: cover;
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.checkbox {
|
||
border: var(--border) solid var(--input-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.checkbox {
|
||
border: var(--border) solid
|
||
var(
|
||
--input-color,
|
||
color-mix(in oklab, var(--color-base-content) 20%, #0000)
|
||
);
|
||
}
|
||
}
|
||
.checkbox {
|
||
cursor: pointer;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
border-radius: var(--radius-selector);
|
||
vertical-align: middle;
|
||
color: var(--color-base-content);
|
||
box-shadow: 0 1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 0 #0000 inset, 0 0 #0000;
|
||
--size: calc(var(--size-selector, 0.25rem) * 6);
|
||
width: var(--size);
|
||
height: var(--size);
|
||
background-size: auto, calc(var(--noise) * 100%);
|
||
background-image: none, var(--fx-noise);
|
||
flex-shrink: 0;
|
||
padding: 0.25rem;
|
||
transition: background-color 0.2s, box-shadow 0.2s;
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
.checkbox:before {
|
||
--tw-content: "";
|
||
content: var(--tw-content);
|
||
opacity: 0;
|
||
clip-path: polygon(20% 100%, 20% 80%, 50% 80%, 50% 80%, 70% 80%, 70% 100%);
|
||
width: 100%;
|
||
height: 100%;
|
||
box-shadow: 0 3px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
background-color: currentColor;
|
||
font-size: 1rem;
|
||
line-height: 0.75;
|
||
transition: clip-path 0.3s 0.1s, opacity 0.1s 0.1s, rotate 0.3s 0.1s,
|
||
translate 0.3s 0.1s;
|
||
display: block;
|
||
rotate: 45deg;
|
||
}
|
||
.checkbox:focus-visible {
|
||
outline: 2px solid var(--input-color, currentColor);
|
||
outline-offset: 2px;
|
||
}
|
||
.checkbox:checked,
|
||
.checkbox[aria-checked="true"] {
|
||
background-color: var(--input-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.checkbox:checked,
|
||
.checkbox[aria-checked="true"] {
|
||
background-color: var(
|
||
--input-color,
|
||
color-mix(in oklab, var(--color-base-content) 20%, #0000)
|
||
);
|
||
}
|
||
}
|
||
.checkbox:checked,
|
||
.checkbox[aria-checked="true"] {
|
||
box-shadow: 0 0 #0000 inset,
|
||
0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 1px oklch(0% 0 0 / calc(var(--depth) * 0.1));
|
||
}
|
||
:is(.checkbox:checked, .checkbox[aria-checked="true"]):before {
|
||
clip-path: polygon(20% 100%, 20% 80%, 50% 80%, 50% 0%, 70% 0%, 70% 100%);
|
||
opacity: 1;
|
||
}
|
||
@media (forced-colors: active) {
|
||
:is(.checkbox:checked, .checkbox[aria-checked="true"]):before {
|
||
--tw-content: "✔︎";
|
||
clip-path: none;
|
||
background-color: #0000;
|
||
rotate: none;
|
||
}
|
||
}
|
||
@media print {
|
||
:is(.checkbox:checked, .checkbox[aria-checked="true"]):before {
|
||
--tw-content: "✔︎";
|
||
clip-path: none;
|
||
background-color: #0000;
|
||
rotate: none;
|
||
}
|
||
}
|
||
.checkbox:indeterminate {
|
||
background-color: var(--input-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.checkbox:indeterminate {
|
||
background-color: var(
|
||
--input-color,
|
||
color-mix(in oklab, var(--color-base-content) 20%, #0000)
|
||
);
|
||
}
|
||
}
|
||
.checkbox:indeterminate:before {
|
||
opacity: 1;
|
||
clip-path: polygon(20% 100%, 20% 80%, 50% 80%, 50% 80%, 80% 80%, 80% 100%);
|
||
translate: 0 -35%;
|
||
rotate: none;
|
||
}
|
||
.checkbox:disabled {
|
||
cursor: not-allowed;
|
||
opacity: 0.2;
|
||
}
|
||
.radio {
|
||
cursor: pointer;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
vertical-align: middle;
|
||
border: var(--border) solid var(--input-color, currentColor);
|
||
border-radius: 3.40282e38px;
|
||
flex-shrink: 0;
|
||
padding: 0.25rem;
|
||
display: inline-block;
|
||
position: relative;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.radio {
|
||
border: var(--border) solid
|
||
var(--input-color, color-mix(in srgb, currentColor 20%, #0000));
|
||
}
|
||
}
|
||
.radio {
|
||
box-shadow: 0 1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
--size: calc(var(--size-selector, 0.25rem) * 6);
|
||
width: var(--size);
|
||
height: var(--size);
|
||
color: var(--input-color, currentColor);
|
||
}
|
||
.radio:before {
|
||
--tw-content: "";
|
||
content: var(--tw-content);
|
||
background-size: auto, calc(var(--noise) * 100%);
|
||
background-image: none, var(--fx-noise);
|
||
border-radius: 3.40282e38px;
|
||
width: 100%;
|
||
height: 100%;
|
||
display: block;
|
||
}
|
||
.radio:focus-visible {
|
||
outline: 2px solid;
|
||
}
|
||
.radio:checked,
|
||
.radio[aria-checked="true"] {
|
||
background-color: var(--color-base-100);
|
||
border-color: currentColor;
|
||
animation: 0.2s ease-out radio;
|
||
}
|
||
:is(.radio:checked, .radio[aria-checked="true"]):before {
|
||
box-shadow: 0 -1px oklch(0% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 1px oklch(0% 0 0 / calc(var(--depth) * 0.1));
|
||
background-color: currentColor;
|
||
}
|
||
@media (forced-colors: active) {
|
||
:is(.radio:checked, .radio[aria-checked="true"]):before {
|
||
outline-style: var(--tw-outline-style);
|
||
outline-offset: -1px;
|
||
outline-width: 1px;
|
||
}
|
||
}
|
||
@media print {
|
||
:is(.radio:checked, .radio[aria-checked="true"]):before {
|
||
outline-offset: -1rem;
|
||
outline: 0.25rem solid;
|
||
}
|
||
}
|
||
.radio:disabled {
|
||
cursor: not-allowed;
|
||
opacity: 0.2;
|
||
}
|
||
.rating {
|
||
vertical-align: middle;
|
||
display: inline-flex;
|
||
position: relative;
|
||
}
|
||
.rating input {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
border: none;
|
||
}
|
||
.rating :where(*) {
|
||
background-color: var(--color-base-content);
|
||
opacity: 0.2;
|
||
border-radius: 0;
|
||
width: 1.5rem;
|
||
height: 1.5rem;
|
||
animation: 0.25s ease-out rating;
|
||
}
|
||
.rating :where(*):is(input) {
|
||
cursor: pointer;
|
||
}
|
||
.rating .rating-hidden {
|
||
background-color: #0000;
|
||
width: 0.5rem;
|
||
}
|
||
.rating input[type="radio"]:checked {
|
||
background-image: none;
|
||
}
|
||
.rating :checked,
|
||
.rating [aria-checked="true"],
|
||
.rating [aria-current="true"],
|
||
.rating :has(~ :checked, ~ [aria-checked="true"], ~ [aria-current="true"]) {
|
||
opacity: 1;
|
||
}
|
||
.rating :focus-visible {
|
||
transition: scale 0.2s ease-out;
|
||
scale: 1.1;
|
||
}
|
||
.rating :active:focus {
|
||
animation: none;
|
||
scale: 1.1;
|
||
}
|
||
.rating.rating-xs :where(:not(.rating-hidden)) {
|
||
width: 1rem;
|
||
height: 1rem;
|
||
}
|
||
.rating.rating-sm :where(:not(.rating-hidden)) {
|
||
width: 1.25rem;
|
||
height: 1.25rem;
|
||
}
|
||
.rating.rating-md :where(:not(.rating-hidden)) {
|
||
width: 1.5rem;
|
||
height: 1.5rem;
|
||
}
|
||
.rating.rating-lg :where(:not(.rating-hidden)) {
|
||
width: 1.75rem;
|
||
height: 1.75rem;
|
||
}
|
||
.rating.rating-xl :where(:not(.rating-hidden)) {
|
||
width: 2rem;
|
||
height: 2rem;
|
||
}
|
||
.stats {
|
||
border-radius: var(--radius-box);
|
||
grid-auto-flow: column;
|
||
display: inline-grid;
|
||
position: relative;
|
||
overflow-x: auto;
|
||
}
|
||
.absolute {
|
||
position: absolute;
|
||
}
|
||
.fixed {
|
||
position: fixed;
|
||
}
|
||
.relative {
|
||
position: relative;
|
||
}
|
||
.static {
|
||
position: static;
|
||
}
|
||
.sticky {
|
||
position: sticky;
|
||
}
|
||
.tooltip-bottom > .tooltip-content,
|
||
.tooltip-bottom[data-tip]:before {
|
||
transform: translate(-50%) translateY(var(--tt-pos, -0.25rem));
|
||
inset: var(--tt-off) auto auto 50%;
|
||
}
|
||
.tooltip-bottom:after {
|
||
transform: translate(-50%) translateY(var(--tt-pos, -0.25rem))
|
||
rotate(180deg);
|
||
inset: var(--tt-tail) auto auto 50%;
|
||
}
|
||
.tooltip-right > .tooltip-content,
|
||
.tooltip-right[data-tip]:before {
|
||
transform: translate(calc(var(--tt-pos, -0.25rem) + 0.25rem))
|
||
translateY(-50%);
|
||
inset: 50% auto auto var(--tt-off);
|
||
}
|
||
.tooltip-right:after {
|
||
transform: translate(var(--tt-pos, -0.25rem)) translateY(-50%) rotate(90deg);
|
||
inset: 50% auto auto calc(var(--tt-tail) + 1px);
|
||
}
|
||
.inset-0 {
|
||
inset: calc(var(--spacing) * 0);
|
||
}
|
||
.dropdown-center {
|
||
--anchor-h: center;
|
||
}
|
||
.dropdown-center :where(.dropdown-content) {
|
||
inset-inline-end: 50%;
|
||
translate: 50%;
|
||
}
|
||
[dir="rtl"] :is(.dropdown-center :where(.dropdown-content)) {
|
||
translate: -50%;
|
||
}
|
||
.dropdown-center.dropdown-left {
|
||
--anchor-h: left;
|
||
--anchor-v: center;
|
||
}
|
||
.dropdown-center.dropdown-left .dropdown-content {
|
||
top: auto;
|
||
bottom: 50%;
|
||
translate: 0 50%;
|
||
}
|
||
.dropdown-center.dropdown-right {
|
||
--anchor-h: right;
|
||
--anchor-v: center;
|
||
}
|
||
.dropdown-center.dropdown-right .dropdown-content {
|
||
top: auto;
|
||
bottom: 50%;
|
||
translate: 0 50%;
|
||
}
|
||
.dropdown-end {
|
||
--anchor-h: span-left;
|
||
}
|
||
.dropdown-end :where(.dropdown-content) {
|
||
inset-inline-end: 0;
|
||
translate: 0;
|
||
}
|
||
[dir="rtl"] :is(.dropdown-end :where(.dropdown-content)) {
|
||
translate: 0;
|
||
}
|
||
.dropdown-end.dropdown-left {
|
||
--anchor-h: left;
|
||
--anchor-v: span-top;
|
||
}
|
||
.dropdown-end.dropdown-left .dropdown-content {
|
||
top: auto;
|
||
bottom: 0;
|
||
}
|
||
.dropdown-end.dropdown-right {
|
||
--anchor-h: right;
|
||
--anchor-v: span-top;
|
||
}
|
||
.dropdown-end.dropdown-right .dropdown-content {
|
||
top: auto;
|
||
bottom: 0;
|
||
}
|
||
.dropdown-top {
|
||
--anchor-v: top;
|
||
}
|
||
.dropdown-top .dropdown-content {
|
||
transform-origin: bottom;
|
||
top: auto;
|
||
bottom: 100%;
|
||
}
|
||
.center-absolute {
|
||
--tw-translate-x: -50%;
|
||
--tw-translate-y: -50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
top: 50%;
|
||
left: 50%;
|
||
}
|
||
.\!top-15 {
|
||
top: calc(var(--spacing) * 15) !important;
|
||
}
|
||
.-top-4 {
|
||
top: calc(var(--spacing) * -4);
|
||
}
|
||
.-top-15 {
|
||
top: calc(var(--spacing) * -15);
|
||
}
|
||
.top-0 {
|
||
top: calc(var(--spacing) * 0);
|
||
}
|
||
.top-1\/2 {
|
||
top: 50%;
|
||
}
|
||
.top-2 {
|
||
top: calc(var(--spacing) * 2);
|
||
}
|
||
.top-4 {
|
||
top: calc(var(--spacing) * 4);
|
||
}
|
||
.top-8 {
|
||
top: calc(var(--spacing) * 8);
|
||
}
|
||
.top-10 {
|
||
top: calc(var(--spacing) * 10);
|
||
}
|
||
.top-\[50\%\] {
|
||
top: 50%;
|
||
}
|
||
.-right-1 {
|
||
right: calc(var(--spacing) * -1);
|
||
}
|
||
.-right-2 {
|
||
right: calc(var(--spacing) * -2);
|
||
}
|
||
.-right-4 {
|
||
right: calc(var(--spacing) * -4);
|
||
}
|
||
.right-0 {
|
||
right: calc(var(--spacing) * 0);
|
||
}
|
||
.right-1 {
|
||
right: calc(var(--spacing) * 1);
|
||
}
|
||
.right-2 {
|
||
right: calc(var(--spacing) * 2);
|
||
}
|
||
.right-3 {
|
||
right: calc(var(--spacing) * 3);
|
||
}
|
||
.right-4 {
|
||
right: calc(var(--spacing) * 4);
|
||
}
|
||
.right-5 {
|
||
right: calc(var(--spacing) * 5);
|
||
}
|
||
.-bottom-1 {
|
||
bottom: calc(var(--spacing) * -1);
|
||
}
|
||
.-bottom-4\.5 {
|
||
bottom: calc(var(--spacing) * -4.5);
|
||
}
|
||
.bottom-0 {
|
||
bottom: calc(var(--spacing) * 0);
|
||
}
|
||
.bottom-1 {
|
||
bottom: calc(var(--spacing) * 1);
|
||
}
|
||
.bottom-3 {
|
||
bottom: calc(var(--spacing) * 3);
|
||
}
|
||
.bottom-5 {
|
||
bottom: calc(var(--spacing) * 5);
|
||
}
|
||
.-left-1 {
|
||
left: calc(var(--spacing) * -1);
|
||
}
|
||
.-left-2 {
|
||
left: calc(var(--spacing) * -2);
|
||
}
|
||
.left-0 {
|
||
left: calc(var(--spacing) * 0);
|
||
}
|
||
.left-1\/2 {
|
||
left: 50%;
|
||
}
|
||
.left-2 {
|
||
left: calc(var(--spacing) * 2);
|
||
}
|
||
.left-3 {
|
||
left: calc(var(--spacing) * 3);
|
||
}
|
||
.left-\[50\%\] {
|
||
left: 50%;
|
||
}
|
||
.left-full {
|
||
left: 100%;
|
||
}
|
||
.textarea {
|
||
border: var(--border) solid #0000;
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
border-radius: var(--radius-field);
|
||
background-color: var(--color-base-100);
|
||
vertical-align: middle;
|
||
touch-action: manipulation;
|
||
border-color: var(--input-color);
|
||
width: clamp(3rem, 20rem, 100%);
|
||
min-height: 5rem;
|
||
box-shadow: 0 1px var(--input-color) inset,
|
||
0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
flex-shrink: 1;
|
||
padding-block: 0.5rem;
|
||
padding-inline: 0.75rem;
|
||
font-size: 0.875rem;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.textarea {
|
||
box-shadow: 0 1px
|
||
color-mix(
|
||
in oklab,
|
||
var(--input-color) calc(var(--depth) * 10%),
|
||
#0000
|
||
)
|
||
inset,
|
||
0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
||
}
|
||
}
|
||
.textarea {
|
||
--input-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.textarea {
|
||
--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
.textarea textarea {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
background-color: #0000;
|
||
border: none;
|
||
}
|
||
.textarea textarea:focus,
|
||
.textarea textarea:focus-within {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.textarea textarea:focus,
|
||
.textarea textarea:focus-within {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.textarea:focus,
|
||
.textarea:focus-within {
|
||
--input-color: var(--color-base-content);
|
||
box-shadow: 0 1px var(--input-color);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.textarea:focus,
|
||
.textarea:focus-within {
|
||
box-shadow: 0 1px
|
||
color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000);
|
||
}
|
||
}
|
||
.textarea:focus,
|
||
.textarea:focus-within {
|
||
outline: 2px solid var(--input-color);
|
||
outline-offset: 2px;
|
||
isolation: isolate;
|
||
}
|
||
.textarea:has(> textarea[disabled]),
|
||
.textarea:is(:disabled, [disabled]) {
|
||
cursor: not-allowed;
|
||
border-color: var(--color-base-200);
|
||
background-color: var(--color-base-200);
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.textarea:has(> textarea[disabled]),
|
||
.textarea:is(:disabled, [disabled]) {
|
||
color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
|
||
}
|
||
}
|
||
:is(
|
||
.textarea:has(> textarea[disabled]),
|
||
.textarea:is(:disabled, [disabled])
|
||
)::placeholder {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:is(
|
||
.textarea:has(> textarea[disabled]),
|
||
.textarea:is(:disabled, [disabled])
|
||
)::placeholder {
|
||
color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
|
||
}
|
||
}
|
||
.textarea:has(> textarea[disabled]),
|
||
.textarea:is(:disabled, [disabled]) {
|
||
box-shadow: none;
|
||
}
|
||
.textarea:has(> textarea[disabled]) > textarea[disabled] {
|
||
cursor: not-allowed;
|
||
}
|
||
.isolate {
|
||
isolation: isolate;
|
||
}
|
||
.modal-backdrop {
|
||
color: #0000;
|
||
z-index: -1;
|
||
grid-row-start: 1;
|
||
grid-column-start: 1;
|
||
place-self: stretch stretch;
|
||
display: grid;
|
||
}
|
||
.modal-backdrop button {
|
||
cursor: pointer;
|
||
}
|
||
.z-1 {
|
||
z-index: 1;
|
||
}
|
||
.z-10 {
|
||
z-index: 10;
|
||
}
|
||
.z-20 {
|
||
z-index: 20;
|
||
}
|
||
.z-30 {
|
||
z-index: 30;
|
||
}
|
||
.z-50 {
|
||
z-index: 50;
|
||
}
|
||
.z-100 {
|
||
z-index: 100;
|
||
}
|
||
.tab-content {
|
||
order: var(--tabcontent-order);
|
||
--tabcontent-radius-ss: 0;
|
||
--tabcontent-radius-se: 0;
|
||
--tabcontent-radius-es: 0;
|
||
--tabcontent-radius-ee: 0;
|
||
--tabcontent-order: 1;
|
||
width: 100%;
|
||
margin: var(--tabcontent-margin);
|
||
border-color: #0000;
|
||
border-width: var(--border);
|
||
border-start-start-radius: var(--tabcontent-radius-ss);
|
||
border-start-end-radius: var(--tabcontent-radius-se);
|
||
border-end-end-radius: var(--tabcontent-radius-ee);
|
||
border-end-start-radius: var(--tabcontent-radius-es);
|
||
display: none;
|
||
}
|
||
.modal-box {
|
||
background-color: var(--color-base-100);
|
||
border-top-left-radius: var(--modal-tl, var(--radius-box));
|
||
border-top-right-radius: var(--modal-tr, var(--radius-box));
|
||
border-bottom-left-radius: var(--modal-bl, var(--radius-box));
|
||
border-bottom-right-radius: var(--modal-br, var(--radius-box));
|
||
opacity: 0;
|
||
overscroll-behavior: contain;
|
||
grid-row-start: 1;
|
||
grid-column-start: 1;
|
||
width: 91.6667%;
|
||
max-width: 32rem;
|
||
max-height: 100vh;
|
||
padding: 1.5rem;
|
||
transition: translate 0.3s ease-out, scale 0.3s ease-out,
|
||
opacity 0.2s ease-out 50ms, box-shadow 0.3s ease-out;
|
||
overflow-y: auto;
|
||
scale: 95%;
|
||
box-shadow: 0 25px 50px -12px #00000040;
|
||
}
|
||
.container {
|
||
width: 100%;
|
||
}
|
||
@media (min-width: 40rem) {
|
||
.container {
|
||
max-width: 40rem;
|
||
}
|
||
}
|
||
@media (min-width: 48rem) {
|
||
.container {
|
||
max-width: 48rem;
|
||
}
|
||
}
|
||
@media (min-width: 64rem) {
|
||
.container {
|
||
max-width: 64rem;
|
||
}
|
||
}
|
||
@media (min-width: 80rem) {
|
||
.container {
|
||
max-width: 80rem;
|
||
}
|
||
}
|
||
@media (min-width: 96rem) {
|
||
.container {
|
||
max-width: 96rem;
|
||
}
|
||
}
|
||
.divider {
|
||
white-space: nowrap;
|
||
height: 1rem;
|
||
margin: var(--divider-m, 1rem 0);
|
||
--divider-color: var(--color-base-content);
|
||
flex-direction: row;
|
||
align-self: stretch;
|
||
align-items: center;
|
||
display: flex;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.divider {
|
||
--divider-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.divider:before,
|
||
.divider:after {
|
||
content: "";
|
||
background-color: var(--divider-color);
|
||
flex-grow: 1;
|
||
width: 100%;
|
||
height: 0.125rem;
|
||
}
|
||
@media print {
|
||
.divider:before,
|
||
.divider:after {
|
||
border: 0.5px solid;
|
||
}
|
||
}
|
||
.divider:not(:empty) {
|
||
gap: 1rem;
|
||
}
|
||
.number-input[type="number"]::-webkit-inner-spin-button {
|
||
-webkit-appearance: none;
|
||
margin: 0;
|
||
}
|
||
.number-input[type="number"]::-webkit-outer-spin-button {
|
||
-webkit-appearance: none;
|
||
margin: 0;
|
||
}
|
||
.number-input[type="number"] {
|
||
-moz-appearance: textfield;
|
||
}
|
||
.m-1 {
|
||
margin: calc(var(--spacing) * 1);
|
||
}
|
||
.-mx-1 {
|
||
margin-inline: calc(var(--spacing) * -1);
|
||
}
|
||
.mx-0\.5 {
|
||
margin-inline: calc(var(--spacing) * 0.5);
|
||
}
|
||
.mx-auto {
|
||
margin-inline: auto;
|
||
}
|
||
.input-sm {
|
||
--size: calc(var(--size-field, 0.25rem) * 8);
|
||
font-size: 0.75rem;
|
||
}
|
||
.input-sm[type="number"]::-webkit-inner-spin-button {
|
||
margin-block: -0.5rem;
|
||
margin-inline-end: -0.75rem;
|
||
}
|
||
.input-xs {
|
||
--size: calc(var(--size-field, 0.25rem) * 6);
|
||
font-size: 0.6875rem;
|
||
}
|
||
.input-xs[type="number"]::-webkit-inner-spin-button {
|
||
margin-block: -0.25rem;
|
||
margin-inline-end: -0.75rem;
|
||
}
|
||
.my-2 {
|
||
margin-block: calc(var(--spacing) * 2);
|
||
}
|
||
.my-3 {
|
||
margin-block: calc(var(--spacing) * 3);
|
||
}
|
||
.my-4 {
|
||
margin-block: calc(var(--spacing) * 4);
|
||
}
|
||
.my-6 {
|
||
margin-block: calc(var(--spacing) * 6);
|
||
}
|
||
.label {
|
||
white-space: nowrap;
|
||
color: currentColor;
|
||
align-items: center;
|
||
gap: 0.375rem;
|
||
display: inline-flex;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.label {
|
||
color: color-mix(in oklab, currentColor 60%, transparent);
|
||
}
|
||
}
|
||
.label:has(input) {
|
||
cursor: pointer;
|
||
}
|
||
.label:is(.input > *, .select > *) {
|
||
white-space: nowrap;
|
||
height: calc(100% - 0.5rem);
|
||
font-size: inherit;
|
||
align-items: center;
|
||
padding-inline: 0.75rem;
|
||
display: flex;
|
||
}
|
||
.label:is(.input > *, .select > *):first-child {
|
||
border-inline-end: var(--border) solid currentColor;
|
||
margin-inline: -0.75rem 0.75rem;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.label:is(.input > *, .select > *):first-child {
|
||
border-inline-end: var(--border) solid
|
||
color-mix(in oklab, currentColor 10%, #0000);
|
||
}
|
||
}
|
||
.label:is(.input > *, .select > *):last-child {
|
||
border-inline-start: var(--border) solid currentColor;
|
||
margin-inline: 0.75rem -0.75rem;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.label:is(.input > *, .select > *):last-child {
|
||
border-inline-start: var(--border) solid
|
||
color-mix(in oklab, currentColor 10%, #0000);
|
||
}
|
||
}
|
||
.join-horizontal {
|
||
flex-direction: row;
|
||
}
|
||
.join-horizontal > .join-item:first-child,
|
||
.join-horizontal :first-child:not(:last-child) .join-item {
|
||
--join-ss: var(--radius-field);
|
||
--join-se: 0;
|
||
--join-es: var(--radius-field);
|
||
--join-ee: 0;
|
||
}
|
||
.join-horizontal > .join-item:last-child,
|
||
.join-horizontal :last-child:not(:first-child) .join-item {
|
||
--join-ss: 0;
|
||
--join-se: var(--radius-field);
|
||
--join-es: 0;
|
||
--join-ee: var(--radius-field);
|
||
}
|
||
.join-horizontal > .join-item:only-child,
|
||
.join-horizontal :only-child .join-item {
|
||
--join-ss: var(--radius-field);
|
||
--join-se: var(--radius-field);
|
||
--join-es: var(--radius-field);
|
||
--join-ee: var(--radius-field);
|
||
}
|
||
.join-horizontal .join-item:where(:not(:first-child)),
|
||
.join-item:where(:not(:first-child, :disabled, [disabled], .btn-disabled)) {
|
||
margin-block-start: 0;
|
||
margin-inline-start: calc(var(--border, 1px) * -1);
|
||
}
|
||
.join-item:where(:is(:disabled, [disabled], .btn-disabled)) {
|
||
border-width: var(--border, 1px) 0 var(--border, 1px) var(--border, 1px);
|
||
}
|
||
.prose {
|
||
color: var(--tw-prose-body);
|
||
max-width: 65ch;
|
||
}
|
||
.prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose
|
||
:where([class~="lead"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: var(--tw-prose-lead);
|
||
margin-top: 1.2em;
|
||
margin-bottom: 1.2em;
|
||
font-size: 1.25em;
|
||
line-height: 1.6;
|
||
}
|
||
.prose :where(a):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-links);
|
||
font-weight: 500;
|
||
text-decoration: underline;
|
||
}
|
||
.prose
|
||
:where(strong):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-bold);
|
||
font-weight: 600;
|
||
}
|
||
.prose
|
||
:where(a strong):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(blockquote strong):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
),
|
||
.prose
|
||
:where(thead th strong):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(ol):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
padding-inline-start: 1.625em;
|
||
list-style-type: decimal;
|
||
}
|
||
.prose
|
||
:where(ol[type="A"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: upper-alpha;
|
||
}
|
||
.prose
|
||
:where(ol[type="a"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: lower-alpha;
|
||
}
|
||
.prose
|
||
:where(ol[type="A s"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: upper-alpha;
|
||
}
|
||
.prose
|
||
:where(ol[type="a s"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: lower-alpha;
|
||
}
|
||
.prose
|
||
:where(ol[type="I"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: upper-roman;
|
||
}
|
||
.prose
|
||
:where(ol[type="i"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: lower-roman;
|
||
}
|
||
.prose
|
||
:where(ol[type="I s"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: upper-roman;
|
||
}
|
||
.prose
|
||
:where(ol[type="i s"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: lower-roman;
|
||
}
|
||
.prose
|
||
:where(ol[type="1"]):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
list-style-type: decimal;
|
||
}
|
||
.prose :where(ul):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
padding-inline-start: 1.625em;
|
||
list-style-type: disc;
|
||
}
|
||
.prose
|
||
:where(ol > li):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
)::marker {
|
||
color: var(--tw-prose-counters);
|
||
font-weight: 400;
|
||
}
|
||
.prose
|
||
:where(ul > li):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
)::marker {
|
||
color: var(--tw-prose-bullets);
|
||
}
|
||
.prose :where(dt):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-headings);
|
||
margin-top: 1.25em;
|
||
font-weight: 600;
|
||
}
|
||
.prose :where(hr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
border-color: var(--tw-prose-hr);
|
||
border-top-width: 1px;
|
||
margin-top: 3em;
|
||
margin-bottom: 3em;
|
||
}
|
||
.prose
|
||
:where(blockquote):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: var(--tw-prose-quotes);
|
||
border-inline-start-width: 0.25rem;
|
||
border-inline-start-color: var(--tw-prose-quote-borders);
|
||
quotes: "“" "”" "‘" "’";
|
||
margin-top: 1.6em;
|
||
margin-bottom: 1.6em;
|
||
padding-inline-start: 1em;
|
||
font-style: italic;
|
||
font-weight: 500;
|
||
}
|
||
.prose
|
||
:where(blockquote p:first-of-type):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
):before {
|
||
content: open-quote;
|
||
}
|
||
.prose
|
||
:where(blockquote p:last-of-type):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
):after {
|
||
content: close-quote;
|
||
}
|
||
.prose :where(h1):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-headings);
|
||
margin-top: 0;
|
||
margin-bottom: 0.888889em;
|
||
font-size: 2.25em;
|
||
font-weight: 800;
|
||
line-height: 1.11111;
|
||
}
|
||
.prose
|
||
:where(h1 strong):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: inherit;
|
||
font-weight: 900;
|
||
}
|
||
.prose :where(h2):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-headings);
|
||
margin-top: 2em;
|
||
margin-bottom: 1em;
|
||
font-size: 1.5em;
|
||
font-weight: 700;
|
||
line-height: 1.33333;
|
||
}
|
||
.prose
|
||
:where(h2 strong):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: inherit;
|
||
font-weight: 800;
|
||
}
|
||
.prose :where(h3):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-headings);
|
||
margin-top: 1.6em;
|
||
margin-bottom: 0.6em;
|
||
font-size: 1.25em;
|
||
font-weight: 600;
|
||
line-height: 1.6;
|
||
}
|
||
.prose
|
||
:where(h3 strong):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: inherit;
|
||
font-weight: 700;
|
||
}
|
||
.prose :where(h4):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-headings);
|
||
margin-top: 1.5em;
|
||
margin-bottom: 0.5em;
|
||
font-weight: 600;
|
||
line-height: 1.5;
|
||
}
|
||
.prose
|
||
:where(h4 strong):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: inherit;
|
||
font-weight: 700;
|
||
}
|
||
.prose :where(img):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose
|
||
:where(picture):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
display: block;
|
||
}
|
||
.prose
|
||
:where(video):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose :where(kbd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-kbd);
|
||
box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),
|
||
0 3px rgb(var(--tw-prose-kbd-shadows) / 10%);
|
||
padding-top: 0.1875em;
|
||
padding-inline-end: 0.375em;
|
||
padding-bottom: 0.1875em;
|
||
border-radius: 0.3125rem;
|
||
padding-inline-start: 0.375em;
|
||
font-family: inherit;
|
||
font-size: 0.875em;
|
||
font-weight: 500;
|
||
}
|
||
.prose
|
||
:where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-code);
|
||
font-size: 0.875em;
|
||
font-weight: 600;
|
||
}
|
||
.prose
|
||
:where(code):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
):before,
|
||
.prose
|
||
:where(code):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
):after {
|
||
content: "`";
|
||
}
|
||
.prose
|
||
:where(a code):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(h1 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose
|
||
:where(h2 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: inherit;
|
||
font-size: 0.875em;
|
||
}
|
||
.prose
|
||
:where(h3 code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: inherit;
|
||
font-size: 0.9em;
|
||
}
|
||
.prose
|
||
:where(h4 code):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(blockquote code):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
),
|
||
.prose
|
||
:where(thead th code):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(pre):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-pre-code);
|
||
background-color: var(--tw-prose-pre-bg);
|
||
padding-top: 0.857143em;
|
||
padding-inline-end: 1.14286em;
|
||
padding-bottom: 0.857143em;
|
||
border-radius: 0.375rem;
|
||
margin-top: 1.71429em;
|
||
margin-bottom: 1.71429em;
|
||
padding-inline-start: 1.14286em;
|
||
font-size: 0.875em;
|
||
font-weight: 400;
|
||
line-height: 1.71429;
|
||
overflow-x: auto;
|
||
}
|
||
.prose
|
||
:where(pre code):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
font-weight: inherit;
|
||
color: inherit;
|
||
font-size: inherit;
|
||
font-family: inherit;
|
||
line-height: inherit;
|
||
background-color: #0000;
|
||
border-width: 0;
|
||
border-radius: 0;
|
||
padding: 0;
|
||
}
|
||
.prose
|
||
:where(pre code):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
):before,
|
||
.prose
|
||
:where(pre code):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
):after {
|
||
content: none;
|
||
}
|
||
.prose
|
||
:where(table):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
table-layout: auto;
|
||
width: 100%;
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
font-size: 0.875em;
|
||
line-height: 1.71429;
|
||
}
|
||
.prose
|
||
:where(thead):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
border-bottom-width: 1px;
|
||
border-bottom-color: var(--tw-prose-th-borders);
|
||
}
|
||
.prose
|
||
:where(thead th):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
color: var(--tw-prose-headings);
|
||
vertical-align: bottom;
|
||
padding-inline-end: 0.571429em;
|
||
padding-bottom: 0.571429em;
|
||
padding-inline-start: 0.571429em;
|
||
font-weight: 600;
|
||
}
|
||
.prose
|
||
:where(tbody tr):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
border-bottom-width: 1px;
|
||
border-bottom-color: var(--tw-prose-td-borders);
|
||
}
|
||
.prose
|
||
:where(tbody tr:last-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
border-bottom-width: 0;
|
||
}
|
||
.prose
|
||
:where(tbody td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
vertical-align: baseline;
|
||
}
|
||
.prose
|
||
:where(tfoot):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
border-top-width: 1px;
|
||
border-top-color: var(--tw-prose-th-borders);
|
||
}
|
||
.prose
|
||
:where(tfoot td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
vertical-align: top;
|
||
}
|
||
.prose
|
||
:where(th, td):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
text-align: start;
|
||
}
|
||
.prose
|
||
:where(figure > *):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
.prose
|
||
:where(figcaption):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
color: var(--tw-prose-captions);
|
||
margin-top: 0.857143em;
|
||
font-size: 0.875em;
|
||
line-height: 1.42857;
|
||
}
|
||
.prose {
|
||
--tw-prose-body: oklch(37.3% 0.034 259.733);
|
||
--tw-prose-headings: oklch(21% 0.034 264.665);
|
||
--tw-prose-lead: oklch(44.6% 0.03 256.802);
|
||
--tw-prose-links: oklch(21% 0.034 264.665);
|
||
--tw-prose-bold: oklch(21% 0.034 264.665);
|
||
--tw-prose-counters: oklch(55.1% 0.027 264.364);
|
||
--tw-prose-bullets: oklch(87.2% 0.01 258.338);
|
||
--tw-prose-hr: oklch(92.8% 0.006 264.531);
|
||
--tw-prose-quotes: oklch(21% 0.034 264.665);
|
||
--tw-prose-quote-borders: oklch(92.8% 0.006 264.531);
|
||
--tw-prose-captions: oklch(55.1% 0.027 264.364);
|
||
--tw-prose-kbd: oklch(21% 0.034 264.665);
|
||
--tw-prose-kbd-shadows: NaN NaN NaN;
|
||
--tw-prose-code: oklch(21% 0.034 264.665);
|
||
--tw-prose-pre-code: oklch(92.8% 0.006 264.531);
|
||
--tw-prose-pre-bg: oklch(27.8% 0.033 256.848);
|
||
--tw-prose-th-borders: oklch(87.2% 0.01 258.338);
|
||
--tw-prose-td-borders: oklch(92.8% 0.006 264.531);
|
||
--tw-prose-invert-body: oklch(87.2% 0.01 258.338);
|
||
--tw-prose-invert-headings: #fff;
|
||
--tw-prose-invert-lead: oklch(70.7% 0.022 261.325);
|
||
--tw-prose-invert-links: #fff;
|
||
--tw-prose-invert-bold: #fff;
|
||
--tw-prose-invert-counters: oklch(70.7% 0.022 261.325);
|
||
--tw-prose-invert-bullets: oklch(44.6% 0.03 256.802);
|
||
--tw-prose-invert-hr: oklch(37.3% 0.034 259.733);
|
||
--tw-prose-invert-quotes: oklch(96.7% 0.003 264.542);
|
||
--tw-prose-invert-quote-borders: oklch(37.3% 0.034 259.733);
|
||
--tw-prose-invert-captions: oklch(70.7% 0.022 261.325);
|
||
--tw-prose-invert-kbd: #fff;
|
||
--tw-prose-invert-kbd-shadows: 255 255 255;
|
||
--tw-prose-invert-code: #fff;
|
||
--tw-prose-invert-pre-code: oklch(87.2% 0.01 258.338);
|
||
--tw-prose-invert-pre-bg: #00000080;
|
||
--tw-prose-invert-th-borders: oklch(44.6% 0.03 256.802);
|
||
--tw-prose-invert-td-borders: oklch(37.3% 0.034 259.733);
|
||
font-size: 1rem;
|
||
line-height: 1.75;
|
||
}
|
||
.prose
|
||
:where(picture > img):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
.prose :where(li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 0.5em;
|
||
margin-bottom: 0.5em;
|
||
}
|
||
.prose
|
||
:where(ol > li):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(ul > li):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
padding-inline-start: 0.375em;
|
||
}
|
||
.prose
|
||
:where(.prose > ul > li p):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 0.75em;
|
||
margin-bottom: 0.75em;
|
||
}
|
||
.prose
|
||
:where(.prose > ul > li > p:first-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 1.25em;
|
||
}
|
||
.prose
|
||
:where(.prose > ul > li > p:last-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose
|
||
:where(.prose > ol > li > p:first-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 1.25em;
|
||
}
|
||
.prose
|
||
:where(.prose > ol > li > p:last-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose
|
||
:where(ul ul, ul ol, ol ul, ol ol):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 0.75em;
|
||
margin-bottom: 0.75em;
|
||
}
|
||
.prose :where(dl):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose :where(dd):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 0.5em;
|
||
padding-inline-start: 1.625em;
|
||
}
|
||
.prose
|
||
:where(hr + *):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(h2 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(h3 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)),
|
||
.prose
|
||
:where(h4 + *):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 0;
|
||
}
|
||
.prose
|
||
:where(thead th:first-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
padding-inline-start: 0;
|
||
}
|
||
.prose
|
||
:where(thead th:last-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
padding-inline-end: 0;
|
||
}
|
||
.prose
|
||
:where(tbody td, tfoot td):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
padding-top: 0.571429em;
|
||
padding-inline-end: 0.571429em;
|
||
padding-bottom: 0.571429em;
|
||
padding-inline-start: 0.571429em;
|
||
}
|
||
.prose
|
||
:where(tbody td:first-child, tfoot td:first-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
padding-inline-start: 0;
|
||
}
|
||
.prose
|
||
:where(tbody td:last-child, tfoot td:last-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
padding-inline-end: 0;
|
||
}
|
||
.prose
|
||
:where(figure):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose
|
||
:where(.prose > :first-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-top: 0;
|
||
}
|
||
.prose
|
||
:where(.prose > :last-child):not(
|
||
:where([class~="not-prose"], [class~="not-prose"] *)
|
||
) {
|
||
margin-bottom: 0;
|
||
}
|
||
.modal-action {
|
||
justify-content: flex-end;
|
||
gap: 0.5rem;
|
||
margin-top: 1.5rem;
|
||
display: flex;
|
||
}
|
||
.mt-0\.5 {
|
||
margin-top: calc(var(--spacing) * 0.5);
|
||
}
|
||
.mt-1 {
|
||
margin-top: calc(var(--spacing) * 1);
|
||
}
|
||
.mt-2 {
|
||
margin-top: calc(var(--spacing) * 2);
|
||
}
|
||
.mt-3 {
|
||
margin-top: calc(var(--spacing) * 3);
|
||
}
|
||
.mt-4 {
|
||
margin-top: calc(var(--spacing) * 4);
|
||
}
|
||
.mt-5 {
|
||
margin-top: calc(var(--spacing) * 5);
|
||
}
|
||
.mt-6 {
|
||
margin-top: calc(var(--spacing) * 6);
|
||
}
|
||
.mt-8 {
|
||
margin-top: calc(var(--spacing) * 8);
|
||
}
|
||
.mt-10 {
|
||
margin-top: calc(var(--spacing) * 10);
|
||
}
|
||
.mt-18 {
|
||
margin-top: calc(var(--spacing) * 18);
|
||
}
|
||
.mt-20 {
|
||
margin-top: calc(var(--spacing) * 20);
|
||
}
|
||
.mr-0\.5 {
|
||
margin-right: calc(var(--spacing) * 0.5);
|
||
}
|
||
.mr-1 {
|
||
margin-right: calc(var(--spacing) * 1);
|
||
}
|
||
.mr-2 {
|
||
margin-right: calc(var(--spacing) * 2);
|
||
}
|
||
.mr-4 {
|
||
margin-right: calc(var(--spacing) * 4);
|
||
}
|
||
.fieldset-legend {
|
||
color: var(--color-base-content);
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
margin-bottom: -0.25rem;
|
||
padding-block: 0.5rem;
|
||
font-weight: 600;
|
||
display: flex;
|
||
}
|
||
.mb-0\.5 {
|
||
margin-bottom: calc(var(--spacing) * 0.5);
|
||
}
|
||
.mb-1 {
|
||
margin-bottom: calc(var(--spacing) * 1);
|
||
}
|
||
.mb-2 {
|
||
margin-bottom: calc(var(--spacing) * 2);
|
||
}
|
||
.mb-3 {
|
||
margin-bottom: calc(var(--spacing) * 3);
|
||
}
|
||
.mb-4 {
|
||
margin-bottom: calc(var(--spacing) * 4);
|
||
}
|
||
.mb-6 {
|
||
margin-bottom: calc(var(--spacing) * 6);
|
||
}
|
||
.ml-0\.5 {
|
||
margin-left: calc(var(--spacing) * 0.5);
|
||
}
|
||
.ml-1 {
|
||
margin-left: calc(var(--spacing) * 1);
|
||
}
|
||
.ml-2 {
|
||
margin-left: calc(var(--spacing) * 2);
|
||
}
|
||
.ml-3 {
|
||
margin-left: calc(var(--spacing) * 3);
|
||
}
|
||
.ml-4 {
|
||
margin-left: calc(var(--spacing) * 4);
|
||
}
|
||
.ml-auto {
|
||
margin-left: auto;
|
||
}
|
||
.status {
|
||
aspect-ratio: 1;
|
||
border-radius: var(--radius-selector);
|
||
background-color: var(--color-base-content);
|
||
width: 0.5rem;
|
||
height: 0.5rem;
|
||
display: inline-block;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.status {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 20%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.status {
|
||
vertical-align: middle;
|
||
color: #0000004d;
|
||
background-position: 50%;
|
||
background-repeat: no-repeat;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.status {
|
||
color: #0000004d;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.status {
|
||
color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
||
}
|
||
}
|
||
}
|
||
.status {
|
||
background-image: radial-gradient(
|
||
circle at 35% 30%,
|
||
oklch(1 0 0 / calc(var(--depth) * 0.5)),
|
||
#0000
|
||
);
|
||
box-shadow: 0 2px 3px -1px;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.status {
|
||
box-shadow: 0 2px 3px -1px color-mix(in oklab, currentColor
|
||
calc(var(--depth) * 100%), #0000);
|
||
}
|
||
}
|
||
.badge {
|
||
border-radius: var(--radius-selector);
|
||
vertical-align: middle;
|
||
color: var(--badge-fg);
|
||
border: var(--border) solid var(--badge-color, var(--color-base-200));
|
||
width: fit-content;
|
||
padding-inline: calc(0.25rem * 3 - var(--border));
|
||
background-size: auto, calc(var(--noise) * 100%);
|
||
background-image: none, var(--fx-noise);
|
||
background-color: var(--badge-bg);
|
||
--badge-bg: var(--badge-color, var(--color-base-100));
|
||
--badge-fg: var(--color-base-content);
|
||
--size: calc(var(--size-selector, 0.25rem) * 6);
|
||
height: var(--size);
|
||
justify-content: center;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
font-size: 0.875rem;
|
||
display: inline-flex;
|
||
}
|
||
.kbd {
|
||
border-radius: var(--radius-field);
|
||
background-color: var(--color-base-200);
|
||
vertical-align: middle;
|
||
border: var(--border) solid var(--color-base-content);
|
||
justify-content: center;
|
||
align-items: center;
|
||
padding-left: 0.5em;
|
||
padding-right: 0.5em;
|
||
display: inline-flex;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.kbd {
|
||
border: var(--border) solid
|
||
color-mix(in srgb, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
.kbd {
|
||
border-bottom: calc(var(--border) + 1px) solid var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.kbd {
|
||
border-bottom: calc(var(--border) + 1px) solid
|
||
color-mix(in srgb, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
.kbd {
|
||
--size: calc(var(--size-selector, 0.25rem) * 6);
|
||
height: var(--size);
|
||
min-width: var(--size);
|
||
font-size: 0.875rem;
|
||
}
|
||
.tabs {
|
||
--tabs-height: auto;
|
||
--tabs-direction: row;
|
||
--tab-height: calc(var(--size-field, 0.25rem) * 10);
|
||
height: var(--tabs-height);
|
||
flex-wrap: wrap;
|
||
flex-direction: var(--tabs-direction);
|
||
display: flex;
|
||
}
|
||
.card-body {
|
||
padding: var(--card-p, 1.5rem);
|
||
font-size: var(--card-fs, 0.875rem);
|
||
flex-direction: column;
|
||
flex: auto;
|
||
gap: 0.5rem;
|
||
display: flex;
|
||
}
|
||
.card-body :where(p) {
|
||
flex-grow: 1;
|
||
}
|
||
.alert {
|
||
border-radius: var(--radius-box);
|
||
color: var(--color-base-content);
|
||
background-color: var(--alert-color, var(--color-base-200));
|
||
text-align: start;
|
||
border: var(--border) solid var(--color-base-200);
|
||
background-size: auto, calc(var(--noise) * 100%);
|
||
background-image: none, var(--fx-noise);
|
||
box-shadow: 0 3px 0 -2px oklch(100% 0 0 / calc(var(--depth) * 0.08)) inset,
|
||
0 1px #000, 0 4px 3px -2px oklch(0% 0 0 / calc(var(--depth) * 0.08));
|
||
grid-template-columns: auto;
|
||
grid-auto-flow: column;
|
||
justify-content: start;
|
||
place-items: center start;
|
||
gap: 1rem;
|
||
padding-block: 0.75rem;
|
||
padding-inline: 1rem;
|
||
font-size: 0.875rem;
|
||
line-height: 1.25rem;
|
||
display: grid;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.alert {
|
||
box-shadow: 0 3px 0 -2px oklch(100% 0 0 / calc(var(--depth) * 0.08)) inset,
|
||
0 1px
|
||
color-mix(
|
||
in oklab,
|
||
color-mix(
|
||
in oklab,
|
||
#000 20%,
|
||
var(--alert-color, var(--color-base-200))
|
||
)
|
||
calc(var(--depth) * 20%),
|
||
#0000
|
||
),
|
||
0 4px 3px -2px oklch(0% 0 0 / calc(var(--depth) * 0.08));
|
||
}
|
||
}
|
||
.alert:has(:nth-child(2)) {
|
||
grid-template-columns: auto minmax(auto, 1fr);
|
||
}
|
||
.alert.alert-outline {
|
||
color: var(--alert-color);
|
||
box-shadow: none;
|
||
background-color: #0000;
|
||
background-image: none;
|
||
}
|
||
.alert.alert-dash {
|
||
color: var(--alert-color);
|
||
box-shadow: none;
|
||
background-color: #0000;
|
||
background-image: none;
|
||
border-style: dashed;
|
||
}
|
||
.alert.alert-soft {
|
||
color: var(--alert-color, var(--color-base-content));
|
||
background: var(--alert-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.alert.alert-soft {
|
||
background: color-mix(
|
||
in oklab,
|
||
var(--alert-color, var(--color-base-content)) 8%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.alert.alert-soft {
|
||
border-color: var(--alert-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.alert.alert-soft {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--alert-color, var(--color-base-content)) 10%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.alert.alert-soft {
|
||
box-shadow: none;
|
||
background-image: none;
|
||
}
|
||
.fieldset {
|
||
grid-template-columns: 1fr;
|
||
grid-auto-rows: max-content;
|
||
gap: 0.375rem;
|
||
padding-block: 0.25rem;
|
||
font-size: 0.75rem;
|
||
display: grid;
|
||
}
|
||
.join {
|
||
--join-ss: 0;
|
||
--join-se: 0;
|
||
--join-es: 0;
|
||
--join-ee: 0;
|
||
align-items: stretch;
|
||
display: inline-flex;
|
||
}
|
||
.join :where(.join-item) {
|
||
border-start-start-radius: var(--join-ss, 0);
|
||
border-start-end-radius: var(--join-se, 0);
|
||
border-end-end-radius: var(--join-ee, 0);
|
||
border-end-start-radius: var(--join-es, 0);
|
||
}
|
||
.join :where(.join-item) * {
|
||
--join-ss: var(--radius-field);
|
||
--join-se: var(--radius-field);
|
||
--join-es: var(--radius-field);
|
||
--join-ee: var(--radius-field);
|
||
}
|
||
.join > .join-item:where(:first-child),
|
||
.join :first-child:not(:last-child) :where(.join-item) {
|
||
--join-ss: var(--radius-field);
|
||
--join-se: 0;
|
||
--join-es: var(--radius-field);
|
||
--join-ee: 0;
|
||
}
|
||
.join > .join-item:where(:last-child),
|
||
.join :last-child:not(:first-child) :where(.join-item) {
|
||
--join-ss: 0;
|
||
--join-se: var(--radius-field);
|
||
--join-es: 0;
|
||
--join-ee: var(--radius-field);
|
||
}
|
||
.join > .join-item:where(:only-child),
|
||
.join :only-child :where(.join-item) {
|
||
--join-ss: var(--radius-field);
|
||
--join-se: var(--radius-field);
|
||
--join-es: var(--radius-field);
|
||
--join-ee: var(--radius-field);
|
||
}
|
||
.line-clamp-1 {
|
||
-webkit-line-clamp: 1;
|
||
-webkit-box-orient: vertical;
|
||
display: -webkit-box;
|
||
overflow: hidden;
|
||
}
|
||
:root .prose {
|
||
--tw-prose-body: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-body: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 80%,
|
||
#0000
|
||
);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-headings: var(--color-base-content);
|
||
--tw-prose-lead: var(--color-base-content);
|
||
--tw-prose-links: var(--color-base-content);
|
||
--tw-prose-bold: var(--color-base-content);
|
||
--tw-prose-counters: var(--color-base-content);
|
||
--tw-prose-bullets: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-bullets: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 50%,
|
||
#0000
|
||
);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-hr: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-hr: color-mix(in oklab, var(--color-base-content) 20%, #0000);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-quotes: var(--color-base-content);
|
||
--tw-prose-quote-borders: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-quote-borders: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 20%,
|
||
#0000
|
||
);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-captions: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-captions: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 50%,
|
||
#0000
|
||
);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-code: var(--color-base-content);
|
||
--tw-prose-pre-code: var(--color-neutral-content);
|
||
--tw-prose-pre-bg: var(--color-neutral);
|
||
--tw-prose-th-borders: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-th-borders: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 50%,
|
||
#0000
|
||
);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-td-borders: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-td-borders: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 20%,
|
||
#0000
|
||
);
|
||
}
|
||
}
|
||
:root .prose {
|
||
--tw-prose-kbd: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
:root .prose {
|
||
--tw-prose-kbd: color-mix(in oklab, var(--color-base-content) 80%, #0000);
|
||
}
|
||
}
|
||
:root .prose :where(code):not(pre > code) {
|
||
background-color: var(--color-base-200);
|
||
border-radius: var(--radius-selector);
|
||
border: var(--border) solid var(--color-base-300);
|
||
font-weight: inherit;
|
||
padding-inline: 0.5em;
|
||
}
|
||
:root .prose :where(code):not(pre > code):before,
|
||
:root .prose :where(code):not(pre > code):after {
|
||
display: none;
|
||
}
|
||
.mask {
|
||
vertical-align: middle;
|
||
display: inline-block;
|
||
-webkit-mask-position: 50%;
|
||
mask-position: 50%;
|
||
-webkit-mask-size: contain;
|
||
mask-size: contain;
|
||
-webkit-mask-repeat: no-repeat;
|
||
mask-repeat: no-repeat;
|
||
}
|
||
.hide-scrollbar {
|
||
-ms-overflow-style: none;
|
||
scrollbar-width: none;
|
||
}
|
||
.hide-scrollbar::-webkit-scrollbar {
|
||
display: none;
|
||
}
|
||
.block {
|
||
display: block;
|
||
}
|
||
.contents {
|
||
display: contents;
|
||
}
|
||
.flex {
|
||
display: flex;
|
||
}
|
||
.grid {
|
||
display: grid;
|
||
}
|
||
.hidden {
|
||
display: none;
|
||
}
|
||
.inline {
|
||
display: inline;
|
||
}
|
||
.inline-block {
|
||
display: inline-block;
|
||
}
|
||
.table {
|
||
display: table;
|
||
}
|
||
.aspect-square {
|
||
aspect-ratio: 1;
|
||
}
|
||
.aspect-video {
|
||
aspect-ratio: var(--aspect-video);
|
||
}
|
||
.btn-circle {
|
||
width: var(--size);
|
||
height: var(--size);
|
||
border-radius: 3.40282e38px;
|
||
padding-inline: 0;
|
||
}
|
||
.btn-square {
|
||
width: var(--size);
|
||
height: var(--size);
|
||
padding-inline: 0;
|
||
}
|
||
.size-0 {
|
||
width: calc(var(--spacing) * 0);
|
||
height: calc(var(--spacing) * 0);
|
||
}
|
||
.size-3 {
|
||
width: calc(var(--spacing) * 3);
|
||
height: calc(var(--spacing) * 3);
|
||
}
|
||
.size-3\.5 {
|
||
width: calc(var(--spacing) * 3.5);
|
||
height: calc(var(--spacing) * 3.5);
|
||
}
|
||
.size-4 {
|
||
width: calc(var(--spacing) * 4);
|
||
height: calc(var(--spacing) * 4);
|
||
}
|
||
.size-4\.5 {
|
||
width: calc(var(--spacing) * 4.5);
|
||
height: calc(var(--spacing) * 4.5);
|
||
}
|
||
.size-5 {
|
||
width: calc(var(--spacing) * 5);
|
||
height: calc(var(--spacing) * 5);
|
||
}
|
||
.size-5\.5 {
|
||
width: calc(var(--spacing) * 5.5);
|
||
height: calc(var(--spacing) * 5.5);
|
||
}
|
||
.size-6 {
|
||
width: calc(var(--spacing) * 6);
|
||
height: calc(var(--spacing) * 6);
|
||
}
|
||
.size-7 {
|
||
width: calc(var(--spacing) * 7);
|
||
height: calc(var(--spacing) * 7);
|
||
}
|
||
.size-8 {
|
||
width: calc(var(--spacing) * 8);
|
||
height: calc(var(--spacing) * 8);
|
||
}
|
||
.size-10 {
|
||
width: calc(var(--spacing) * 10);
|
||
height: calc(var(--spacing) * 10);
|
||
}
|
||
.size-11 {
|
||
width: calc(var(--spacing) * 11);
|
||
height: calc(var(--spacing) * 11);
|
||
}
|
||
.size-12 {
|
||
width: calc(var(--spacing) * 12);
|
||
height: calc(var(--spacing) * 12);
|
||
}
|
||
.size-13 {
|
||
width: calc(var(--spacing) * 13);
|
||
height: calc(var(--spacing) * 13);
|
||
}
|
||
.size-14 {
|
||
width: calc(var(--spacing) * 14);
|
||
height: calc(var(--spacing) * 14);
|
||
}
|
||
.size-15 {
|
||
width: calc(var(--spacing) * 15);
|
||
height: calc(var(--spacing) * 15);
|
||
}
|
||
.size-16 {
|
||
width: calc(var(--spacing) * 16);
|
||
height: calc(var(--spacing) * 16);
|
||
}
|
||
.size-20 {
|
||
width: calc(var(--spacing) * 20);
|
||
height: calc(var(--spacing) * 20);
|
||
}
|
||
.size-26 {
|
||
width: calc(var(--spacing) * 26);
|
||
height: calc(var(--spacing) * 26);
|
||
}
|
||
.size-30 {
|
||
width: calc(var(--spacing) * 30);
|
||
height: calc(var(--spacing) * 30);
|
||
}
|
||
.size-32 {
|
||
width: calc(var(--spacing) * 32);
|
||
height: calc(var(--spacing) * 32);
|
||
}
|
||
.size-52 {
|
||
width: calc(var(--spacing) * 52);
|
||
height: calc(var(--spacing) * 52);
|
||
}
|
||
.size-\[95\%\] {
|
||
width: 95%;
|
||
height: 95%;
|
||
}
|
||
.size-full {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.h-4 {
|
||
height: calc(var(--spacing) * 4);
|
||
}
|
||
.h-5 {
|
||
height: calc(var(--spacing) * 5);
|
||
}
|
||
.h-7 {
|
||
height: calc(var(--spacing) * 7);
|
||
}
|
||
.h-9 {
|
||
height: calc(var(--spacing) * 9);
|
||
}
|
||
.h-10 {
|
||
height: calc(var(--spacing) * 10);
|
||
}
|
||
.h-11\/12 {
|
||
height: 91.6667%;
|
||
}
|
||
.h-12 {
|
||
height: calc(var(--spacing) * 12);
|
||
}
|
||
.h-14 {
|
||
height: calc(var(--spacing) * 14);
|
||
}
|
||
.h-20 {
|
||
height: calc(var(--spacing) * 20);
|
||
}
|
||
.h-24 {
|
||
height: calc(var(--spacing) * 24);
|
||
}
|
||
.h-72 {
|
||
height: calc(var(--spacing) * 72);
|
||
}
|
||
.h-96 {
|
||
height: calc(var(--spacing) * 96);
|
||
}
|
||
.h-\[90\%\] {
|
||
height: 90%;
|
||
}
|
||
.h-full {
|
||
height: 100%;
|
||
}
|
||
.h-max {
|
||
height: max-content;
|
||
}
|
||
.h-px {
|
||
height: 1px;
|
||
}
|
||
.h-screen {
|
||
height: 100vh;
|
||
}
|
||
.max-h-11\/12 {
|
||
max-height: 91.6667%;
|
||
}
|
||
.max-h-80 {
|
||
max-height: calc(var(--spacing) * 80);
|
||
}
|
||
.max-h-\[25vh\] {
|
||
max-height: 25vh;
|
||
}
|
||
.max-h-\[70vh\] {
|
||
max-height: 70vh;
|
||
}
|
||
.max-h-\[97\%\] {
|
||
max-height: 97%;
|
||
}
|
||
.max-h-\[300px\] {
|
||
max-height: 300px;
|
||
}
|
||
.max-h-\[360px\] {
|
||
max-height: 360px;
|
||
}
|
||
.max-h-\[520px\] {
|
||
max-height: 520px;
|
||
}
|
||
.min-h-\[420px\] {
|
||
min-height: 420px;
|
||
}
|
||
.min-h-screen {
|
||
min-height: 100vh;
|
||
}
|
||
.loading-lg {
|
||
width: calc(var(--size-selector, 0.25rem) * 7);
|
||
}
|
||
.loading-md {
|
||
width: calc(var(--size-selector, 0.25rem) * 6);
|
||
}
|
||
.loading-sm {
|
||
width: calc(var(--size-selector, 0.25rem) * 5);
|
||
}
|
||
.loading-xl {
|
||
width: calc(var(--size-selector, 0.25rem) * 8);
|
||
}
|
||
.loading-xs {
|
||
width: calc(var(--size-selector, 0.25rem) * 4);
|
||
}
|
||
.w-7 {
|
||
width: calc(var(--spacing) * 7);
|
||
}
|
||
.w-8 {
|
||
width: calc(var(--spacing) * 8);
|
||
}
|
||
.w-11\/12 {
|
||
width: 91.6667%;
|
||
}
|
||
.w-16 {
|
||
width: calc(var(--spacing) * 16);
|
||
}
|
||
.w-24 {
|
||
width: calc(var(--spacing) * 24);
|
||
}
|
||
.w-32 {
|
||
width: calc(var(--spacing) * 32);
|
||
}
|
||
.w-40 {
|
||
width: calc(var(--spacing) * 40);
|
||
}
|
||
.w-44 {
|
||
width: calc(var(--spacing) * 44);
|
||
}
|
||
.w-46 {
|
||
width: calc(var(--spacing) * 46);
|
||
}
|
||
.w-52 {
|
||
width: calc(var(--spacing) * 52);
|
||
}
|
||
.w-70 {
|
||
width: calc(var(--spacing) * 70);
|
||
}
|
||
.w-\[min\(100vw-24px\,400px\)\] {
|
||
width: min(100vw - 24px, 400px);
|
||
}
|
||
.w-auto {
|
||
width: auto;
|
||
}
|
||
.w-full {
|
||
width: 100%;
|
||
}
|
||
.w-max {
|
||
width: max-content;
|
||
}
|
||
.w-px {
|
||
width: 1px;
|
||
}
|
||
.w-screen {
|
||
width: 100vw;
|
||
}
|
||
.max-w-2xl {
|
||
max-width: var(--container-2xl);
|
||
}
|
||
.max-w-3xl {
|
||
max-width: var(--container-3xl);
|
||
}
|
||
.max-w-4xl {
|
||
max-width: var(--container-4xl);
|
||
}
|
||
.max-w-7xl {
|
||
max-width: var(--container-7xl);
|
||
}
|
||
.max-w-11\/12 {
|
||
max-width: 91.6667%;
|
||
}
|
||
.max-w-16 {
|
||
max-width: calc(var(--spacing) * 16);
|
||
}
|
||
.max-w-54 {
|
||
max-width: calc(var(--spacing) * 54);
|
||
}
|
||
.max-w-74 {
|
||
max-width: calc(var(--spacing) * 74);
|
||
}
|
||
.max-w-\[1920px\] {
|
||
max-width: 1920px;
|
||
}
|
||
.max-w-\[calc\(100\%-2rem\)\] {
|
||
max-width: calc(100% - 2rem);
|
||
}
|
||
.max-w-full {
|
||
max-width: 100%;
|
||
}
|
||
.max-w-lg {
|
||
max-width: var(--container-lg);
|
||
}
|
||
.max-w-md {
|
||
max-width: var(--container-md);
|
||
}
|
||
.max-w-sm {
|
||
max-width: var(--container-sm);
|
||
}
|
||
.max-w-xl {
|
||
max-width: var(--container-xl);
|
||
}
|
||
.min-w-10 {
|
||
min-width: calc(var(--spacing) * 10);
|
||
}
|
||
.grow {
|
||
flex-grow: 1;
|
||
}
|
||
.translate-1\/2 {
|
||
--tw-translate-x: 50%;
|
||
--tw-translate-y: 50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.-translate-x-1\/2 {
|
||
--tw-translate-x: -50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.-translate-x-full {
|
||
--tw-translate-x: -100%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.translate-x-\[-50\%\] {
|
||
--tw-translate-x: -50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.\!-translate-y-1\/2 {
|
||
--tw-translate-y: -50% !important;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y) !important;
|
||
}
|
||
.-translate-y-1\/2 {
|
||
--tw-translate-y: -50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.-translate-y-\[87\%\] {
|
||
--tw-translate-y: -87%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.translate-y-0\.5 {
|
||
--tw-translate-y: calc(var(--spacing) * 0.5);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.translate-y-1 {
|
||
--tw-translate-y: calc(var(--spacing) * 1);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.translate-y-1\/2 {
|
||
--tw-translate-y: 50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.translate-y-2 {
|
||
--tw-translate-y: calc(var(--spacing) * 2);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.translate-y-\[-50\%\] {
|
||
--tw-translate-y: -50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.scale-\[1\.02\] {
|
||
scale: 1.02;
|
||
}
|
||
.scale-\[3\] {
|
||
scale: 3;
|
||
}
|
||
.rotate-\[215deg\] {
|
||
rotate: 215deg;
|
||
}
|
||
.transform {
|
||
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z)
|
||
var(--tw-skew-x) var(--tw-skew-y);
|
||
}
|
||
.skeleton {
|
||
border-radius: var(--radius-box);
|
||
background-color: var(--color-base-300);
|
||
}
|
||
@media (prefers-reduced-motion: reduce) {
|
||
.skeleton {
|
||
transition-duration: 15s;
|
||
}
|
||
}
|
||
.skeleton {
|
||
will-change: background-position;
|
||
background-image: linear-gradient(
|
||
105deg,
|
||
#0000 0% 40%,
|
||
var(--color-base-100) 50%,
|
||
#0000 60% 100%
|
||
);
|
||
background-position-x: -50%;
|
||
background-repeat: no-repeat;
|
||
background-size: 200%;
|
||
animation: 1.8s ease-in-out infinite skeleton;
|
||
}
|
||
.animate-bounce {
|
||
animation: var(--animate-bounce);
|
||
}
|
||
.animate-caret-blink {
|
||
animation: 1.25s ease-out infinite caret-blink;
|
||
}
|
||
.animate-pulse {
|
||
animation: var(--animate-pulse);
|
||
}
|
||
.highlight-link a {
|
||
cursor: pointer;
|
||
color: var(--color-primary);
|
||
text-decoration-line: none;
|
||
}
|
||
.link {
|
||
cursor: pointer;
|
||
text-decoration-line: underline;
|
||
}
|
||
.link:focus {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.link:focus {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.link:focus-visible {
|
||
outline-offset: 2px;
|
||
outline: 2px solid;
|
||
}
|
||
.cursor-auto {
|
||
cursor: auto;
|
||
}
|
||
.cursor-default {
|
||
cursor: default;
|
||
}
|
||
.cursor-eraser {
|
||
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAFxJREFUeNq107EJACAMRFEHyxSu4jbuZ+0IyhUS4ZDogYEr3++Svp+ZDUzGrRTMIwKmiIApImCKiBgbOXOEcRxQsQcW7rVKeA9gj5gD2D3mgC/GcQSLMEdO+/qtE+/GV5duYCOPAAAAAElFTkSuQmCC)
|
||
2 14,
|
||
default;
|
||
}
|
||
.cursor-not-allowed {
|
||
cursor: not-allowed;
|
||
}
|
||
.cursor-pencil {
|
||
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAAXNSR0IArs4c6QAAAAJ0Uk5TAAB2k804AAAAKklEQVR42mOAAhsbCA3n//9vQ74ApqE2QIAgwIqBykFaICwMAQwt9HEpAIf2Me1Ro5Q9AAAAAElFTkSuQmCC)
|
||
8 8,
|
||
default;
|
||
}
|
||
.cursor-pointer {
|
||
cursor: pointer;
|
||
}
|
||
.touch-none {
|
||
touch-action: none;
|
||
}
|
||
.resize {
|
||
resize: both;
|
||
}
|
||
.scroll-py-1 {
|
||
scroll-padding-block: calc(var(--spacing) * 1);
|
||
}
|
||
.grid-cols-1 {
|
||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||
}
|
||
.grid-cols-2 {
|
||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
}
|
||
.grid-cols-3 {
|
||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
}
|
||
.grid-cols-8 {
|
||
grid-template-columns: repeat(8, minmax(0, 1fr));
|
||
}
|
||
.grid-cols-\[350px_1fr\] {
|
||
grid-template-columns: 350px 1fr;
|
||
}
|
||
.flex-col {
|
||
flex-direction: column;
|
||
}
|
||
.flex-col-reverse {
|
||
flex-direction: column-reverse;
|
||
}
|
||
.flex-wrap {
|
||
flex-wrap: wrap;
|
||
}
|
||
.items-baseline {
|
||
align-items: baseline;
|
||
}
|
||
.items-center {
|
||
align-items: center;
|
||
}
|
||
.items-end {
|
||
align-items: flex-end;
|
||
}
|
||
.items-start {
|
||
align-items: flex-start;
|
||
}
|
||
.justify-between {
|
||
justify-content: space-between;
|
||
}
|
||
.justify-center {
|
||
justify-content: center;
|
||
}
|
||
.justify-end {
|
||
justify-content: flex-end;
|
||
}
|
||
.gap-0\.5 {
|
||
gap: calc(var(--spacing) * 0.5);
|
||
}
|
||
.gap-1 {
|
||
gap: calc(var(--spacing) * 1);
|
||
}
|
||
.gap-1\.5 {
|
||
gap: calc(var(--spacing) * 1.5);
|
||
}
|
||
.gap-2 {
|
||
gap: calc(var(--spacing) * 2);
|
||
}
|
||
.gap-3 {
|
||
gap: calc(var(--spacing) * 3);
|
||
}
|
||
.gap-4 {
|
||
gap: calc(var(--spacing) * 4);
|
||
}
|
||
.gap-5 {
|
||
gap: calc(var(--spacing) * 5);
|
||
}
|
||
.gap-6 {
|
||
gap: calc(var(--spacing) * 6);
|
||
}
|
||
.gap-\[8px\] {
|
||
gap: 8px;
|
||
}
|
||
.overflow-auto {
|
||
overflow: auto;
|
||
}
|
||
.overflow-hidden {
|
||
overflow: hidden;
|
||
}
|
||
.overflow-x-auto {
|
||
overflow-x: auto;
|
||
}
|
||
.overflow-x-hidden {
|
||
overflow-x: hidden;
|
||
}
|
||
.overflow-y-auto {
|
||
overflow-y: auto;
|
||
}
|
||
.tabs-box {
|
||
background-color: var(--color-base-200);
|
||
--tabs-box-radius: calc(
|
||
var(--radius-field) + var(--radius-field) + var(--radius-field)
|
||
);
|
||
border-radius: calc(
|
||
var(--radius-field) + min(0.25rem, var(--tabs-box-radius))
|
||
);
|
||
box-shadow: 0 -0.5px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 0.5px oklch(0% 0 0 / calc(var(--depth) * 0.05)) inset;
|
||
padding: 0.25rem;
|
||
}
|
||
.tabs-box .tab {
|
||
border-radius: var(--radius-field);
|
||
border-style: none;
|
||
}
|
||
.tabs-box .tab:focus-visible,
|
||
.tabs-box .tab:is(label:has(:checked:focus-visible)) {
|
||
outline-offset: 2px;
|
||
}
|
||
.tabs-box
|
||
> :is(.tab-active, [aria-selected="true"]):not(.tab-disabled, [disabled]),
|
||
.tabs-box > :is(input:checked),
|
||
.tabs-box > :is(label:has(:checked)) {
|
||
background-color: var(--tab-bg, var(--color-base-100));
|
||
box-shadow: 0 1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 1px 1px -1px var(--color-neutral), 0 1px 6px -4px var(--color-neutral);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.tabs-box
|
||
> :is(.tab-active, [aria-selected="true"]):not(.tab-disabled, [disabled]),
|
||
.tabs-box > :is(input:checked),
|
||
.tabs-box > :is(label:has(:checked)) {
|
||
box-shadow: 0 1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset,
|
||
0 1px 1px -1px color-mix(in oklab, var(--color-neutral)
|
||
calc(var(--depth) * 50%), #0000),
|
||
0 1px 6px -4px color-mix(in oklab, var(--color-neutral)
|
||
calc(var(--depth) * 100%), #0000);
|
||
}
|
||
}
|
||
@media (forced-colors: active) {
|
||
.tabs-box
|
||
> :is(.tab-active, [aria-selected="true"]):not(.tab-disabled, [disabled]),
|
||
.tabs-box > :is(input:checked),
|
||
.tabs-box > :is(label:has(:checked)) {
|
||
border: 1px solid;
|
||
}
|
||
}
|
||
.rounded-2xl {
|
||
border-radius: var(--radius-2xl);
|
||
}
|
||
.rounded-box {
|
||
border-radius: var(--radius-box);
|
||
}
|
||
.rounded-field {
|
||
border-radius: var(--radius-field);
|
||
}
|
||
.rounded-full {
|
||
border-radius: 3.40282e38px;
|
||
}
|
||
.rounded-lg {
|
||
border-radius: var(--radius-lg);
|
||
}
|
||
.rounded-md {
|
||
border-radius: var(--radius-md);
|
||
}
|
||
.rounded-sm {
|
||
border-radius: var(--radius-sm);
|
||
}
|
||
.rounded-xl {
|
||
border-radius: var(--radius-xl);
|
||
}
|
||
.rounded-xs {
|
||
border-radius: var(--radius-xs);
|
||
}
|
||
.rounded-t-box {
|
||
border-top-left-radius: var(--radius-box);
|
||
border-top-right-radius: var(--radius-box);
|
||
}
|
||
.\!border {
|
||
border-style: var(--tw-border-style) !important;
|
||
border-width: 1px !important;
|
||
}
|
||
.border {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 1px;
|
||
}
|
||
.border-0 {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 0;
|
||
}
|
||
.border-1 {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 1px;
|
||
}
|
||
.border-2 {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 2px;
|
||
}
|
||
.border-3 {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 3px;
|
||
}
|
||
.border-4 {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 4px;
|
||
}
|
||
.border-6 {
|
||
border-style: var(--tw-border-style);
|
||
border-width: 6px;
|
||
}
|
||
.border-y {
|
||
border-block-style: var(--tw-border-style);
|
||
border-block-width: 1px;
|
||
}
|
||
.border-t {
|
||
border-top-style: var(--tw-border-style);
|
||
border-top-width: 1px;
|
||
}
|
||
.border-r {
|
||
border-right-style: var(--tw-border-style);
|
||
border-right-width: 1px;
|
||
}
|
||
.border-b {
|
||
border-bottom-style: var(--tw-border-style);
|
||
border-bottom-width: 1px;
|
||
}
|
||
.badge-ghost {
|
||
border-color: var(--color-base-200);
|
||
background-color: var(--color-base-200);
|
||
color: var(--color-base-content);
|
||
background-image: none;
|
||
}
|
||
.badge-soft {
|
||
color: var(--badge-color, var(--color-base-content));
|
||
background-color: var(--badge-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.badge-soft {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--badge-color, var(--color-base-content)) 8%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.badge-soft {
|
||
border-color: var(--badge-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.badge-soft {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--badge-color, var(--color-base-content)) 10%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.badge-soft {
|
||
background-image: none;
|
||
}
|
||
.badge-outline {
|
||
color: var(--badge-color);
|
||
--badge-bg: #0000;
|
||
background-image: none;
|
||
border-color: currentColor;
|
||
}
|
||
.\!border-primary\/60 {
|
||
border-color: var(--color-primary) !important;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.\!border-primary\/60 {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--color-primary) 60%,
|
||
transparent
|
||
) !important;
|
||
}
|
||
}
|
||
.border-base-200 {
|
||
border-color: var(--color-base-200);
|
||
}
|
||
.border-base-300 {
|
||
border-color: var(--color-base-300);
|
||
}
|
||
.border-base-content\/10 {
|
||
border-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.border-base-content\/10 {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.border-base-content\/20 {
|
||
border-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.border-base-content\/20 {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 20%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.border-base-content\/30 {
|
||
border-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.border-base-content\/30 {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 30%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.border-black {
|
||
border-color: var(--color-black);
|
||
}
|
||
.border-primary {
|
||
border-color: var(--color-primary);
|
||
}
|
||
.border-red-500 {
|
||
border-color: var(--color-red-500);
|
||
}
|
||
.\!bg-base-300 {
|
||
background-color: var(--color-base-300) !important;
|
||
}
|
||
.\!bg-black\/80 {
|
||
background-color: #000c !important;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.\!bg-black\/80 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-black) 80%,
|
||
transparent
|
||
) !important;
|
||
}
|
||
}
|
||
.\!bg-black\/90 {
|
||
background-color: #000000e6 !important;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.\!bg-black\/90 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-black) 90%,
|
||
transparent
|
||
) !important;
|
||
}
|
||
}
|
||
.\!bg-primary {
|
||
background-color: var(--color-primary) !important;
|
||
}
|
||
.bg-\[\#5865F2\] {
|
||
background-color: #5865f2;
|
||
}
|
||
.bg-amber-500\/10 {
|
||
background-color: #f99c001a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-amber-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-amber-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-base-100,
|
||
.bg-base-100\/60 {
|
||
background-color: var(--color-base-100);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-base-100\/60 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-100) 60%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-base-100\/70 {
|
||
background-color: var(--color-base-100);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-base-100\/70 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-100) 70%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-base-200 {
|
||
background-color: var(--color-base-200);
|
||
}
|
||
.bg-base-300 {
|
||
background-color: var(--color-base-300);
|
||
}
|
||
.bg-base-content\/10 {
|
||
background-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-base-content\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-base-content\/20 {
|
||
background-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-base-content\/20 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 20%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-base-content\/80 {
|
||
background-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-base-content\/80 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 80%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-black {
|
||
background-color: var(--color-black);
|
||
}
|
||
.bg-black\/50 {
|
||
background-color: #00000080;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-black\/50 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-black) 50%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-blue-500\/10 {
|
||
background-color: #3080ff1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-blue-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-blue-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-cyan-500\/10 {
|
||
background-color: #00b7d71a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-cyan-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-cyan-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-emerald-500\/10 {
|
||
background-color: #00bb7f1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-emerald-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-emerald-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-fuchsia-500\/10 {
|
||
background-color: #e12afb1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-fuchsia-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-fuchsia-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-green-500\/10 {
|
||
background-color: #00c7581a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-green-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-green-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-green-600 {
|
||
background-color: var(--color-green-600);
|
||
}
|
||
.bg-indigo-500\/10 {
|
||
background-color: #625fff1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-indigo-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-indigo-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-lime-500\/10 {
|
||
background-color: #80cd001a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-lime-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-lime-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-orange-500\/10 {
|
||
background-color: #fe6e001a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-orange-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-orange-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-pink-500\/10 {
|
||
background-color: #f6339a1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-pink-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-pink-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-primary\/10 {
|
||
background-color: var(--color-primary);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-primary\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-primary) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-purple-500\/10 {
|
||
background-color: #ac4bff1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-purple-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-purple-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-red-500 {
|
||
background-color: var(--color-red-500);
|
||
}
|
||
.bg-red-500\/10 {
|
||
background-color: #fb2c361a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-red-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-red-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-rose-500\/10 {
|
||
background-color: #ff23571a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-rose-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-rose-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-secondary {
|
||
background-color: var(--color-secondary);
|
||
}
|
||
.bg-sky-500\/10 {
|
||
background-color: #00a5ef1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-sky-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-sky-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-teal-500\/10 {
|
||
background-color: #00baa71a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-teal-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-teal-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-transparent {
|
||
background-color: #0000;
|
||
}
|
||
.bg-violet-500\/10 {
|
||
background-color: #8d54ff1a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-violet-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-violet-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.bg-warning {
|
||
background-color: var(--color-warning);
|
||
}
|
||
.bg-yellow-500\/10 {
|
||
background-color: #edb2001a;
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.bg-yellow-500\/10 {
|
||
background-color: color-mix(
|
||
in oklab,
|
||
var(--color-yellow-500) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.loading-dots {
|
||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.1s'/%3E%3C/circle%3E%3Ccircle cx='20' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.2s'/%3E%3C/circle%3E%3C/svg%3E");
|
||
mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1'/%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.1s'/%3E%3C/circle%3E%3Ccircle cx='20' cy='12' r='3'%3E%3Canimate attributeName='cy' values='12;6;12;12' keyTimes='0;0.286;0.571;1' dur='1.05s' repeatCount='indefinite' keySplines='.33,0,.66,.33;.33,.66,.66,1' begin='0.2s'/%3E%3C/circle%3E%3C/svg%3E");
|
||
}
|
||
.loading-spinner {
|
||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
|
||
mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
|
||
}
|
||
.fill-blue-800 {
|
||
fill: var(--color-blue-800);
|
||
}
|
||
.fill-primary {
|
||
fill: var(--color-primary);
|
||
}
|
||
.fill-red-400 {
|
||
fill: var(--color-red-400);
|
||
}
|
||
.checkbox-sm {
|
||
--size: calc(var(--size-selector, 0.25rem) * 5);
|
||
padding: 0.1875rem;
|
||
}
|
||
.checkbox-xs {
|
||
--size: calc(var(--size-selector, 0.25rem) * 4);
|
||
padding: 0.125rem;
|
||
}
|
||
.radio-sm {
|
||
padding: 0.1875rem;
|
||
}
|
||
.radio-sm[type="radio"] {
|
||
--size: calc(var(--size-selector, 0.25rem) * 5);
|
||
}
|
||
.p-0 {
|
||
padding: calc(var(--spacing) * 0);
|
||
}
|
||
.p-1 {
|
||
padding: calc(var(--spacing) * 1);
|
||
}
|
||
.p-2 {
|
||
padding: calc(var(--spacing) * 2);
|
||
}
|
||
.p-2\.5 {
|
||
padding: calc(var(--spacing) * 2.5);
|
||
}
|
||
.p-3 {
|
||
padding: calc(var(--spacing) * 3);
|
||
}
|
||
.p-4 {
|
||
padding: calc(var(--spacing) * 4);
|
||
}
|
||
.p-6 {
|
||
padding: calc(var(--spacing) * 6);
|
||
}
|
||
.table-sm :not(thead, tfoot) tr {
|
||
font-size: 0.75rem;
|
||
}
|
||
.table-sm :where(th, td) {
|
||
padding-block: 0.5rem;
|
||
padding-inline: 0.75rem;
|
||
}
|
||
.badge-lg {
|
||
--size: calc(var(--size-selector, 0.25rem) * 7);
|
||
padding-inline: calc(0.25rem * 3.5 - var(--border));
|
||
font-size: 1rem;
|
||
}
|
||
.badge-sm {
|
||
--size: calc(var(--size-selector, 0.25rem) * 5);
|
||
padding-inline: calc(0.25rem * 2.5 - var(--border));
|
||
font-size: 0.75rem;
|
||
}
|
||
.badge-xs {
|
||
--size: calc(var(--size-selector, 0.25rem) * 4);
|
||
padding-inline: calc(0.25rem * 2 - var(--border));
|
||
font-size: 0.625rem;
|
||
}
|
||
.px-0 {
|
||
padding-inline: calc(var(--spacing) * 0);
|
||
}
|
||
.px-1 {
|
||
padding-inline: calc(var(--spacing) * 1);
|
||
}
|
||
.px-2 {
|
||
padding-inline: calc(var(--spacing) * 2);
|
||
}
|
||
.px-3 {
|
||
padding-inline: calc(var(--spacing) * 3);
|
||
}
|
||
.px-4 {
|
||
padding-inline: calc(var(--spacing) * 4);
|
||
}
|
||
.px-6 {
|
||
padding-inline: calc(var(--spacing) * 6);
|
||
}
|
||
.px-\[5px\] {
|
||
padding-inline: 5px;
|
||
}
|
||
.py-0 {
|
||
padding-block: calc(var(--spacing) * 0);
|
||
}
|
||
.py-1 {
|
||
padding-block: calc(var(--spacing) * 1);
|
||
}
|
||
.py-1\.5 {
|
||
padding-block: calc(var(--spacing) * 1.5);
|
||
}
|
||
.py-2 {
|
||
padding-block: calc(var(--spacing) * 2);
|
||
}
|
||
.py-3 {
|
||
padding-block: calc(var(--spacing) * 3);
|
||
}
|
||
.py-4 {
|
||
padding-block: calc(var(--spacing) * 4);
|
||
}
|
||
.py-6 {
|
||
padding-block: calc(var(--spacing) * 6);
|
||
}
|
||
.pt-1 {
|
||
padding-top: calc(var(--spacing) * 1);
|
||
}
|
||
.pt-2 {
|
||
padding-top: calc(var(--spacing) * 2);
|
||
}
|
||
.pt-3 {
|
||
padding-top: calc(var(--spacing) * 3);
|
||
}
|
||
.pt-4 {
|
||
padding-top: calc(var(--spacing) * 4);
|
||
}
|
||
.pt-6 {
|
||
padding-top: calc(var(--spacing) * 6);
|
||
}
|
||
.pt-20 {
|
||
padding-top: calc(var(--spacing) * 20);
|
||
}
|
||
.pr-1 {
|
||
padding-right: calc(var(--spacing) * 1);
|
||
}
|
||
.pr-2 {
|
||
padding-right: calc(var(--spacing) * 2);
|
||
}
|
||
.pr-2\.5 {
|
||
padding-right: calc(var(--spacing) * 2.5);
|
||
}
|
||
.pr-8 {
|
||
padding-right: calc(var(--spacing) * 8);
|
||
}
|
||
.pb-0\.5 {
|
||
padding-bottom: calc(var(--spacing) * 0.5);
|
||
}
|
||
.pb-1 {
|
||
padding-bottom: calc(var(--spacing) * 1);
|
||
}
|
||
.pb-2 {
|
||
padding-bottom: calc(var(--spacing) * 2);
|
||
}
|
||
.pb-3 {
|
||
padding-bottom: calc(var(--spacing) * 3);
|
||
}
|
||
.pb-4 {
|
||
padding-bottom: calc(var(--spacing) * 4);
|
||
}
|
||
.pb-6 {
|
||
padding-bottom: calc(var(--spacing) * 6);
|
||
}
|
||
.pb-8 {
|
||
padding-bottom: calc(var(--spacing) * 8);
|
||
}
|
||
.pl-1 {
|
||
padding-left: calc(var(--spacing) * 1);
|
||
}
|
||
.pl-4 {
|
||
padding-left: calc(var(--spacing) * 4);
|
||
}
|
||
.pl-12\! {
|
||
padding-left: calc(var(--spacing) * 12) !important;
|
||
}
|
||
.text-center {
|
||
text-align: center;
|
||
}
|
||
.text-left {
|
||
text-align: left;
|
||
}
|
||
.text-right {
|
||
text-align: right;
|
||
}
|
||
.text-start {
|
||
text-align: start;
|
||
}
|
||
.font-flag {
|
||
font-family: "Noto Color Emoji", "Geist", var(--font-sans);
|
||
}
|
||
.font-mono {
|
||
font-family: var(--font-mono);
|
||
}
|
||
.font-pixel {
|
||
font-family: "Pixelify Sans", var(--font-sans);
|
||
}
|
||
.text-2xl {
|
||
font-size: var(--text-2xl);
|
||
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
||
}
|
||
.text-3xl {
|
||
font-size: var(--text-3xl);
|
||
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
||
}
|
||
.text-4xl {
|
||
font-size: var(--text-4xl);
|
||
line-height: var(--tw-leading, var(--text-4xl--line-height));
|
||
}
|
||
.text-5xl {
|
||
font-size: var(--text-5xl);
|
||
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
||
}
|
||
.text-7xl {
|
||
font-size: var(--text-7xl);
|
||
line-height: var(--tw-leading, var(--text-7xl--line-height));
|
||
}
|
||
.text-base {
|
||
font-size: var(--text-base);
|
||
line-height: var(--tw-leading, var(--text-base--line-height));
|
||
}
|
||
.text-lg {
|
||
font-size: var(--text-lg);
|
||
line-height: var(--tw-leading, var(--text-lg--line-height));
|
||
}
|
||
.text-sm {
|
||
font-size: var(--text-sm);
|
||
line-height: var(--tw-leading, var(--text-sm--line-height));
|
||
}
|
||
.text-xl {
|
||
font-size: var(--text-xl);
|
||
line-height: var(--tw-leading, var(--text-xl--line-height));
|
||
}
|
||
.text-xs {
|
||
font-size: var(--text-xs);
|
||
line-height: var(--tw-leading, var(--text-xs--line-height));
|
||
}
|
||
.kbd-sm {
|
||
--size: calc(var(--size-selector, 0.25rem) * 5);
|
||
font-size: 0.75rem;
|
||
}
|
||
.kbd-xs {
|
||
--size: calc(var(--size-selector, 0.25rem) * 4);
|
||
font-size: 0.625rem;
|
||
}
|
||
.select-sm {
|
||
--size: calc(var(--size-field, 0.25rem) * 8);
|
||
font-size: 0.75rem;
|
||
}
|
||
.text-\[10px\] {
|
||
font-size: 10px;
|
||
}
|
||
.leading-none {
|
||
--tw-leading: 1;
|
||
line-height: 1;
|
||
}
|
||
.font-bold {
|
||
--tw-font-weight: var(--font-weight-bold);
|
||
font-weight: var(--font-weight-bold);
|
||
}
|
||
.font-extrabold {
|
||
--tw-font-weight: var(--font-weight-extrabold);
|
||
font-weight: var(--font-weight-extrabold);
|
||
}
|
||
.font-medium {
|
||
--tw-font-weight: var(--font-weight-medium);
|
||
font-weight: var(--font-weight-medium);
|
||
}
|
||
.font-normal {
|
||
--tw-font-weight: var(--font-weight-normal);
|
||
font-weight: var(--font-weight-normal);
|
||
}
|
||
.font-semibold {
|
||
--tw-font-weight: var(--font-weight-semibold);
|
||
font-weight: var(--font-weight-semibold);
|
||
}
|
||
.tracking-widest {
|
||
--tw-tracking: var(--tracking-widest);
|
||
letter-spacing: var(--tracking-widest);
|
||
}
|
||
.text-nowrap {
|
||
text-wrap: nowrap;
|
||
}
|
||
.break-words {
|
||
overflow-wrap: break-word;
|
||
}
|
||
.text-ellipsis {
|
||
text-overflow: ellipsis;
|
||
}
|
||
.whitespace-nowrap {
|
||
white-space: nowrap;
|
||
}
|
||
.whitespace-pre-line {
|
||
white-space: pre-line;
|
||
}
|
||
.whitespace-pre-wrap {
|
||
white-space: pre-wrap;
|
||
}
|
||
.\!text-primary-content {
|
||
color: var(--color-primary-content) !important;
|
||
}
|
||
.text-amber-500 {
|
||
color: var(--color-amber-500);
|
||
}
|
||
.text-amber-600 {
|
||
color: var(--color-amber-600);
|
||
}
|
||
.text-base-content,
|
||
.text-base-content\/20 {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.text-base-content\/20 {
|
||
color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
|
||
}
|
||
}
|
||
.text-base-content\/50 {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.text-base-content\/50 {
|
||
color: color-mix(in oklab, var(--color-base-content) 50%, transparent);
|
||
}
|
||
}
|
||
.text-base-content\/60 {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.text-base-content\/60 {
|
||
color: color-mix(in oklab, var(--color-base-content) 60%, transparent);
|
||
}
|
||
}
|
||
.text-base-content\/70 {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.text-base-content\/70 {
|
||
color: color-mix(in oklab, var(--color-base-content) 70%, transparent);
|
||
}
|
||
}
|
||
.text-base-content\/80 {
|
||
color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.text-base-content\/80 {
|
||
color: color-mix(in oklab, var(--color-base-content) 80%, transparent);
|
||
}
|
||
}
|
||
.text-black {
|
||
color: var(--color-black);
|
||
}
|
||
.text-blue-500 {
|
||
color: var(--color-blue-500);
|
||
}
|
||
.text-blue-600 {
|
||
color: var(--color-blue-600);
|
||
}
|
||
.text-cyan-500 {
|
||
color: var(--color-cyan-500);
|
||
}
|
||
.text-emerald-500 {
|
||
color: var(--color-emerald-500);
|
||
}
|
||
.text-error {
|
||
color: var(--color-error);
|
||
}
|
||
.text-fuchsia-500 {
|
||
color: var(--color-fuchsia-500);
|
||
}
|
||
.text-green-100 {
|
||
color: var(--color-green-100);
|
||
}
|
||
.text-green-500 {
|
||
color: var(--color-green-500);
|
||
}
|
||
.text-indigo-500 {
|
||
color: var(--color-indigo-500);
|
||
}
|
||
.text-lime-500 {
|
||
color: var(--color-lime-500);
|
||
}
|
||
.text-orange-500 {
|
||
color: var(--color-orange-500);
|
||
}
|
||
.text-pink-500 {
|
||
color: var(--color-pink-500);
|
||
}
|
||
.text-primary {
|
||
color: var(--color-primary);
|
||
}
|
||
.text-primary-content {
|
||
color: var(--color-primary-content);
|
||
}
|
||
.text-primary\/80 {
|
||
color: var(--color-primary);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.text-primary\/80 {
|
||
color: color-mix(in oklab, var(--color-primary) 80%, transparent);
|
||
}
|
||
}
|
||
.text-purple-500 {
|
||
color: var(--color-purple-500);
|
||
}
|
||
.text-red-400 {
|
||
color: var(--color-red-400);
|
||
}
|
||
.text-red-500 {
|
||
color: var(--color-red-500);
|
||
}
|
||
.text-red-600 {
|
||
color: var(--color-red-600);
|
||
}
|
||
.text-rose-500 {
|
||
color: var(--color-rose-500);
|
||
}
|
||
.text-secondary {
|
||
color: var(--color-secondary);
|
||
}
|
||
.text-sky-500 {
|
||
color: var(--color-sky-500);
|
||
}
|
||
.text-success {
|
||
color: var(--color-success);
|
||
}
|
||
.text-teal-500 {
|
||
color: var(--color-teal-500);
|
||
}
|
||
.text-violet-500 {
|
||
color: var(--color-violet-500);
|
||
}
|
||
.text-warning-content {
|
||
color: var(--color-warning-content);
|
||
}
|
||
.text-white {
|
||
color: var(--color-white);
|
||
}
|
||
.text-yellow-400 {
|
||
color: var(--color-yellow-400);
|
||
}
|
||
.text-yellow-500 {
|
||
color: var(--color-yellow-500);
|
||
}
|
||
.capitalize {
|
||
text-transform: capitalize;
|
||
}
|
||
.uppercase {
|
||
text-transform: uppercase;
|
||
}
|
||
.underline {
|
||
text-decoration-line: underline;
|
||
}
|
||
.opacity-30 {
|
||
opacity: 0.3;
|
||
}
|
||
.opacity-50 {
|
||
opacity: 0.5;
|
||
}
|
||
.opacity-70 {
|
||
opacity: 0.7;
|
||
}
|
||
.opacity-80 {
|
||
opacity: 0.8;
|
||
}
|
||
.\!shadow-md {
|
||
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a),
|
||
0 2px 4px -2px var(--tw-shadow-color, #0000001a) !important;
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
||
}
|
||
.shadow {
|
||
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a),
|
||
0 1px 2px -1px var(--tw-shadow-color, #0000001a);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.shadow-lg {
|
||
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a),
|
||
0 4px 6px -4px var(--tw-shadow-color, #0000001a);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.shadow-md {
|
||
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a),
|
||
0 2px 4px -2px var(--tw-shadow-color, #0000001a);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.shadow-sm {
|
||
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a),
|
||
0 1px 2px -1px var(--tw-shadow-color, #0000001a);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.shadow-xl {
|
||
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a),
|
||
0 8px 10px -6px var(--tw-shadow-color, #0000001a);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.ring-2 {
|
||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
|
||
calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.ring-base-content\/40 {
|
||
--tw-ring-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.ring-base-content\/40 {
|
||
--tw-ring-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 40%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.ring-primary {
|
||
--tw-ring-color: var(--color-primary);
|
||
}
|
||
.outline-hidden {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.outline-hidden {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.btn-ghost:not(.btn-active, :hover, :active:focus, :focus-visible) {
|
||
--btn-shadow: "";
|
||
--btn-bg: #0000;
|
||
--btn-border: #0000;
|
||
--btn-noise: none;
|
||
}
|
||
.btn-ghost:not(.btn-active, :hover, :active:focus, :focus-visible):not(
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-fg: currentColor;
|
||
outline-color: currentColor;
|
||
}
|
||
@media (hover: none) {
|
||
.btn-ghost:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-shadow: "";
|
||
--btn-bg: #0000;
|
||
--btn-border: #0000;
|
||
--btn-noise: none;
|
||
--btn-fg: currentColor;
|
||
}
|
||
}
|
||
.backdrop-blur-sm {
|
||
--tw-backdrop-blur: blur(var(--blur-sm));
|
||
-webkit-backdrop-filter: var(--tw-backdrop-blur)
|
||
var(--tw-backdrop-brightness) var(--tw-backdrop-contrast)
|
||
var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate)
|
||
var(--tw-backdrop-invert) var(--tw-backdrop-opacity)
|
||
var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
||
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
|
||
var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
|
||
var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
|
||
var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
|
||
var(--tw-backdrop-sepia);
|
||
}
|
||
.transition {
|
||
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, visibility,
|
||
content-visibility, overlay, pointer-events;
|
||
transition-timing-function: var(
|
||
--tw-ease,
|
||
var(--default-transition-timing-function)
|
||
);
|
||
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
||
}
|
||
.transition-all {
|
||
transition-property: all;
|
||
transition-timing-function: var(
|
||
--tw-ease,
|
||
var(--default-transition-timing-function)
|
||
);
|
||
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
||
}
|
||
.transition-opacity {
|
||
transition-property: opacity;
|
||
transition-timing-function: var(
|
||
--tw-ease,
|
||
var(--default-transition-timing-function)
|
||
);
|
||
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
||
}
|
||
.duration-200 {
|
||
--tw-duration: 0.2s;
|
||
transition-duration: 0.2s;
|
||
}
|
||
.duration-1000 {
|
||
--tw-duration: 1s;
|
||
transition-duration: 1s;
|
||
}
|
||
.btn-outline:not(
|
||
.btn-active,
|
||
:hover,
|
||
:active:focus,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled,
|
||
:checked
|
||
) {
|
||
--btn-shadow: "";
|
||
--btn-bg: #0000;
|
||
--btn-fg: var(--btn-color);
|
||
--btn-border: var(--btn-color);
|
||
--btn-noise: none;
|
||
}
|
||
@media (hover: none) {
|
||
.btn-outline:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled,
|
||
:checked
|
||
) {
|
||
--btn-shadow: "";
|
||
--btn-bg: #0000;
|
||
--btn-fg: var(--btn-color);
|
||
--btn-border: var(--btn-color);
|
||
--btn-noise: none;
|
||
}
|
||
}
|
||
.btn-soft:not(
|
||
.btn-active,
|
||
:hover,
|
||
:active:focus,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-shadow: "";
|
||
--btn-fg: var(--btn-color, var(--color-base-content));
|
||
--btn-bg: var(--btn-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn-soft:not(
|
||
.btn-active,
|
||
:hover,
|
||
:active:focus,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-bg: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-content)) 8%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.btn-soft:not(
|
||
.btn-active,
|
||
:hover,
|
||
:active:focus,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-border: var(--btn-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn-soft:not(
|
||
.btn-active,
|
||
:hover,
|
||
:active:focus,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-border: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-content)) 10%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.btn-soft:not(
|
||
.btn-active,
|
||
:hover,
|
||
:active:focus,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-noise: none;
|
||
}
|
||
@media (hover: none) {
|
||
.btn-soft:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-shadow: "";
|
||
--btn-fg: var(--btn-color, var(--color-base-content));
|
||
--btn-bg: var(--btn-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn-soft:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-bg: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-content)) 8%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.btn-soft:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-border: var(--btn-color, var(--color-base-content));
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.btn-soft:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-border: color-mix(
|
||
in oklab,
|
||
var(--btn-color, var(--color-base-content)) 10%,
|
||
var(--color-base-100)
|
||
);
|
||
}
|
||
}
|
||
.btn-soft:hover:not(
|
||
.btn-active,
|
||
:active,
|
||
:focus-visible,
|
||
:disabled,
|
||
[disabled],
|
||
.btn-disabled
|
||
) {
|
||
--btn-noise: none;
|
||
}
|
||
}
|
||
.indicator-center {
|
||
--indicator-s: 50%;
|
||
--indicator-e: 50%;
|
||
--indicator-x: -50%;
|
||
}
|
||
[dir="rtl"] .indicator-center {
|
||
--indicator-x: 50%;
|
||
}
|
||
.btn-lg {
|
||
--fontsize: 1.125rem;
|
||
--btn-p: 1.25rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 12);
|
||
}
|
||
.btn-sm {
|
||
--fontsize: 0.75rem;
|
||
--btn-p: 0.75rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 8);
|
||
}
|
||
.btn-xl {
|
||
--fontsize: 1.375rem;
|
||
--btn-p: 1.5rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 14);
|
||
}
|
||
.btn-xs {
|
||
--fontsize: 0.6875rem;
|
||
--btn-p: 0.5rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 6);
|
||
}
|
||
.indicator-bottom {
|
||
--indicator-t: auto;
|
||
--indicator-b: 0;
|
||
--indicator-y: 50%;
|
||
}
|
||
.pixelated {
|
||
image-rendering: pixelated;
|
||
image-rendering: -moz-crisp-edges;
|
||
image-rendering: crisp-edges;
|
||
}
|
||
.badge-error {
|
||
--badge-color: var(--color-error);
|
||
--badge-fg: var(--color-error-content);
|
||
}
|
||
.badge-primary {
|
||
--badge-color: var(--color-primary);
|
||
--badge-fg: var(--color-primary-content);
|
||
}
|
||
.badge-secondary {
|
||
--badge-color: var(--color-secondary);
|
||
--badge-fg: var(--color-secondary-content);
|
||
}
|
||
.badge-success {
|
||
--badge-color: var(--color-success);
|
||
--badge-fg: var(--color-success-content);
|
||
}
|
||
.badge-warning {
|
||
--badge-color: var(--color-warning);
|
||
--badge-fg: var(--color-warning-content);
|
||
}
|
||
.btn-error {
|
||
--btn-color: var(--color-error);
|
||
--btn-fg: var(--color-error-content);
|
||
}
|
||
.btn-primary {
|
||
--btn-color: var(--color-primary);
|
||
--btn-fg: var(--color-primary-content);
|
||
}
|
||
.btn-success {
|
||
--btn-color: var(--color-success);
|
||
--btn-fg: var(--color-success-content);
|
||
}
|
||
.btn-warning {
|
||
--btn-color: var(--color-warning);
|
||
--btn-fg: var(--color-warning-content);
|
||
}
|
||
.select-none {
|
||
-webkit-user-select: none;
|
||
user-select: none;
|
||
}
|
||
.input-error,
|
||
.input-error:focus,
|
||
.input-error:focus-within,
|
||
.textarea-error,
|
||
.textarea-error:focus,
|
||
.textarea-error:focus-within {
|
||
--input-color: var(--color-error);
|
||
}
|
||
.not-hover\:text-error:not(:hover) {
|
||
color: var(--color-error);
|
||
}
|
||
@media not all and (hover: hover) {
|
||
.not-hover\:text-error {
|
||
color: var(--color-error);
|
||
}
|
||
}
|
||
@media not all and (pointer: coarse) {
|
||
.not-touchscreen\:hidden {
|
||
display: none;
|
||
}
|
||
.not-touchscreen\:-translate-x-\[10\%\] {
|
||
--tw-translate-x: -10%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
}
|
||
@media not all and (display-mode: standalone) {
|
||
.not-pwa\:hidden {
|
||
display: none;
|
||
}
|
||
}
|
||
.not-stuck\:border-transparent:not(.stuck) {
|
||
border-color: #0000;
|
||
}
|
||
.peer-focus\:block:is(:where(.peer):focus ~ *) {
|
||
display: block;
|
||
}
|
||
.before\:-translate-x-1\/3:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: calc(calc(1 / 3 * 100%) * -1);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.before\:-translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: -25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.before\:translate-x-1\/3:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: calc(1 / 3 * 100%);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.before\:translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: 25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.first\:rounded-l-md:first-child {
|
||
border-top-left-radius: var(--radius-md);
|
||
border-bottom-left-radius: var(--radius-md);
|
||
}
|
||
.first\:border-l:first-child {
|
||
border-left-style: var(--tw-border-style);
|
||
border-left-width: 1px;
|
||
}
|
||
.last\:rounded-r-md:last-child {
|
||
border-top-right-radius: var(--radius-md);
|
||
border-bottom-right-radius: var(--radius-md);
|
||
}
|
||
@media (hover: hover) {
|
||
.hover\:bg-base-200:hover {
|
||
background-color: var(--color-base-200);
|
||
}
|
||
.hover\:text-primary:hover {
|
||
color: var(--color-primary);
|
||
}
|
||
.hover\:opacity-100:hover {
|
||
opacity: 1;
|
||
}
|
||
.hover\:brightness-95:hover {
|
||
--tw-brightness: brightness(95%);
|
||
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);
|
||
}
|
||
.hover\:brightness-105:hover {
|
||
--tw-brightness: brightness(105%);
|
||
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);
|
||
}
|
||
}
|
||
.focus\:ring-2:focus {
|
||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0
|
||
calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.focus\:ring-offset-2:focus {
|
||
--tw-ring-offset-width: 2px;
|
||
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
|
||
var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
||
}
|
||
.focus\:outline-hidden:focus {
|
||
--tw-outline-style: none;
|
||
outline-style: none;
|
||
}
|
||
@media (forced-colors: active) {
|
||
.focus\:outline-hidden:focus {
|
||
outline-offset: 2px;
|
||
outline: 2px solid #0000;
|
||
}
|
||
}
|
||
.disabled\:pointer-events-none:disabled {
|
||
pointer-events: none;
|
||
}
|
||
.disabled\:cursor-not-allowed:disabled {
|
||
cursor: not-allowed;
|
||
}
|
||
.disabled\:opacity-50:disabled,
|
||
.has-\[\:disabled\]\:opacity-50:has(:disabled) {
|
||
opacity: 0.5;
|
||
}
|
||
.aria-selected\:bg-accent[aria-selected="true"] {
|
||
background-color: var(--color-accent);
|
||
}
|
||
.aria-selected\:bg-base-300[aria-selected="true"] {
|
||
background-color: var(--color-base-300);
|
||
}
|
||
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
||
pointer-events: none;
|
||
}
|
||
.data-\[disabled\]\:opacity-50[data-disabled] {
|
||
opacity: 0.5;
|
||
}
|
||
.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
|
||
pointer-events: none;
|
||
}
|
||
.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
|
||
opacity: 0.5;
|
||
}
|
||
:is(
|
||
.\*\*\:data-\[slot\=command-input-wrapper\]\:h-12 *
|
||
)[data-slot="command-input-wrapper"] {
|
||
height: calc(var(--spacing) * 12);
|
||
}
|
||
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
|
||
animation: exit var(--tw-animation-duration, var(--tw-duration, 0.15s))
|
||
var(--tw-ease, ease) var(--tw-animation-delay, 0s)
|
||
var(--tw-animation-iteration-count, 1)
|
||
var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
|
||
}
|
||
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
|
||
--tw-exit-opacity: 0;
|
||
}
|
||
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
|
||
--tw-exit-scale: 0.95;
|
||
}
|
||
.data-\[state\=open\]\:animate-in[data-state="open"] {
|
||
animation: enter var(--tw-animation-duration, var(--tw-duration, 0.15s))
|
||
var(--tw-ease, ease) var(--tw-animation-delay, 0s)
|
||
var(--tw-animation-iteration-count, 1)
|
||
var(--tw-animation-direction, normal) var(--tw-animation-fill-mode, none);
|
||
}
|
||
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
|
||
--tw-enter-opacity: 0;
|
||
}
|
||
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
|
||
--tw-enter-scale: 0.95;
|
||
}
|
||
@media not all and (min-width: 400px) {
|
||
.max-\[400px\]\:hidden {
|
||
display: none;
|
||
}
|
||
}
|
||
@media not all and (min-width: 380px) {
|
||
.max-\[380px\]\:px-3 {
|
||
padding-inline: calc(var(--spacing) * 3);
|
||
}
|
||
}
|
||
@media not all and (min-width: 80rem) {
|
||
.max-xl\:before\:-translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: -25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.max-xl\:before\:translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: 25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
}
|
||
@media not all and (min-width: 64rem) {
|
||
.max-lg\:pointer-events-none {
|
||
pointer-events: none;
|
||
}
|
||
.max-lg\:invisible {
|
||
visibility: hidden;
|
||
}
|
||
}
|
||
@media not all and (min-width: 40rem) {
|
||
.max-sm\:absolute {
|
||
position: absolute;
|
||
}
|
||
.max-sm\:dropdown-left {
|
||
--anchor-h: left;
|
||
--anchor-v: span-bottom;
|
||
}
|
||
.max-sm\:dropdown-left .dropdown-content {
|
||
transform-origin: 100%;
|
||
inset-inline-end: 100%;
|
||
top: 0;
|
||
bottom: auto;
|
||
}
|
||
.max-sm\:dropdown-top {
|
||
--anchor-v: top;
|
||
}
|
||
.max-sm\:dropdown-top .dropdown-content {
|
||
transform-origin: bottom;
|
||
top: auto;
|
||
bottom: 100%;
|
||
}
|
||
.max-sm\:bottom-4 {
|
||
bottom: calc(var(--spacing) * 4);
|
||
}
|
||
.max-sm\:mt-1 {
|
||
margin-top: calc(var(--spacing) * 1);
|
||
}
|
||
.max-sm\:mt-4 {
|
||
margin-top: calc(var(--spacing) * 4);
|
||
}
|
||
.max-sm\:ml-2 {
|
||
margin-left: calc(var(--spacing) * 2);
|
||
}
|
||
.max-sm\:hidden {
|
||
display: none;
|
||
}
|
||
.max-sm\:size-6 {
|
||
width: calc(var(--spacing) * 6);
|
||
height: calc(var(--spacing) * 6);
|
||
}
|
||
.max-sm\:size-full {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.max-sm\:h-6 {
|
||
height: calc(var(--spacing) * 6);
|
||
}
|
||
.max-sm\:h-10 {
|
||
height: calc(var(--spacing) * 10);
|
||
}
|
||
.max-sm\:w-\[calc\(100\%-2rem\)\] {
|
||
width: calc(100% - 2rem);
|
||
}
|
||
.max-sm\:max-w-32 {
|
||
max-width: calc(var(--spacing) * 32);
|
||
}
|
||
.max-sm\:overflow-hidden {
|
||
overflow: hidden;
|
||
}
|
||
.max-sm\:overflow-x-hidden {
|
||
overflow-x: hidden;
|
||
}
|
||
.max-sm\:rounded-md {
|
||
border-radius: var(--radius-md);
|
||
}
|
||
.max-sm\:rounded-none {
|
||
border-radius: 0;
|
||
}
|
||
.max-sm\:px-1 {
|
||
padding-inline: calc(var(--spacing) * 1);
|
||
}
|
||
.max-sm\:px-3 {
|
||
padding-inline: calc(var(--spacing) * 3);
|
||
}
|
||
.max-sm\:px-4 {
|
||
padding-inline: calc(var(--spacing) * 4);
|
||
}
|
||
.max-sm\:py-5 {
|
||
padding-block: calc(var(--spacing) * 5);
|
||
}
|
||
.max-sm\:pb-4 {
|
||
padding-bottom: calc(var(--spacing) * 4);
|
||
}
|
||
.max-sm\:text-sm {
|
||
font-size: var(--text-sm);
|
||
line-height: var(--tw-leading, var(--text-sm--line-height));
|
||
}
|
||
.max-sm\:text-xl {
|
||
font-size: var(--text-xl);
|
||
line-height: var(--tw-leading, var(--text-xl--line-height));
|
||
}
|
||
.max-sm\:tabs-xs {
|
||
--tab-height: calc(var(--size-field, 0.25rem) * 6);
|
||
}
|
||
.max-sm\:tabs-xs :where(.tab) {
|
||
--tab-p: 0.375rem;
|
||
--tab-radius-min: calc(0.5rem - var(--border));
|
||
font-size: 0.75rem;
|
||
}
|
||
.max-sm\:before\:-translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: -25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.max-sm\:before\:translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: 25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
}
|
||
@media (min-width: 40rem) {
|
||
.sm\:right-4 {
|
||
right: calc(var(--spacing) * 4);
|
||
}
|
||
.sm\:left-1\/2 {
|
||
left: 50%;
|
||
}
|
||
.sm\:col-span-2 {
|
||
grid-column: span 2 / span 2;
|
||
}
|
||
.sm\:mt-\[1px\] {
|
||
margin-top: 1px;
|
||
}
|
||
.sm\:mb-3 {
|
||
margin-bottom: calc(var(--spacing) * 3);
|
||
}
|
||
.min-sm\:hidden {
|
||
display: none;
|
||
}
|
||
.sm\:flex {
|
||
display: flex;
|
||
}
|
||
.sm\:hidden {
|
||
display: none;
|
||
}
|
||
.sm\:size-6 {
|
||
width: calc(var(--spacing) * 6);
|
||
height: calc(var(--spacing) * 6);
|
||
}
|
||
.sm\:size-10 {
|
||
width: calc(var(--spacing) * 10);
|
||
height: calc(var(--spacing) * 10);
|
||
}
|
||
.sm\:size-12 {
|
||
width: calc(var(--spacing) * 12);
|
||
height: calc(var(--spacing) * 12);
|
||
}
|
||
.sm\:h-11\/12 {
|
||
height: 91.6667%;
|
||
}
|
||
.sm\:h-14 {
|
||
height: calc(var(--spacing) * 14);
|
||
}
|
||
.sm\:h-\[min\(50vw\,85vh\)\] {
|
||
height: min(50vw, 85vh);
|
||
}
|
||
.sm\:max-h-11\/12 {
|
||
max-height: 91.6667%;
|
||
}
|
||
.sm\:max-w-5xl {
|
||
max-width: var(--container-5xl);
|
||
}
|
||
.sm\:max-w-lg {
|
||
max-width: var(--container-lg);
|
||
}
|
||
.sm\:max-w-md {
|
||
max-width: var(--container-md);
|
||
}
|
||
.sm\:max-w-xs {
|
||
max-width: var(--container-xs);
|
||
}
|
||
.sm\:min-w-34 {
|
||
min-width: calc(var(--spacing) * 34);
|
||
}
|
||
.sm\:grow {
|
||
flex-grow: 1;
|
||
}
|
||
.sm\:-translate-x-1\/2 {
|
||
--tw-translate-x: -50%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.sm\:auto-cols-max {
|
||
grid-auto-columns: max-content;
|
||
}
|
||
.sm\:grid-flow-col {
|
||
grid-auto-flow: column;
|
||
}
|
||
.sm\:grid-cols-2 {
|
||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
}
|
||
.sm\:grid-cols-3 {
|
||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
}
|
||
.sm\:grid-cols-4 {
|
||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||
}
|
||
.sm\:grid-cols-6 {
|
||
grid-template-columns: repeat(6, minmax(0, 1fr));
|
||
}
|
||
.sm\:grid-cols-16 {
|
||
grid-template-columns: repeat(16, minmax(0, 1fr));
|
||
}
|
||
.sm\:grid-cols-\[auto_1fr\] {
|
||
grid-template-columns: auto 1fr;
|
||
}
|
||
.sm\:flex-col {
|
||
flex-direction: column;
|
||
}
|
||
.sm\:flex-row {
|
||
flex-direction: row;
|
||
}
|
||
.sm\:items-end {
|
||
align-items: flex-end;
|
||
}
|
||
.sm\:justify-between {
|
||
justify-content: space-between;
|
||
}
|
||
.sm\:justify-end {
|
||
justify-content: flex-end;
|
||
}
|
||
.sm\:gap-1 {
|
||
gap: calc(var(--spacing) * 1);
|
||
}
|
||
.sm\:gap-3 {
|
||
gap: calc(var(--spacing) * 3);
|
||
}
|
||
.sm\:gap-4 {
|
||
gap: calc(var(--spacing) * 4);
|
||
}
|
||
.sm\:gap-6 {
|
||
gap: calc(var(--spacing) * 6);
|
||
}
|
||
.sm\:overflow-x-hidden {
|
||
overflow-x: hidden;
|
||
}
|
||
.sm\:rounded-b-box {
|
||
border-bottom-right-radius: var(--radius-box);
|
||
border-bottom-left-radius: var(--radius-box);
|
||
}
|
||
.sm\:pb-3 {
|
||
padding-bottom: calc(var(--spacing) * 3);
|
||
}
|
||
.sm\:text-left {
|
||
text-align: left;
|
||
}
|
||
.sm\:text-2xl {
|
||
font-size: var(--text-2xl);
|
||
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
||
}
|
||
.sm\:text-3xl {
|
||
font-size: var(--text-3xl);
|
||
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
||
}
|
||
.sm\:text-5xl {
|
||
font-size: var(--text-5xl);
|
||
line-height: var(--tw-leading, var(--text-5xl--line-height));
|
||
}
|
||
.sm\:text-base {
|
||
font-size: var(--text-base);
|
||
line-height: var(--tw-leading, var(--text-base--line-height));
|
||
}
|
||
.sm\:text-lg {
|
||
font-size: var(--text-lg);
|
||
line-height: var(--tw-leading, var(--text-lg--line-height));
|
||
}
|
||
.sm\:text-xl {
|
||
font-size: var(--text-xl);
|
||
line-height: var(--tw-leading, var(--text-xl--line-height));
|
||
}
|
||
.sm\:shadow-xl {
|
||
--tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a),
|
||
0 8px 10px -6px var(--tw-shadow-color, #0000001a);
|
||
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow),
|
||
var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
.sm\:btn-lg {
|
||
--fontsize: 1.125rem;
|
||
--btn-p: 1.25rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 12);
|
||
}
|
||
.sm\:btn-md {
|
||
--fontsize: 0.875rem;
|
||
--btn-p: 1rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 10);
|
||
}
|
||
.sm\:btn-xl {
|
||
--fontsize: 1.375rem;
|
||
--btn-p: 1.5rem;
|
||
--size: calc(var(--size-field, 0.25rem) * 14);
|
||
}
|
||
}
|
||
@media (min-width: 48rem) {
|
||
.md\:max-w-lg {
|
||
max-width: var(--container-lg);
|
||
}
|
||
.md\:max-w-xl {
|
||
max-width: var(--container-xl);
|
||
}
|
||
.md\:grid-cols-6 {
|
||
grid-template-columns: repeat(6, minmax(0, 1fr));
|
||
}
|
||
.md\:grid-cols-16 {
|
||
grid-template-columns: repeat(16, minmax(0, 1fr));
|
||
}
|
||
.md\:grid-cols-\[320px_1fr\] {
|
||
grid-template-columns: 320px 1fr;
|
||
}
|
||
.md\:grid-cols-\[360px_1fr\] {
|
||
grid-template-columns: 360px 1fr;
|
||
}
|
||
.md\:flex-row {
|
||
flex-direction: row;
|
||
}
|
||
.md\:items-end {
|
||
align-items: flex-end;
|
||
}
|
||
.md\:justify-between {
|
||
justify-content: space-between;
|
||
}
|
||
}
|
||
@media (min-width: 64rem) {
|
||
.lg\:grid-cols-3 {
|
||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
}
|
||
.lg\:grid-cols-4 {
|
||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||
}
|
||
.lg\:before\:-translate-x-1\/3:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: calc(calc(1 / 3 * 100%) * -1);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.lg\:before\:translate-x-1\/3:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: calc(1 / 3 * 100%);
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
}
|
||
@media (min-width: 80rem) {
|
||
.xl\:col-span-1 {
|
||
grid-column: span 1 / span 1;
|
||
}
|
||
.xl\:grid-cols-4 {
|
||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||
}
|
||
.xl\:grid-cols-32 {
|
||
grid-template-columns: repeat(32, minmax(0, 1fr));
|
||
}
|
||
.xl\:before\:-translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: -25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
.xl\:before\:translate-x-1\/4:before {
|
||
content: var(--tw-content);
|
||
--tw-translate-x: 25%;
|
||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||
}
|
||
}
|
||
@media (min-width: 100rem) {
|
||
.min-\[100rem\]\:grid-cols-32 {
|
||
grid-template-columns: repeat(32, minmax(0, 1fr));
|
||
}
|
||
}
|
||
@media (pointer: coarse) {
|
||
.touchscreen\:hidden {
|
||
display: none;
|
||
}
|
||
}
|
||
@media (display-mode: standalone) {
|
||
.pwa\:hidden {
|
||
display: none;
|
||
}
|
||
}
|
||
.stuck\:border-base-content\/10.stuck {
|
||
border-color: var(--color-base-content);
|
||
}
|
||
@supports (color: color-mix(in lab, red, red)) {
|
||
.stuck\:border-base-content\/10.stuck {
|
||
border-color: color-mix(
|
||
in oklab,
|
||
var(--color-base-content) 10%,
|
||
transparent
|
||
);
|
||
}
|
||
}
|
||
.\[\&_\[data-command-group\]\]\:px-2 [data-command-group] {
|
||
padding-inline: calc(var(--spacing) * 2);
|
||
}
|
||
.\[\&_\[data-command-group\]\:not\(\[hidden\]\)_\~\[data-command-group\]\]\:pt-0
|
||
[data-command-group]:not([hidden])
|
||
~ [data-command-group] {
|
||
padding-top: calc(var(--spacing) * 0);
|
||
}
|
||
.\[\&_\[data-command-input-wrapper\]_svg\]\:h-5
|
||
[data-command-input-wrapper]
|
||
svg {
|
||
height: calc(var(--spacing) * 5);
|
||
}
|
||
.\[\&_\[data-command-input-wrapper\]_svg\]\:w-5
|
||
[data-command-input-wrapper]
|
||
svg {
|
||
width: calc(var(--spacing) * 5);
|
||
}
|
||
.\[\&_\[data-command-input\]\]\:h-12 [data-command-input] {
|
||
height: calc(var(--spacing) * 12);
|
||
}
|
||
.\[\&_\[data-command-item\]\]\:px-2 [data-command-item] {
|
||
padding-inline: calc(var(--spacing) * 2);
|
||
}
|
||
.\[\&_\[data-command-item\]\]\:py-3 [data-command-item] {
|
||
padding-block: calc(var(--spacing) * 3);
|
||
}
|
||
.\[\&_\[data-command-item\]_svg\]\:h-5 [data-command-item] svg {
|
||
height: calc(var(--spacing) * 5);
|
||
}
|
||
.\[\&_\[data-command-item\]_svg\]\:w-5 [data-command-item] svg {
|
||
width: calc(var(--spacing) * 5);
|
||
}
|
||
.\[\&_input\]\:disabled\:cursor-not-allowed input:disabled {
|
||
cursor: not-allowed;
|
||
}
|
||
.\[\&_svg\]\:pointer-events-none svg {
|
||
pointer-events: none;
|
||
}
|
||
.\[\&_svg\]\:shrink-0 svg {
|
||
flex-shrink: 0;
|
||
}
|
||
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*="size-"]) {
|
||
width: calc(var(--spacing) * 4);
|
||
height: calc(var(--spacing) * 4);
|
||
}
|
||
}
|
||
@property --tw-animation-delay {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0s;
|
||
}
|
||
@property --tw-animation-direction {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: normal;
|
||
}
|
||
@property --tw-animation-duration {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-animation-fill-mode {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: none;
|
||
}
|
||
@property --tw-animation-iteration-count {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 1;
|
||
}
|
||
@property --tw-enter-blur {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-enter-opacity {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 1;
|
||
}
|
||
@property --tw-enter-rotate {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-enter-scale {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 1;
|
||
}
|
||
@property --tw-enter-translate-x {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-enter-translate-y {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-exit-blur {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-exit-opacity {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 1;
|
||
}
|
||
@property --tw-exit-rotate {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-exit-scale {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 1;
|
||
}
|
||
@property --tw-exit-translate-x {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-exit-translate-y {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@keyframes progress {
|
||
50% {
|
||
background-position-x: -115%;
|
||
}
|
||
}
|
||
@keyframes radio {
|
||
0% {
|
||
padding: 5px;
|
||
}
|
||
50% {
|
||
padding: 3px;
|
||
}
|
||
}
|
||
@keyframes toast {
|
||
0% {
|
||
opacity: 0;
|
||
scale: 0.9;
|
||
}
|
||
to {
|
||
opacity: 1;
|
||
scale: 1;
|
||
}
|
||
}
|
||
@keyframes dropdown {
|
||
0% {
|
||
opacity: 0;
|
||
}
|
||
}
|
||
@keyframes rating {
|
||
0%,
|
||
40% {
|
||
filter: brightness(1.05) contrast(1.05);
|
||
scale: 1.1;
|
||
}
|
||
}
|
||
@keyframes skeleton {
|
||
0% {
|
||
background-position: 150%;
|
||
}
|
||
to {
|
||
background-position: -50%;
|
||
}
|
||
}
|
||
@property --tw-translate-x {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-translate-y {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-translate-z {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-rotate-x {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-rotate-y {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-rotate-z {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-skew-x {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-skew-y {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-border-style {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: solid;
|
||
}
|
||
@property --tw-leading {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-font-weight {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-tracking {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-shadow {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0 0 #0000;
|
||
}
|
||
@property --tw-shadow-color {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-shadow-alpha {
|
||
syntax: "<percentage>";
|
||
inherits: false;
|
||
initial-value: 100%;
|
||
}
|
||
@property --tw-inset-shadow {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0 0 #0000;
|
||
}
|
||
@property --tw-inset-shadow-color {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-inset-shadow-alpha {
|
||
syntax: "<percentage>";
|
||
inherits: false;
|
||
initial-value: 100%;
|
||
}
|
||
@property --tw-ring-color {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-ring-shadow {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0 0 #0000;
|
||
}
|
||
@property --tw-inset-ring-color {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-inset-ring-shadow {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0 0 #0000;
|
||
}
|
||
@property --tw-ring-inset {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-ring-offset-width {
|
||
syntax: "<length>";
|
||
inherits: false;
|
||
initial-value: 0;
|
||
}
|
||
@property --tw-ring-offset-color {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: #fff;
|
||
}
|
||
@property --tw-ring-offset-shadow {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: 0 0 #0000;
|
||
}
|
||
@property --tw-backdrop-blur {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-brightness {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-contrast {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-grayscale {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-hue-rotate {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-invert {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-opacity {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-saturate {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-backdrop-sepia {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-duration {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-content {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: "";
|
||
}
|
||
@property --tw-blur {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-brightness {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-contrast {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-grayscale {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-hue-rotate {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-invert {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-opacity {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-saturate {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-sepia {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-drop-shadow {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-drop-shadow-color {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-drop-shadow-alpha {
|
||
syntax: "<percentage>";
|
||
inherits: false;
|
||
initial-value: 100%;
|
||
}
|
||
@property --tw-drop-shadow-size {
|
||
syntax: "*";
|
||
inherits: false;
|
||
}
|
||
@property --tw-outline-style {
|
||
syntax: "*";
|
||
inherits: false;
|
||
initial-value: solid;
|
||
}
|
||
@keyframes pulse {
|
||
50% {
|
||
opacity: 0.5;
|
||
}
|
||
}
|
||
@keyframes bounce {
|
||
0%,
|
||
to {
|
||
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
||
transform: translateY(-25%);
|
||
}
|
||
50% {
|
||
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
||
transform: none;
|
||
}
|
||
}
|
||
@keyframes enter {
|
||
0% {
|
||
opacity: var(--tw-enter-opacity, 1);
|
||
transform: translate3d(
|
||
var(--tw-enter-translate-x, 0),
|
||
var(--tw-enter-translate-y, 0),
|
||
0
|
||
)
|
||
scale3d(
|
||
var(--tw-enter-scale, 1),
|
||
var(--tw-enter-scale, 1),
|
||
var(--tw-enter-scale, 1)
|
||
)
|
||
rotate(var(--tw-enter-rotate, 0));
|
||
filter: blur(var(--tw-enter-blur, 0));
|
||
}
|
||
}
|
||
@keyframes exit {
|
||
to {
|
||
opacity: var(--tw-exit-opacity, 1);
|
||
transform: translate3d(
|
||
var(--tw-exit-translate-x, 0),
|
||
var(--tw-exit-translate-y, 0),
|
||
0
|
||
)
|
||
scale3d(
|
||
var(--tw-exit-scale, 1),
|
||
var(--tw-exit-scale, 1),
|
||
var(--tw-exit-scale, 1)
|
||
)
|
||
rotate(var(--tw-exit-rotate, 0));
|
||
filter: blur(var(--tw-exit-blur, 0));
|
||
}
|
||
}
|
||
@keyframes caret-blink {
|
||
0%,
|
||
70%,
|
||
to {
|
||
opacity: 1;
|
||
}
|
||
20%,
|
||
50% {
|
||
opacity: 0;
|
||
}
|
||
}
|