Last active
September 22, 2025 19:11
-
-
Save pazteddy/4373a3763d43f664124019314e089bc1 to your computer and use it in GitHub Desktop.
Nuevos estilos para NoteEditor siguiendo los lineamientos de HyperUI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @page "/note-editor" | |
| @page "/note-editor/{NoteId:int}" | |
| @inject ISender Sender | |
| @inject NavigationManager NavigationManager; | |
| <div class="mx-auto max-w-screen-xl px-4 py-16 sm:px-6 lg:px-8"> | |
| <div class="mx-auto max-w-lg"> | |
| @if (isEditMode && Note is not null) | |
| { | |
| <PageTitle>Editar nota</PageTitle> | |
| <div class="mb-8"> | |
| <h1 class="text-center text-2xl font-bold text-indigo-600 sm:text-3xl">Editar Nota</h1> | |
| <p class="mx-auto mt-4 max-w-md text-center text-gray-500"> | |
| Editando: @Note.Title | |
| </p> | |
| </div> | |
| <div class="mb-6"> | |
| <a href="/notes" | |
| class="inline-flex items-center gap-2 rounded border border-indigo-600 bg-indigo-600 px-8 py-3 text-white focus:outline-none focus:ring active:text-indigo-500 transition-colors"> | |
| <svg class="size-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path> | |
| </svg> | |
| Volver a notas | |
| </a> | |
| </div> | |
| } | |
| else | |
| { | |
| <PageTitle>Crear nota</PageTitle> | |
| <div class="mb-8"> | |
| <h1 class="text-center text-2xl font-bold text-indigo-600 sm:text-3xl">Crear Nueva Nota</h1> | |
| <p class="mx-auto mt-4 max-w-md text-center text-gray-500"> | |
| Comparte tus ideas y conocimientos | |
| </p> | |
| </div> | |
| } | |
| @if (Note is not null) | |
| { | |
| <EditForm Model="Note" OnSubmit="HandleSubmit" FormName="NoteEditorForm" | |
| class="mb-0 space-y-4 rounded-lg p-4 shadow-lg sm:p-6 lg:p-8 bg-white"> | |
| <div> | |
| <label for="title" class="sr-only">Título</label> | |
| <div class="relative"> | |
| <InputText @bind-Value="Note.Title" placeholder="Título de la nota" id="title" | |
| class="w-full rounded-lg border-gray-200 p-4 pe-12 text-sm shadow-sm focus:border-indigo-500 focus:ring-indigo-500" /> | |
| <span class="absolute inset-y-0 end-0 grid place-content-center px-4"> | |
| <svg class="size-4 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" | |
| d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"> | |
| </path> | |
| </svg> | |
| </span> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="content" class="sr-only">Contenido</label> | |
| <InputTextArea @bind-Value="Note.Content" placeholder="Escribe el contenido de tu nota aquí..." | |
| id="content" rows="6" | |
| class="w-full rounded-lg border-gray-200 p-4 text-sm shadow-sm focus:border-indigo-500 focus:ring-indigo-500 resize-none" /> | |
| </div> | |
| <div class="grid grid-cols-1 gap-4 sm:grid-cols-2"> | |
| <div> | |
| <label for="publishDate" class="block text-sm font-medium text-gray-700 mb-2">Fecha de | |
| publicación</label> | |
| <InputDate @bind-Value="Note.PublishedAt" id="publishDate" | |
| class="w-full rounded-lg border-gray-200 p-3 text-sm shadow-sm focus:border-indigo-500 focus:ring-indigo-500" /> | |
| </div> | |
| <div class="flex items-center justify-center"> | |
| <label | |
| class="flex cursor-pointer items-start gap-4 rounded-lg border border-gray-200 p-4 transition hover:bg-gray-50"> | |
| <div class="flex items-center"> | |
| <InputCheckbox @bind-Value="Note.IsPublished" | |
| class="size-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500" /> | |
| </div> | |
| <div> | |
| <strong class="font-medium text-gray-900">Publicar nota</strong> | |
| <p class="mt-1 text-xs text-gray-700">La nota será visible públicamente</p> | |
| </div> | |
| </label> | |
| </div> | |
| </div> | |
| <button type="submit" | |
| class="block w-full rounded-lg bg-indigo-600 px-5 py-3 text-sm font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring focus:ring-indigo-300 active:bg-indigo-800 transition-colors"> | |
| @(isEditMode ? "Actualizar Nota" : "Crear Nota") | |
| </button> | |
| </EditForm> | |
| @if (isEditMode) | |
| { | |
| <form @onsubmit="DeleteNote" @formname="DeleteNoteForm" method="POST" class="mt-4"> | |
| <button type="submit" | |
| class="block w-full rounded-lg bg-red-600 px-5 py-3 text-sm font-medium text-white hover:bg-red-700 focus:outline-none focus:ring focus:ring-red-300 active:bg-red-800 transition-colors"> | |
| <svg class="inline-block size-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" | |
| d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"> | |
| </path> | |
| </svg> | |
| Eliminar Nota | |
| </button> | |
| <AntiforgeryToken /> | |
| </form> | |
| } | |
| } | |
| @if (!string.IsNullOrEmpty(errorMessage)) | |
| { | |
| <div class="mt-4 rounded-lg bg-red-50 p-4 border border-red-200"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <svg class="size-5 text-red-400" fill="none" stroke="currentColor" viewBox="0 0 24 24"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" | |
| d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L4.08 16.5c-.77.833.192 2.5 1.732 2.5z"> | |
| </path> | |
| </svg> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-red-700">@errorMessage</p> | |
| </div> | |
| </div> | |
| </div> | |
| } | |
| </div> | |
| </div> | |
| @code { | |
| private bool isEditMode => NoteId != null; | |
| private string errorMessage = string.Empty; | |
| [SupplyParameterFromForm] | |
| private NoteModel? Note { get; set; } | |
| [Parameter] | |
| public int? NoteId { get; set; } | |
| protected override async Task OnParametersSetAsync() | |
| { | |
| if (NoteId is not null) | |
| { | |
| var result = await Sender.Send(new GetNoteByIdQuery { Id = (int)NoteId }); | |
| if (result.IsSuccessful) | |
| { | |
| Note ??= result.Value.Adapt<NoteModel>(); | |
| Note.Id = (int)NoteId; | |
| } | |
| else | |
| { | |
| SetErrorMessage(result.ErrorMessage); | |
| } | |
| } | |
| else | |
| { | |
| Note ??= new(); | |
| } | |
| } | |
| private async Task HandleSubmit() | |
| { | |
| if (isEditMode) | |
| { | |
| var command = Note.Adapt<UpdateNoteCommand>(); | |
| var result = await Sender.Send(command); | |
| if (result.IsSuccessful) | |
| { | |
| Note = result.Value.Adapt<NoteModel>(); | |
| Console.WriteLine("Nota actualizada satistactoriamente"); | |
| NavigationManager.NavigateTo("/notes"); | |
| } | |
| else | |
| { | |
| SetErrorMessage(result.ErrorMessage); | |
| } | |
| } | |
| else | |
| { | |
| var command = Note.Adapt<CreateNoteCommand>(); | |
| var result = await Sender.Send(command); | |
| if (result.IsSuccessful) | |
| { | |
| Note = result.Adapt<NoteModel>(); | |
| Console.WriteLine("Nota creada satistactoriamente"); | |
| } | |
| else | |
| { | |
| SetErrorMessage(result.ErrorMessage); | |
| } | |
| } | |
| } | |
| private async Task DeleteNote() | |
| { | |
| if (NoteId is null) | |
| { | |
| return; | |
| } | |
| var command = new DeleteNoteCommand { Id = (int)NoteId }; | |
| var result = await Sender.Send(command); | |
| if (result.IsSuccessful) | |
| { | |
| Console.WriteLine("Nota eliminada satisfactoriamente"); | |
| NavigationManager.NavigateTo("/notes"); | |
| } | |
| else | |
| { | |
| Console.WriteLine("Sucedio un error al eliminar la nota"); | |
| } | |
| } | |
| private void SetErrorMessage(string? error) | |
| { | |
| errorMessage = error ?? string.Empty; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Por favor cambia los estilos para que el formulario visualmente sea lo mas profesional posible, | |
| pero siguiendo los lineamientos de estos componentes: | |
| https://www.hyperui.dev/ | |
| Por favor no utilices estilos personalizados, solo los de Tailwind |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */ | |
| @layer properties; | |
| @layer theme, base, components, utilities; | |
| @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-50: oklch(97.1% 0.013 17.38); | |
| --color-red-200: oklch(88.5% 0.062 18.334); | |
| --color-red-300: oklch(80.8% 0.114 19.571); | |
| --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-red-700: oklch(50.5% 0.213 27.518); | |
| --color-red-800: oklch(44.4% 0.177 26.899); | |
| --color-green-100: oklch(96.2% 0.044 156.743); | |
| --color-green-600: oklch(62.7% 0.194 149.214); | |
| --color-teal-600: oklch(60% 0.118 184.704); | |
| --color-blue-400: oklch(70.7% 0.165 254.624); | |
| --color-blue-500: oklch(62.3% 0.214 259.815); | |
| --color-blue-600: oklch(54.6% 0.245 262.881); | |
| --color-blue-700: oklch(48.8% 0.243 264.376); | |
| --color-blue-800: oklch(42.4% 0.199 265.638); | |
| --color-blue-900: oklch(37.9% 0.146 265.522); | |
| --color-indigo-200: oklch(87% 0.065 274.039); | |
| --color-indigo-300: oklch(78.5% 0.115 274.713); | |
| --color-indigo-500: oklch(58.5% 0.233 277.117); | |
| --color-indigo-600: oklch(51.1% 0.262 276.966); | |
| --color-indigo-700: oklch(45.7% 0.24 277.023); | |
| --color-indigo-800: oklch(39.8% 0.195 277.366); | |
| --color-gray-50: oklch(98.5% 0.002 247.839); | |
| --color-gray-100: oklch(96.7% 0.003 264.542); | |
| --color-gray-200: oklch(92.8% 0.006 264.531); | |
| --color-gray-300: oklch(87.2% 0.01 258.338); | |
| --color-gray-400: oklch(70.7% 0.022 261.325); | |
| --color-gray-500: oklch(55.1% 0.027 264.364); | |
| --color-gray-600: oklch(44.6% 0.03 256.802); | |
| --color-gray-700: oklch(37.3% 0.034 259.733); | |
| --color-gray-800: oklch(27.8% 0.033 256.848); | |
| --color-gray-900: oklch(21% 0.034 264.665); | |
| --color-black: #000; | |
| --color-white: #fff; | |
| --spacing: 0.25rem; | |
| --breakpoint-xl: 80rem; | |
| --container-md: 28rem; | |
| --container-lg: 32rem; | |
| --container-4xl: 56rem; | |
| --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: calc(1.5 / 1); | |
| --text-lg: 1.125rem; | |
| --text-lg--line-height: calc(1.75 / 1.125); | |
| --text-2xl: 1.5rem; | |
| --text-2xl--line-height: calc(2 / 1.5); | |
| --text-3xl: 1.875rem; | |
| --text-3xl--line-height: calc(2.25 / 1.875); | |
| --text-4xl: 2.25rem; | |
| --text-4xl--line-height: calc(2.5 / 2.25); | |
| --font-weight-medium: 500; | |
| --font-weight-semibold: 600; | |
| --font-weight-bold: 700; | |
| --tracking-tight: -0.025em; | |
| --leading-tight: 1.25; | |
| --leading-relaxed: 1.625; | |
| --radius-sm: 0.25rem; | |
| --radius-md: 0.375rem; | |
| --radius-lg: 0.5rem; | |
| --radius-xl: 0.75rem; | |
| --radius-2xl: 1rem; | |
| --ease-out: cubic-bezier(0, 0, 0.2, 1); | |
| --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); | |
| --default-transition-duration: 150ms; | |
| --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, ::file-selector-button { | |
| box-sizing: border-box; | |
| margin: 0; | |
| padding: 0; | |
| border: 0 solid; | |
| } | |
| html, :host { | |
| line-height: 1.5; | |
| -webkit-text-size-adjust: 100%; | |
| tab-size: 4; | |
| 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 { | |
| font-size: 75%; | |
| line-height: 0; | |
| position: relative; | |
| vertical-align: baseline; | |
| } | |
| 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 { | |
| display: block; | |
| vertical-align: middle; | |
| } | |
| img, video { | |
| max-width: 100%; | |
| height: auto; | |
| } | |
| button, input, select, optgroup, textarea, ::file-selector-button { | |
| font: inherit; | |
| font-feature-settings: inherit; | |
| font-variation-settings: inherit; | |
| letter-spacing: inherit; | |
| color: inherit; | |
| border-radius: 0; | |
| background-color: transparent; | |
| opacity: 1; | |
| } | |
| :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)) { | |
| 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, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-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"]), ::file-selector-button { | |
| appearance: button; | |
| } | |
| ::-webkit-inner-spin-button, ::-webkit-outer-spin-button { | |
| height: auto; | |
| } | |
| [hidden]:where(:not([hidden="until-found"])) { | |
| display: none !important; | |
| } | |
| } | |
| @layer utilities { | |
| .collapse { | |
| visibility: collapse; | |
| } | |
| .invisible { | |
| visibility: hidden; | |
| } | |
| .visible { | |
| visibility: visible; | |
| } | |
| .sr-only { | |
| position: absolute; | |
| width: 1px; | |
| height: 1px; | |
| padding: 0; | |
| margin: -1px; | |
| overflow: hidden; | |
| clip-path: inset(50%); | |
| white-space: nowrap; | |
| border-width: 0; | |
| } | |
| .absolute { | |
| position: absolute; | |
| } | |
| .fixed { | |
| position: fixed; | |
| } | |
| .relative { | |
| position: relative; | |
| } | |
| .static { | |
| position: static; | |
| } | |
| .sticky { | |
| position: sticky; | |
| } | |
| .inset-y-0 { | |
| inset-block: calc(var(--spacing) * 0); | |
| } | |
| .start-0 { | |
| inset-inline-start: calc(var(--spacing) * 0); | |
| } | |
| .start-50 { | |
| inset-inline-start: calc(var(--spacing) * 50); | |
| } | |
| .start-100 { | |
| inset-inline-start: calc(var(--spacing) * 100); | |
| } | |
| .-end-full { | |
| inset-inline-end: -100%; | |
| } | |
| .end-0 { | |
| inset-inline-end: calc(var(--spacing) * 0); | |
| } | |
| .end-50 { | |
| inset-inline-end: calc(var(--spacing) * 50); | |
| } | |
| .end-100 { | |
| inset-inline-end: calc(var(--spacing) * 100); | |
| } | |
| .top-0 { | |
| top: calc(var(--spacing) * 0); | |
| } | |
| .top-50 { | |
| top: calc(var(--spacing) * 50); | |
| } | |
| .top-100 { | |
| top: calc(var(--spacing) * 100); | |
| } | |
| .bottom-0 { | |
| bottom: calc(var(--spacing) * 0); | |
| } | |
| .bottom-50 { | |
| bottom: calc(var(--spacing) * 50); | |
| } | |
| .bottom-100 { | |
| bottom: calc(var(--spacing) * 100); | |
| } | |
| .order-0 { | |
| order: 0; | |
| } | |
| .order-1 { | |
| order: 1; | |
| } | |
| .order-2 { | |
| order: 2; | |
| } | |
| .order-3 { | |
| order: 3; | |
| } | |
| .order-4 { | |
| order: 4; | |
| } | |
| .order-5 { | |
| order: 5; | |
| } | |
| .order-first { | |
| order: -9999; | |
| } | |
| .order-last { | |
| order: 9999; | |
| } | |
| .col-1 { | |
| grid-column: 1; | |
| } | |
| .col-2 { | |
| grid-column: 2; | |
| } | |
| .col-3 { | |
| grid-column: 3; | |
| } | |
| .col-4 { | |
| grid-column: 4; | |
| } | |
| .col-5 { | |
| grid-column: 5; | |
| } | |
| .col-6 { | |
| grid-column: 6; | |
| } | |
| .col-7 { | |
| grid-column: 7; | |
| } | |
| .col-8 { | |
| grid-column: 8; | |
| } | |
| .col-9 { | |
| grid-column: 9; | |
| } | |
| .col-10 { | |
| grid-column: 10; | |
| } | |
| .col-11 { | |
| grid-column: 11; | |
| } | |
| .col-12 { | |
| grid-column: 12; | |
| } | |
| .col-auto { | |
| grid-column: auto; | |
| } | |
| .float-end { | |
| float: inline-end; | |
| } | |
| .float-none { | |
| float: none; | |
| } | |
| .float-start { | |
| float: inline-start; | |
| } | |
| .container { | |
| width: 100%; | |
| @media (width >= 40rem) { | |
| max-width: 40rem; | |
| } | |
| @media (width >= 48rem) { | |
| max-width: 48rem; | |
| } | |
| @media (width >= 64rem) { | |
| max-width: 64rem; | |
| } | |
| @media (width >= 80rem) { | |
| max-width: 80rem; | |
| } | |
| @media (width >= 96rem) { | |
| max-width: 96rem; | |
| } | |
| } | |
| .m-0 { | |
| margin: calc(var(--spacing) * 0); | |
| } | |
| .m-1 { | |
| margin: calc(var(--spacing) * 1); | |
| } | |
| .m-2 { | |
| margin: calc(var(--spacing) * 2); | |
| } | |
| .m-3 { | |
| margin: calc(var(--spacing) * 3); | |
| } | |
| .m-4 { | |
| margin: calc(var(--spacing) * 4); | |
| } | |
| .m-5 { | |
| margin: calc(var(--spacing) * 5); | |
| } | |
| .m-auto { | |
| margin: auto; | |
| } | |
| .mx-0 { | |
| margin-inline: calc(var(--spacing) * 0); | |
| } | |
| .mx-1 { | |
| margin-inline: calc(var(--spacing) * 1); | |
| } | |
| .mx-2 { | |
| margin-inline: calc(var(--spacing) * 2); | |
| } | |
| .mx-3 { | |
| margin-inline: calc(var(--spacing) * 3); | |
| } | |
| .mx-4 { | |
| margin-inline: calc(var(--spacing) * 4); | |
| } | |
| .mx-5 { | |
| margin-inline: calc(var(--spacing) * 5); | |
| } | |
| .mx-auto { | |
| margin-inline: auto; | |
| } | |
| .my-0 { | |
| margin-block: calc(var(--spacing) * 0); | |
| } | |
| .my-1 { | |
| margin-block: calc(var(--spacing) * 1); | |
| } | |
| .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-5 { | |
| margin-block: calc(var(--spacing) * 5); | |
| } | |
| .my-auto { | |
| margin-block: auto; | |
| } | |
| .ms-0 { | |
| margin-inline-start: calc(var(--spacing) * 0); | |
| } | |
| .ms-1 { | |
| margin-inline-start: calc(var(--spacing) * 1); | |
| } | |
| .ms-2 { | |
| margin-inline-start: calc(var(--spacing) * 2); | |
| } | |
| .ms-3 { | |
| margin-inline-start: calc(var(--spacing) * 3); | |
| } | |
| .ms-4 { | |
| margin-inline-start: calc(var(--spacing) * 4); | |
| } | |
| .ms-5 { | |
| margin-inline-start: calc(var(--spacing) * 5); | |
| } | |
| .ms-auto { | |
| margin-inline-start: auto; | |
| } | |
| .me-0 { | |
| margin-inline-end: calc(var(--spacing) * 0); | |
| } | |
| .me-1 { | |
| margin-inline-end: calc(var(--spacing) * 1); | |
| } | |
| .me-2 { | |
| margin-inline-end: calc(var(--spacing) * 2); | |
| } | |
| .me-3 { | |
| margin-inline-end: calc(var(--spacing) * 3); | |
| } | |
| .me-4 { | |
| margin-inline-end: calc(var(--spacing) * 4); | |
| } | |
| .me-5 { | |
| margin-inline-end: calc(var(--spacing) * 5); | |
| } | |
| .me-auto { | |
| margin-inline-end: auto; | |
| } | |
| .mt-0 { | |
| margin-top: calc(var(--spacing) * 0); | |
| } | |
| .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-auto { | |
| margin-top: auto; | |
| } | |
| .mr-2 { | |
| margin-right: calc(var(--spacing) * 2); | |
| } | |
| .mb-0 { | |
| margin-bottom: calc(var(--spacing) * 0); | |
| } | |
| .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-5 { | |
| margin-bottom: calc(var(--spacing) * 5); | |
| } | |
| .mb-6 { | |
| margin-bottom: calc(var(--spacing) * 6); | |
| } | |
| .mb-8 { | |
| margin-bottom: calc(var(--spacing) * 8); | |
| } | |
| .mb-auto { | |
| margin-bottom: auto; | |
| } | |
| .-ml-1 { | |
| margin-left: calc(var(--spacing) * -1); | |
| } | |
| .ml-3 { | |
| margin-left: calc(var(--spacing) * 3); | |
| } | |
| .line-clamp-2 { | |
| overflow: hidden; | |
| display: -webkit-box; | |
| -webkit-box-orient: vertical; | |
| -webkit-line-clamp: 2; | |
| } | |
| .line-clamp-6 { | |
| overflow: hidden; | |
| display: -webkit-box; | |
| -webkit-box-orient: vertical; | |
| -webkit-line-clamp: 6; | |
| } | |
| .block { | |
| display: block; | |
| } | |
| .contents { | |
| display: contents; | |
| } | |
| .flex { | |
| display: flex; | |
| } | |
| .grid { | |
| display: grid; | |
| } | |
| .hidden { | |
| display: none; | |
| } | |
| .inline { | |
| display: inline; | |
| } | |
| .inline-block { | |
| display: inline-block; | |
| } | |
| .inline-flex { | |
| display: inline-flex; | |
| } | |
| .table { | |
| display: table; | |
| } | |
| .table-cell { | |
| display: table-cell; | |
| } | |
| .table-row { | |
| display: table-row; | |
| } | |
| .size-4 { | |
| width: calc(var(--spacing) * 4); | |
| height: calc(var(--spacing) * 4); | |
| } | |
| .size-5 { | |
| width: calc(var(--spacing) * 5); | |
| height: calc(var(--spacing) * 5); | |
| } | |
| .h-3 { | |
| height: calc(var(--spacing) * 3); | |
| } | |
| .h-3\.5 { | |
| height: calc(var(--spacing) * 3.5); | |
| } | |
| .h-4 { | |
| height: calc(var(--spacing) * 4); | |
| } | |
| .h-5 { | |
| height: calc(var(--spacing) * 5); | |
| } | |
| .h-6 { | |
| height: calc(var(--spacing) * 6); | |
| } | |
| .h-7 { | |
| height: calc(var(--spacing) * 7); | |
| } | |
| .h-8 { | |
| height: calc(var(--spacing) * 8); | |
| } | |
| .h-12 { | |
| height: calc(var(--spacing) * 12); | |
| } | |
| .h-16 { | |
| height: calc(var(--spacing) * 16); | |
| } | |
| .h-24 { | |
| height: calc(var(--spacing) * 24); | |
| } | |
| .h-25 { | |
| height: calc(var(--spacing) * 25); | |
| } | |
| .h-50 { | |
| height: calc(var(--spacing) * 50); | |
| } | |
| .h-64 { | |
| height: calc(var(--spacing) * 64); | |
| } | |
| .h-75 { | |
| height: calc(var(--spacing) * 75); | |
| } | |
| .h-100 { | |
| height: calc(var(--spacing) * 100); | |
| } | |
| .h-auto { | |
| height: auto; | |
| } | |
| .min-h-screen { | |
| min-height: 100vh; | |
| } | |
| .w-3 { | |
| width: calc(var(--spacing) * 3); | |
| } | |
| .w-3\.5 { | |
| width: calc(var(--spacing) * 3.5); | |
| } | |
| .w-4 { | |
| width: calc(var(--spacing) * 4); | |
| } | |
| .w-5 { | |
| width: calc(var(--spacing) * 5); | |
| } | |
| .w-6 { | |
| width: calc(var(--spacing) * 6); | |
| } | |
| .w-7 { | |
| width: calc(var(--spacing) * 7); | |
| } | |
| .w-12 { | |
| width: calc(var(--spacing) * 12); | |
| } | |
| .w-24 { | |
| width: calc(var(--spacing) * 24); | |
| } | |
| .w-25 { | |
| width: calc(var(--spacing) * 25); | |
| } | |
| .w-50 { | |
| width: calc(var(--spacing) * 50); | |
| } | |
| .w-75 { | |
| width: calc(var(--spacing) * 75); | |
| } | |
| .w-100 { | |
| width: calc(var(--spacing) * 100); | |
| } | |
| .w-auto { | |
| width: auto; | |
| } | |
| .w-full { | |
| width: 100%; | |
| } | |
| .max-w-4xl { | |
| max-width: var(--container-4xl); | |
| } | |
| .max-w-7xl { | |
| max-width: var(--container-7xl); | |
| } | |
| .max-w-lg { | |
| max-width: var(--container-lg); | |
| } | |
| .max-w-md { | |
| max-width: var(--container-md); | |
| } | |
| .max-w-screen-xl { | |
| max-width: var(--breakpoint-xl); | |
| } | |
| .flex-1 { | |
| flex: 1; | |
| } | |
| .flex-shrink { | |
| flex-shrink: 1; | |
| } | |
| .flex-shrink-0 { | |
| flex-shrink: 0; | |
| } | |
| .flex-shrink-1 { | |
| flex-shrink: 1; | |
| } | |
| .shrink { | |
| flex-shrink: 1; | |
| } | |
| .flex-grow { | |
| flex-grow: 1; | |
| } | |
| .flex-grow-0 { | |
| flex-grow: 0; | |
| } | |
| .flex-grow-1 { | |
| flex-grow: 1; | |
| } | |
| .grow { | |
| flex-grow: 1; | |
| } | |
| .caption-top { | |
| caption-side: top; | |
| } | |
| .border-collapse { | |
| border-collapse: collapse; | |
| } | |
| .transform { | |
| transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,); | |
| } | |
| .cursor-pointer { | |
| cursor: pointer; | |
| } | |
| .resize { | |
| resize: both; | |
| } | |
| .resize-none { | |
| resize: none; | |
| } | |
| .grid-cols-1 { | |
| grid-template-columns: repeat(1, minmax(0, 1fr)); | |
| } | |
| .flex-col { | |
| flex-direction: column; | |
| } | |
| .flex-row { | |
| flex-direction: row; | |
| } | |
| .flex-row-reverse { | |
| flex-direction: row-reverse; | |
| } | |
| .flex-nowrap { | |
| flex-wrap: nowrap; | |
| } | |
| .flex-wrap { | |
| flex-wrap: wrap; | |
| } | |
| .flex-wrap-reverse { | |
| flex-wrap: wrap-reverse; | |
| } | |
| .place-content-center { | |
| place-content: center; | |
| } | |
| .items-center { | |
| align-items: center; | |
| } | |
| .items-start { | |
| align-items: flex-start; | |
| } | |
| .justify-between { | |
| justify-content: space-between; | |
| } | |
| .justify-center { | |
| justify-content: center; | |
| } | |
| .gap-0 { | |
| gap: calc(var(--spacing) * 0); | |
| } | |
| .gap-1 { | |
| gap: calc(var(--spacing) * 1); | |
| } | |
| .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-8 { | |
| gap: calc(var(--spacing) * 8); | |
| } | |
| .space-y-2 { | |
| :where(& > :not(:last-child)) { | |
| --tw-space-y-reverse: 0; | |
| margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse)); | |
| margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse))); | |
| } | |
| } | |
| .space-y-4 { | |
| :where(& > :not(:last-child)) { | |
| --tw-space-y-reverse: 0; | |
| margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse)); | |
| margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse))); | |
| } | |
| } | |
| .space-y-6 { | |
| :where(& > :not(:last-child)) { | |
| --tw-space-y-reverse: 0; | |
| margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse)); | |
| margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse))); | |
| } | |
| } | |
| .space-x-2 { | |
| :where(& > :not(:last-child)) { | |
| --tw-space-x-reverse: 0; | |
| margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse)); | |
| margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse))); | |
| } | |
| } | |
| .space-x-3 { | |
| :where(& > :not(:last-child)) { | |
| --tw-space-x-reverse: 0; | |
| margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse)); | |
| margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse))); | |
| } | |
| } | |
| .truncate { | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| } | |
| .overflow-auto { | |
| overflow: auto; | |
| } | |
| .overflow-hidden { | |
| overflow: hidden; | |
| } | |
| .overflow-scroll { | |
| overflow: scroll; | |
| } | |
| .overflow-visible { | |
| overflow: visible; | |
| } | |
| .rounded { | |
| border-radius: 0.25rem; | |
| } | |
| .rounded-2xl { | |
| border-radius: var(--radius-2xl); | |
| } | |
| .rounded-full { | |
| border-radius: calc(infinity * 1px); | |
| } | |
| .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); | |
| } | |
| .border { | |
| border-style: var(--tw-border-style); | |
| border-width: 1px; | |
| } | |
| .border-0 { | |
| border-style: var(--tw-border-style); | |
| border-width: 0px; | |
| } | |
| .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-5 { | |
| border-style: var(--tw-border-style); | |
| border-width: 5px; | |
| } | |
| .border-t { | |
| border-top-style: var(--tw-border-style); | |
| border-top-width: 1px; | |
| } | |
| .border-t-2 { | |
| border-top-style: var(--tw-border-style); | |
| border-top-width: 2px; | |
| } | |
| .border-b { | |
| border-bottom-style: var(--tw-border-style); | |
| border-bottom-width: 1px; | |
| } | |
| .border-l-4 { | |
| border-left-style: var(--tw-border-style); | |
| border-left-width: 4px; | |
| } | |
| .border-blue-400 { | |
| border-color: var(--color-blue-400); | |
| } | |
| .border-gray-200 { | |
| border-color: var(--color-gray-200); | |
| } | |
| .border-gray-300 { | |
| border-color: var(--color-gray-300); | |
| } | |
| .border-gray-700 { | |
| border-color: var(--color-gray-700); | |
| } | |
| .border-indigo-600 { | |
| border-color: var(--color-indigo-600); | |
| } | |
| .border-red-200 { | |
| border-color: var(--color-red-200); | |
| } | |
| .border-red-600 { | |
| border-color: var(--color-red-600); | |
| } | |
| .border-white { | |
| border-color: var(--color-white); | |
| } | |
| .bg-black { | |
| background-color: var(--color-black); | |
| } | |
| .bg-gray-100 { | |
| background-color: var(--color-gray-100); | |
| } | |
| .bg-gray-200 { | |
| background-color: var(--color-gray-200); | |
| } | |
| .bg-gray-800 { | |
| background-color: var(--color-gray-800); | |
| } | |
| .bg-green-100 { | |
| background-color: var(--color-green-100); | |
| } | |
| .bg-indigo-600 { | |
| background-color: var(--color-indigo-600); | |
| } | |
| .bg-red-50 { | |
| background-color: var(--color-red-50); | |
| } | |
| .bg-red-500 { | |
| background-color: var(--color-red-500); | |
| } | |
| .bg-red-600 { | |
| background-color: var(--color-red-600); | |
| } | |
| .bg-teal-600 { | |
| background-color: var(--color-teal-600); | |
| } | |
| .bg-transparent { | |
| background-color: transparent; | |
| } | |
| .bg-white { | |
| background-color: var(--color-white); | |
| } | |
| .bg-gradient-to-br { | |
| --tw-gradient-position: to bottom right in oklab; | |
| background-image: linear-gradient(var(--tw-gradient-stops)); | |
| } | |
| .from-blue-500 { | |
| --tw-gradient-from: var(--color-blue-500); | |
| --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); | |
| } | |
| .from-red-500 { | |
| --tw-gradient-from: var(--color-red-500); | |
| --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); | |
| } | |
| .to-blue-600 { | |
| --tw-gradient-to: var(--color-blue-600); | |
| --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); | |
| } | |
| .to-red-600 { | |
| --tw-gradient-to: var(--color-red-600); | |
| --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); | |
| } | |
| .p-0 { | |
| padding: calc(var(--spacing) * 0); | |
| } | |
| .p-1 { | |
| padding: calc(var(--spacing) * 1); | |
| } | |
| .p-2 { | |
| padding: calc(var(--spacing) * 2); | |
| } | |
| .p-3 { | |
| padding: calc(var(--spacing) * 3); | |
| } | |
| .p-4 { | |
| padding: calc(var(--spacing) * 4); | |
| } | |
| .p-5 { | |
| padding: calc(var(--spacing) * 5); | |
| } | |
| .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-5 { | |
| padding-inline: calc(var(--spacing) * 5); | |
| } | |
| .px-6 { | |
| padding-inline: calc(var(--spacing) * 6); | |
| } | |
| .px-8 { | |
| padding-inline: calc(var(--spacing) * 8); | |
| } | |
| .px-12 { | |
| padding-inline: calc(var(--spacing) * 12); | |
| } | |
| .py-0 { | |
| padding-block: calc(var(--spacing) * 0); | |
| } | |
| .py-1 { | |
| padding-block: calc(var(--spacing) * 1); | |
| } | |
| .py-2 { | |
| padding-block: calc(var(--spacing) * 2); | |
| } | |
| .py-2\.5 { | |
| padding-block: calc(var(--spacing) * 2.5); | |
| } | |
| .py-3 { | |
| padding-block: calc(var(--spacing) * 3); | |
| } | |
| .py-4 { | |
| padding-block: calc(var(--spacing) * 4); | |
| } | |
| .py-5 { | |
| padding-block: calc(var(--spacing) * 5); | |
| } | |
| .py-6 { | |
| padding-block: calc(var(--spacing) * 6); | |
| } | |
| .py-8 { | |
| padding-block: calc(var(--spacing) * 8); | |
| } | |
| .py-16 { | |
| padding-block: calc(var(--spacing) * 16); | |
| } | |
| .ps-0 { | |
| padding-inline-start: calc(var(--spacing) * 0); | |
| } | |
| .ps-1 { | |
| padding-inline-start: calc(var(--spacing) * 1); | |
| } | |
| .ps-2 { | |
| padding-inline-start: calc(var(--spacing) * 2); | |
| } | |
| .ps-3 { | |
| padding-inline-start: calc(var(--spacing) * 3); | |
| } | |
| .ps-4 { | |
| padding-inline-start: calc(var(--spacing) * 4); | |
| } | |
| .ps-5 { | |
| padding-inline-start: calc(var(--spacing) * 5); | |
| } | |
| .pe-0 { | |
| padding-inline-end: calc(var(--spacing) * 0); | |
| } | |
| .pe-1 { | |
| padding-inline-end: calc(var(--spacing) * 1); | |
| } | |
| .pe-2 { | |
| padding-inline-end: calc(var(--spacing) * 2); | |
| } | |
| .pe-3 { | |
| padding-inline-end: calc(var(--spacing) * 3); | |
| } | |
| .pe-4 { | |
| padding-inline-end: calc(var(--spacing) * 4); | |
| } | |
| .pe-5 { | |
| padding-inline-end: calc(var(--spacing) * 5); | |
| } | |
| .pe-12 { | |
| padding-inline-end: calc(var(--spacing) * 12); | |
| } | |
| .pt-0 { | |
| padding-top: calc(var(--spacing) * 0); | |
| } | |
| .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-5 { | |
| padding-top: calc(var(--spacing) * 5); | |
| } | |
| .pt-6 { | |
| padding-top: calc(var(--spacing) * 6); | |
| } | |
| .pr-2 { | |
| padding-right: calc(var(--spacing) * 2); | |
| } | |
| .pb-0 { | |
| padding-bottom: calc(var(--spacing) * 0); | |
| } | |
| .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-5 { | |
| padding-bottom: calc(var(--spacing) * 5); | |
| } | |
| .text-center { | |
| text-align: center; | |
| } | |
| .text-end { | |
| text-align: end; | |
| } | |
| .text-start { | |
| text-align: start; | |
| } | |
| .align-baseline { | |
| vertical-align: baseline; | |
| } | |
| .align-bottom { | |
| vertical-align: bottom; | |
| } | |
| .align-middle { | |
| vertical-align: middle; | |
| } | |
| .align-text-bottom { | |
| vertical-align: text-bottom; | |
| } | |
| .align-text-top { | |
| vertical-align: text-top; | |
| } | |
| .align-top { | |
| vertical-align: top; | |
| } | |
| .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-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-xs { | |
| font-size: var(--text-xs); | |
| line-height: var(--tw-leading, var(--text-xs--line-height)); | |
| } | |
| .leading-relaxed { | |
| --tw-leading: var(--leading-relaxed); | |
| line-height: var(--leading-relaxed); | |
| } | |
| .leading-tight { | |
| --tw-leading: var(--leading-tight); | |
| line-height: var(--leading-tight); | |
| } | |
| .font-bold { | |
| --tw-font-weight: var(--font-weight-bold); | |
| font-weight: var(--font-weight-bold); | |
| } | |
| .font-medium { | |
| --tw-font-weight: var(--font-weight-medium); | |
| font-weight: var(--font-weight-medium); | |
| } | |
| .font-semibold { | |
| --tw-font-weight: var(--font-weight-semibold); | |
| font-weight: var(--font-weight-semibold); | |
| } | |
| .tracking-tight { | |
| --tw-tracking: var(--tracking-tight); | |
| letter-spacing: var(--tracking-tight); | |
| } | |
| .text-nowrap { | |
| text-wrap: nowrap; | |
| } | |
| .text-wrap { | |
| text-wrap: wrap; | |
| } | |
| .text-black { | |
| color: var(--color-black); | |
| } | |
| .text-blue-800 { | |
| color: var(--color-blue-800); | |
| } | |
| .text-blue-900 { | |
| color: var(--color-blue-900); | |
| } | |
| .text-gray-300 { | |
| color: var(--color-gray-300); | |
| } | |
| .text-gray-400 { | |
| color: var(--color-gray-400); | |
| } | |
| .text-gray-500 { | |
| color: var(--color-gray-500); | |
| } | |
| .text-gray-600 { | |
| color: var(--color-gray-600); | |
| } | |
| .text-gray-700 { | |
| color: var(--color-gray-700); | |
| } | |
| .text-gray-800 { | |
| color: var(--color-gray-800); | |
| } | |
| .text-gray-900 { | |
| color: var(--color-gray-900); | |
| } | |
| .text-green-600 { | |
| color: var(--color-green-600); | |
| } | |
| .text-indigo-600 { | |
| color: var(--color-indigo-600); | |
| } | |
| .text-red-400 { | |
| color: var(--color-red-400); | |
| } | |
| .text-red-500 { | |
| color: var(--color-red-500); | |
| } | |
| .text-red-700 { | |
| color: var(--color-red-700); | |
| } | |
| .text-red-800 { | |
| color: var(--color-red-800); | |
| } | |
| .text-teal-600 { | |
| color: var(--color-teal-600); | |
| } | |
| .text-white { | |
| color: var(--color-white); | |
| } | |
| .capitalize { | |
| text-transform: capitalize; | |
| } | |
| .lowercase { | |
| text-transform: lowercase; | |
| } | |
| .uppercase { | |
| text-transform: uppercase; | |
| } | |
| .italic { | |
| font-style: italic; | |
| } | |
| .line-through { | |
| text-decoration-line: line-through; | |
| } | |
| .underline { | |
| text-decoration-line: underline; | |
| } | |
| .opacity-0 { | |
| opacity: 0%; | |
| } | |
| .opacity-25 { | |
| opacity: 25%; | |
| } | |
| .opacity-50 { | |
| opacity: 50%; | |
| } | |
| .opacity-75 { | |
| opacity: 75%; | |
| } | |
| .opacity-100 { | |
| opacity: 100%; | |
| } | |
| .shadow { | |
| --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); | |
| box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); | |
| } | |
| .shadow-inner { | |
| --tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05)); | |
| 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, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); | |
| box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); | |
| } | |
| .shadow-none { | |
| --tw-shadow: 0 0 #0000; | |
| 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, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); | |
| box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); | |
| } | |
| .ring-1 { | |
| --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + 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-gray-300 { | |
| --tw-ring-color: var(--color-gray-300); | |
| } | |
| .ring-gray-900\/5 { | |
| --tw-ring-color: color-mix(in srgb, oklch(21% 0.034 264.665) 5%, transparent); | |
| @supports (color: color-mix(in lab, red, red)) { | |
| --tw-ring-color: color-mix(in oklab, var(--color-gray-900) 5%, transparent); | |
| } | |
| } | |
| .outline { | |
| outline-style: var(--tw-outline-style); | |
| outline-width: 1px; | |
| } | |
| .filter { | |
| 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,); | |
| } | |
| .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, 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-colors { | |
| transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to; | |
| transition-timing-function: var(--tw-ease, var(--default-transition-timing-function)); | |
| transition-duration: var(--tw-duration, var(--default-transition-duration)); | |
| } | |
| .duration-200 { | |
| --tw-duration: 200ms; | |
| transition-duration: 200ms; | |
| } | |
| .duration-300 { | |
| --tw-duration: 300ms; | |
| transition-duration: 300ms; | |
| } | |
| .ease-in-out { | |
| --tw-ease: var(--ease-in-out); | |
| transition-timing-function: var(--ease-in-out); | |
| } | |
| .ease-out { | |
| --tw-ease: var(--ease-out); | |
| transition-timing-function: var(--ease-out); | |
| } | |
| .ring-inset { | |
| --tw-ring-inset: inset; | |
| } | |
| .group-hover\:end-4 { | |
| &:is(:where(.group):hover *) { | |
| @media (hover: hover) { | |
| inset-inline-end: calc(var(--spacing) * 4); | |
| } | |
| } | |
| } | |
| .group-hover\:me-4 { | |
| &:is(:where(.group):hover *) { | |
| @media (hover: hover) { | |
| margin-inline-end: calc(var(--spacing) * 4); | |
| } | |
| } | |
| } | |
| .placeholder\:text-gray-400 { | |
| &::placeholder { | |
| color: var(--color-gray-400); | |
| } | |
| } | |
| .hover\:-translate-y-1 { | |
| &:hover { | |
| @media (hover: hover) { | |
| --tw-translate-y: calc(var(--spacing) * -1); | |
| translate: var(--tw-translate-x) var(--tw-translate-y); | |
| } | |
| } | |
| } | |
| .hover\:scale-105 { | |
| &:hover { | |
| @media (hover: hover) { | |
| --tw-scale-x: 105%; | |
| --tw-scale-y: 105%; | |
| --tw-scale-z: 105%; | |
| scale: var(--tw-scale-x) var(--tw-scale-y); | |
| } | |
| } | |
| } | |
| .hover\:bg-gray-50 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-gray-50); | |
| } | |
| } | |
| } | |
| .hover\:bg-gray-300 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-gray-300); | |
| } | |
| } | |
| } | |
| .hover\:bg-indigo-500 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-indigo-500); | |
| } | |
| } | |
| } | |
| .hover\:bg-indigo-700 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-indigo-700); | |
| } | |
| } | |
| } | |
| .hover\:bg-red-500 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-red-500); | |
| } | |
| } | |
| } | |
| .hover\:bg-red-600 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-red-600); | |
| } | |
| } | |
| } | |
| .hover\:bg-red-700 { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: var(--color-red-700); | |
| } | |
| } | |
| } | |
| .hover\:bg-transparent { | |
| &:hover { | |
| @media (hover: hover) { | |
| background-color: transparent; | |
| } | |
| } | |
| } | |
| .hover\:from-blue-700 { | |
| &:hover { | |
| @media (hover: hover) { | |
| --tw-gradient-from: var(--color-blue-700); | |
| --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); | |
| } | |
| } | |
| } | |
| .hover\:to-blue-800 { | |
| &:hover { | |
| @media (hover: hover) { | |
| --tw-gradient-to: var(--color-blue-800); | |
| --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position)); | |
| } | |
| } | |
| } | |
| .hover\:text-blue-600 { | |
| &:hover { | |
| @media (hover: hover) { | |
| color: var(--color-blue-600); | |
| } | |
| } | |
| } | |
| .hover\:text-gray-500\/75 { | |
| &:hover { | |
| @media (hover: hover) { | |
| color: color-mix(in srgb, oklch(55.1% 0.027 264.364) 75%, transparent); | |
| @supports (color: color-mix(in lab, red, red)) { | |
| color: color-mix(in oklab, var(--color-gray-500) 75%, transparent); | |
| } | |
| } | |
| } | |
| } | |
| .hover\:text-gray-600\/75 { | |
| &:hover { | |
| @media (hover: hover) { | |
| color: color-mix(in srgb, oklch(44.6% 0.03 256.802) 75%, transparent); | |
| @supports (color: color-mix(in lab, red, red)) { | |
| color: color-mix(in oklab, var(--color-gray-600) 75%, transparent); | |
| } | |
| } | |
| } | |
| } | |
| .hover\:text-indigo-600 { | |
| &:hover { | |
| @media (hover: hover) { | |
| color: var(--color-indigo-600); | |
| } | |
| } | |
| } | |
| .hover\:text-white { | |
| &:hover { | |
| @media (hover: hover) { | |
| color: var(--color-white); | |
| } | |
| } | |
| } | |
| .hover\:shadow-xl { | |
| &:hover { | |
| @media (hover: hover) { | |
| --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); | |
| box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); | |
| } | |
| } | |
| } | |
| .focus\:border-indigo-300 { | |
| &:focus { | |
| border-color: var(--color-indigo-300); | |
| } | |
| } | |
| .focus\:border-indigo-500 { | |
| &:focus { | |
| border-color: var(--color-indigo-500); | |
| } | |
| } | |
| .focus\:ring { | |
| &:focus { | |
| --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + 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-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-3 { | |
| &:focus { | |
| --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + 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-blue-500 { | |
| &:focus { | |
| --tw-ring-color: var(--color-blue-500); | |
| } | |
| } | |
| .focus\:ring-indigo-200 { | |
| &:focus { | |
| --tw-ring-color: var(--color-indigo-200); | |
| } | |
| } | |
| .focus\:ring-indigo-300 { | |
| &:focus { | |
| --tw-ring-color: var(--color-indigo-300); | |
| } | |
| } | |
| .focus\:ring-indigo-500 { | |
| &:focus { | |
| --tw-ring-color: var(--color-indigo-500); | |
| } | |
| } | |
| .focus\:ring-indigo-600 { | |
| &:focus { | |
| --tw-ring-color: var(--color-indigo-600); | |
| } | |
| } | |
| .focus\:ring-red-300 { | |
| &:focus { | |
| --tw-ring-color: var(--color-red-300); | |
| } | |
| } | |
| .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) { | |
| outline: 2px solid transparent; | |
| outline-offset: 2px; | |
| } | |
| } | |
| } | |
| .focus\:outline-none { | |
| &:focus { | |
| --tw-outline-style: none; | |
| outline-style: none; | |
| } | |
| } | |
| .focus\:ring-inset { | |
| &:focus { | |
| --tw-ring-inset: inset; | |
| } | |
| } | |
| .focus-visible\:outline { | |
| &:focus-visible { | |
| outline-style: var(--tw-outline-style); | |
| outline-width: 1px; | |
| } | |
| } | |
| .focus-visible\:outline-2 { | |
| &:focus-visible { | |
| outline-style: var(--tw-outline-style); | |
| outline-width: 2px; | |
| } | |
| } | |
| .focus-visible\:outline-offset-2 { | |
| &:focus-visible { | |
| outline-offset: 2px; | |
| } | |
| } | |
| .focus-visible\:outline-indigo-600 { | |
| &:focus-visible { | |
| outline-color: var(--color-indigo-600); | |
| } | |
| } | |
| .focus-visible\:outline-red-600 { | |
| &:focus-visible { | |
| outline-color: var(--color-red-600); | |
| } | |
| } | |
| .active\:bg-indigo-500 { | |
| &:active { | |
| background-color: var(--color-indigo-500); | |
| } | |
| } | |
| .active\:bg-indigo-800 { | |
| &:active { | |
| background-color: var(--color-indigo-800); | |
| } | |
| } | |
| .active\:bg-red-800 { | |
| &:active { | |
| background-color: var(--color-red-800); | |
| } | |
| } | |
| .active\:text-indigo-500 { | |
| &:active { | |
| color: var(--color-indigo-500); | |
| } | |
| } | |
| .sm\:flex { | |
| @media (width >= 40rem) { | |
| display: flex; | |
| } | |
| } | |
| .sm\:grid-cols-2 { | |
| @media (width >= 40rem) { | |
| grid-template-columns: repeat(2, minmax(0, 1fr)); | |
| } | |
| } | |
| .sm\:justify-start { | |
| @media (width >= 40rem) { | |
| justify-content: flex-start; | |
| } | |
| } | |
| .sm\:gap-4 { | |
| @media (width >= 40rem) { | |
| gap: calc(var(--spacing) * 4); | |
| } | |
| } | |
| .sm\:p-6 { | |
| @media (width >= 40rem) { | |
| padding: calc(var(--spacing) * 6); | |
| } | |
| } | |
| .sm\:p-10 { | |
| @media (width >= 40rem) { | |
| padding: calc(var(--spacing) * 10); | |
| } | |
| } | |
| .sm\:px-6 { | |
| @media (width >= 40rem) { | |
| padding-inline: calc(var(--spacing) * 6); | |
| } | |
| } | |
| .sm\:text-3xl { | |
| @media (width >= 40rem) { | |
| font-size: var(--text-3xl); | |
| line-height: var(--tw-leading, var(--text-3xl--line-height)); | |
| } | |
| } | |
| .sm\:text-4xl { | |
| @media (width >= 40rem) { | |
| font-size: var(--text-4xl); | |
| line-height: var(--tw-leading, var(--text-4xl--line-height)); | |
| } | |
| } | |
| .sm\:text-sm { | |
| @media (width >= 40rem) { | |
| font-size: var(--text-sm); | |
| line-height: var(--tw-leading, var(--text-sm--line-height)); | |
| } | |
| } | |
| .sm\:leading-6 { | |
| @media (width >= 40rem) { | |
| --tw-leading: calc(var(--spacing) * 6); | |
| line-height: calc(var(--spacing) * 6); | |
| } | |
| } | |
| .md\:block { | |
| @media (width >= 48rem) { | |
| display: block; | |
| } | |
| } | |
| .md\:flex { | |
| @media (width >= 48rem) { | |
| display: flex; | |
| } | |
| } | |
| .md\:hidden { | |
| @media (width >= 48rem) { | |
| display: none; | |
| } | |
| } | |
| .md\:grid-cols-3 { | |
| @media (width >= 48rem) { | |
| grid-template-columns: repeat(3, minmax(0, 1fr)); | |
| } | |
| } | |
| .md\:items-center { | |
| @media (width >= 48rem) { | |
| align-items: center; | |
| } | |
| } | |
| .md\:gap-12 { | |
| @media (width >= 48rem) { | |
| gap: calc(var(--spacing) * 12); | |
| } | |
| } | |
| .lg\:grid-cols-3 { | |
| @media (width >= 64rem) { | |
| grid-template-columns: repeat(3, minmax(0, 1fr)); | |
| } | |
| } | |
| .lg\:p-8 { | |
| @media (width >= 64rem) { | |
| padding: calc(var(--spacing) * 8); | |
| } | |
| } | |
| .lg\:px-8 { | |
| @media (width >= 64rem) { | |
| padding-inline: calc(var(--spacing) * 8); | |
| } | |
| } | |
| .xl\:grid-cols-4 { | |
| @media (width >= 80rem) { | |
| grid-template-columns: repeat(4, minmax(0, 1fr)); | |
| } | |
| } | |
| .\32 xl\:grid-cols-5 { | |
| @media (width >= 96rem) { | |
| grid-template-columns: repeat(5, minmax(0, 1fr)); | |
| } | |
| } | |
| .rtl\:rotate-180 { | |
| &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) { | |
| rotate: 180deg; | |
| } | |
| } | |
| } | |
| @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-space-y-reverse { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: 0; | |
| } | |
| @property --tw-space-x-reverse { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: 0; | |
| } | |
| @property --tw-border-style { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: solid; | |
| } | |
| @property --tw-gradient-position { | |
| syntax: "*"; | |
| inherits: false; | |
| } | |
| @property --tw-gradient-from { | |
| syntax: "<color>"; | |
| inherits: false; | |
| initial-value: #0000; | |
| } | |
| @property --tw-gradient-via { | |
| syntax: "<color>"; | |
| inherits: false; | |
| initial-value: #0000; | |
| } | |
| @property --tw-gradient-to { | |
| syntax: "<color>"; | |
| inherits: false; | |
| initial-value: #0000; | |
| } | |
| @property --tw-gradient-stops { | |
| syntax: "*"; | |
| inherits: false; | |
| } | |
| @property --tw-gradient-via-stops { | |
| syntax: "*"; | |
| inherits: false; | |
| } | |
| @property --tw-gradient-from-position { | |
| syntax: "<length-percentage>"; | |
| inherits: false; | |
| initial-value: 0%; | |
| } | |
| @property --tw-gradient-via-position { | |
| syntax: "<length-percentage>"; | |
| inherits: false; | |
| initial-value: 50%; | |
| } | |
| @property --tw-gradient-to-position { | |
| syntax: "<length-percentage>"; | |
| inherits: false; | |
| initial-value: 100%; | |
| } | |
| @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: 0px; | |
| } | |
| @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-outline-style { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: solid; | |
| } | |
| @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-duration { | |
| syntax: "*"; | |
| inherits: false; | |
| } | |
| @property --tw-ease { | |
| syntax: "*"; | |
| inherits: false; | |
| } | |
| @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-scale-x { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: 1; | |
| } | |
| @property --tw-scale-y { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: 1; | |
| } | |
| @property --tw-scale-z { | |
| syntax: "*"; | |
| inherits: false; | |
| initial-value: 1; | |
| } | |
| @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-rotate-x: initial; | |
| --tw-rotate-y: initial; | |
| --tw-rotate-z: initial; | |
| --tw-skew-x: initial; | |
| --tw-skew-y: initial; | |
| --tw-space-y-reverse: 0; | |
| --tw-space-x-reverse: 0; | |
| --tw-border-style: solid; | |
| --tw-gradient-position: initial; | |
| --tw-gradient-from: #0000; | |
| --tw-gradient-via: #0000; | |
| --tw-gradient-to: #0000; | |
| --tw-gradient-stops: initial; | |
| --tw-gradient-via-stops: initial; | |
| --tw-gradient-from-position: 0%; | |
| --tw-gradient-via-position: 50%; | |
| --tw-gradient-to-position: 100%; | |
| --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-outline-style: solid; | |
| --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-duration: initial; | |
| --tw-ease: initial; | |
| --tw-translate-x: 0; | |
| --tw-translate-y: 0; | |
| --tw-translate-z: 0; | |
| --tw-scale-x: 1; | |
| --tw-scale-y: 1; | |
| --tw-scale-z: 1; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment