vue-libre-editor
Version:
A free WYSIWYG editor for Vue.js
1,283 lines (1,086 loc) • 26.9 kB
CSS
/* Add some additional styles for better button feedback */
button[data-v-f4d6928b] {
transition: all 0.15s ease;
appearance: button;
text-transform: none;
overflow: visible;
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
padding: 0;
border: 0;
cursor: pointer;
}
button[data-v-f4d6928b]:focus {
outline: none;
}
button[data-v-f4d6928b]:hover {
background-color: rgba(0, 0, 0, 0.05);
}
button[data-v-f4d6928b]:active {
transform: scale(0.97);
}
.editor-button-active[data-v-f4d6928b] {
font-weight: bold;
}
button[data-v-b6c5bd51]:active {
transform: scale(0.97);
}
button[data-v-125c9b8f]:active {
transform: scale(0.97);
}
button[data-v-109255c1]:active {
transform: scale(0.97);
}
button[data-v-93a26b55]:active {
transform: scale(0.97);
}
button[data-v-86d5696c]:active {
transform: scale(0.97);
}
/* 글로벌 - scoped 없음 */
.vue-libre-editor .editor-content[data-v-d8cdbd23] {
overflow-y: auto;
}
.vue-libre-editor .editor-content[data-placeholder][data-v-d8cdbd23]:empty:before {
content: attr(data-placeholder);
color: #aaa;
pointer-events: none;
}
.vue-libre-editor .editor-content[data-v-d8cdbd23]:focus {
outline: none;
}
/* Table styles for the editor */
.vue-libre-editor .editor-content table[data-v-d8cdbd23] {
border-collapse: collapse;
margin: 10px 0;
position: relative;
}
.vue-libre-editor .editor-content th[data-v-d8cdbd23],
.vue-libre-editor .editor-content td[data-v-d8cdbd23] {
border: 1px solid #ddd;
padding: 8px;
position: relative;
min-width: 30px;
min-height: 20px;
}
.vue-libre-editor .editor-content tr[data-v-d8cdbd23]:hover {
background-color: #f5f5f5;
}
/* Column resizer styles */
.vue-libre-editor .column-resizer[data-v-d8cdbd23] {
position: absolute;
top: 0;
right: -3px;
width: 6px;
height: 100%;
background-color: transparent;
cursor: col-resize;
z-index: 1;
}
.vue-libre-editor .column-resizer[data-v-d8cdbd23]:hover,
.vue-libre-editor .column-resizer[data-v-d8cdbd23]:active {
background-color: #2563eb;
}
/* Table resizer styles */
.vue-libre-editor .table-resizer[data-v-d8cdbd23] {
position: absolute;
right: -5px;
bottom: -5px;
width: 10px;
height: 10px;
background-color: #2563eb;
border-radius: 50%;
cursor: nwse-resize;
z-index: 2;
}
/* When resizing is active */
.vue-libre-editor body.resizing[data-v-d8cdbd23] {
cursor: col-resize;
user-select: none;
}
/* Dark theme adjustments for tables */
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .editor-content table td,[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .editor-content table th {
border-color: #4b5563;
}
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .editor-content table tr:hover {
background-color: #374151;
}
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .column-resizer:hover,[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .column-resizer:active,[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .table-resizer {
background-color: #60a5fa;
}
/* Row resizer styles */
.vue-libre-editor .row-resizer[data-v-d8cdbd23] {
position: absolute;
left: 0;
bottom: -3px;
width: 100%;
height: 6px;
background-color: transparent;
cursor: row-resize;
z-index: 1;
}
.vue-libre-editor .row-resizer[data-v-d8cdbd23]:hover,
.vue-libre-editor .row-resizer[data-v-d8cdbd23]:active {
background-color: #2563eb;
}
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .row-resizer:hover,[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .row-resizer:active {
background-color: #60a5fa;
}
/* Cell selection styles */
.vue-libre-editor .cell-selected[data-v-d8cdbd23] {
background-color: rgba(37, 99, 235, 0.2) ;
outline: 2px solid #2563eb ;
position: relative;
z-index: 1;
}
/* Multi-selected cells have a stronger highlight */
.vue-libre-editor .cell-selected[data-multi-selected="true"][data-v-d8cdbd23] {
background-color: rgba(37, 99, 235, 0.3) ;
outline: 3px solid #2563eb ;
box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.5);
}
/* Add a label to indicate multi-selection mode */
.vue-libre-editor .cell-selected[data-multi-selected="true"][data-v-d8cdbd23]::after {
content: "";
position: absolute;
top: 2px;
right: 2px;
width: 8px;
height: 8px;
background-color: #2563eb;
border-radius: 50%;
}
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .cell-selected {
background-color: rgba(96, 165, 250, 0.2) ;
outline: 2px solid #60a5fa ;
}
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .cell-selected[data-multi-selected="true"] {
background-color: rgba(96, 165, 250, 0.3) ;
outline: 3px solid #60a5fa ;
box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.5);
}
[data-v-d8cdbd23] .editor-theme-dark .vue-libre-editor .cell-selected[data-multi-selected="true"]::after {
background-color: #60a5fa;
}
/* Styles for content when the module is not imported */
/* These styles can be exported and used separately */
.vue-libre-editor-content table[data-v-d8cdbd23] {
border-collapse: collapse;
margin: 10px 0;
position: relative;
border-spacing: 0;
width: auto;
height: auto;
table-layout: auto;
caption-side: top;
empty-cells: show;
border: none;
border-style: none;
border-width: 0;
border-color: currentColor;
background-color: transparent;
color: inherit;
font-family: inherit;
font-size: inherit;
text-align: left;
vertical-align: middle;
}
.vue-libre-editor .vue-libre-editor-content thead[data-v-d8cdbd23] {
vertical-align: middle;
border-color: inherit;
display: table-header-group;
}
.vue-libre-editor .vue-libre-editor-content tbody[data-v-d8cdbd23] {
vertical-align: middle;
border-color: inherit;
display: table-row-group;
}
.vue-libre-editor .vue-libre-editor-content tr[data-v-d8cdbd23] {
vertical-align: inherit;
border-color: inherit;
display: table-row;
}
.vue-libre-editor .vue-libre-editor-content a[data-v-d8cdbd23] {
color: #0000EE;
text-decoration: underline;
cursor: pointer;
background-color: transparent;
}
.vue-libre-editor .vue-libre-editor-content img[data-v-d8cdbd23] {
border-style: none;
max-width: 100%;
height: auto;
vertical-align: middle;
}
.vue-libre-editor .vue-libre-editor-content p[data-v-d8cdbd23] {
margin-top: 1em;
margin-bottom: 1em;
display: block;
}
.vue-libre-editor .vue-libre-editor-content button[data-v-d8cdbd23] {
appearance: button;
text-transform: none;
overflow: visible;
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
padding: 0;
border: 1px solid #ccc;
background-color: #f8f8f8;
cursor: pointer;
}
.vue-libre-editor .vue-libre-editor-content span[data-v-d8cdbd23] {
display: inline;
font-family: inherit;
font-size: inherit;
color: inherit;
line-height: inherit;
}
.vue-libre-editor .vue-libre-editor-content thead[data-v-d8cdbd23] {
vertical-align: middle;
border-color: inherit;
display: table-header-group;
}
.vue-libre-editor .vue-libre-editor-content tbody[data-v-d8cdbd23] {
vertical-align: middle;
border-color: inherit;
display: table-row-group;
}
.vue-libre-editor .vue-libre-editor-content tr[data-v-d8cdbd23] {
vertical-align: inherit;
border-color: inherit;
display: table-row;
}
.vue-libre-editor .vue-libre-editor-content a[data-v-d8cdbd23] {
color: #0000EE;
text-decoration: underline;
cursor: pointer;
background-color: transparent;
}
.vue-libre-editor .vue-libre-editor-content img[data-v-d8cdbd23] {
border-style: none;
max-width: 100%;
height: auto;
vertical-align: middle;
}
.vue-libre-editor .vue-libre-editor-content p[data-v-d8cdbd23] {
margin-top: 1em;
margin-bottom: 1em;
display: block;
}
.vue-libre-editor .vue-libre-editor-content button[data-v-d8cdbd23] {
appearance: button;
text-transform: none;
overflow: visible;
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
padding: 0;
border: 1px solid #ccc;
background-color: #f8f8f8;
cursor: pointer;
}
.vue-libre-editor .vue-libre-editor-content span[data-v-d8cdbd23] {
display: inline;
font-family: inherit;
font-size: inherit;
color: inherit;
line-height: inherit;
}
.vue-libre-editor .vue-libre-editor-content table th[data-v-d8cdbd23],
.vue-libre-editor .vue-libre-editor-content table td[data-v-d8cdbd23] {
border: 1px solid #ddd;
padding: 8px;
position: relative;
min-width: 30px;
min-height: 20px;
overflow: hidden;
word-wrap: break-word;
white-space: normal;
}
.vue-libre-editor .vue-libre-editor-content table tr[data-v-d8cdbd23]:hover {
background-color: #f5f5f5;
}
.vue-libre-editor .vue-libre-editor-content .cell-content[data-v-d8cdbd23] {
/* width is now set dynamically by JavaScript */
height: 100%;
position: relative;
z-index: 0;
overflow: hidden;
word-wrap: break-word;
white-space: normal;
}
/* Dark theme adjustments for content */
.vue-libre-editor .vue-libre-editor-content.dark-theme table td[data-v-d8cdbd23],
.vue-libre-editor .vue-libre-editor-content.dark-theme table th[data-v-d8cdbd23] {
border-color: #4b5563;
}
.vue-libre-editor .vue-libre-editor-content.dark-theme table tr[data-v-d8cdbd23]:hover {
background-color: #374151;
}
/*! tailwindcss v4.1.10 | 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-space-x-reverse: 0;
--tw-border-style: solid;
--tw-font-weight: 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;
}
}
}
@layer theme {
:root, :host {
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--spacing: .25rem;
--container-md: 28rem;
--text-sm: .875rem;
--text-sm--line-height: calc(1.25 / .875);
--text-lg: 1.125rem;
--text-lg--line-height: calc(1.75 / 1.125);
--font-weight-medium: 500;
--default-transition-duration: .15s;
--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
--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%;
tab-size: 4;
font-feature-settings: normal;
font-variation-settings: normal;
-webkit-tap-highlight-color: transparent;
font-family: ui-sans-serif, system-ui, sans-serif;
line-height: 1.5;
}
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;
-webkit-text-decoration: 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: -.25em;
}
sup {
top: -.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;
}
:-moz-ui-invalid {
box-shadow: none;
}
button, input:where([type="button"], [type="reset"], [type="submit"]) {
appearance: button;
}
::file-selector-button {
appearance: button;
}
::-webkit-inner-spin-button {
height: auto;
}
::-webkit-outer-spin-button {
height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
display: none ;
}
:root {
--background: 0 0% 100%;
--foreground: 222.2 47.4% 11.2%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 47.4% 11.2%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--card: 0 0% 100%;
--card-foreground: 222.2 47.4% 11.2%;
--primary: 222.2 47.4% 11.2%;
--primary-foreground: 210 40% 98%;
--secondary: 210 40% 96.1%;
--secondary-foreground: 222.2 47.4% 11.2%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--destructive: 0 100% 50%;
--destructive-foreground: 210 40% 98%;
--ring: 215 20.2% 65.1%;
--radius: .5rem;
}
.dark {
--background: 224 71% 4%;
--foreground: 213 31% 91%;
--muted: 223 47% 11%;
--muted-foreground: 215.4 16.3% 56.9%;
--accent: 216 34% 17%;
--accent-foreground: 210 40% 98%;
--popover: 224 71% 4%;
--popover-foreground: 215 20.2% 65.1%;
--border: 216 34% 17%;
--input: 216 34% 17%;
--card: 224 71% 4%;
--card-foreground: 213 31% 91%;
--primary: 210 40% 98%;
--primary-foreground: 222.2 47.4% 1.2%;
--secondary: 222.2 47.4% 11.2%;
--secondary-foreground: 210 40% 98%;
--destructive: 0 63% 31%;
--destructive-foreground: 210 40% 98%;
--ring: 216 34% 17%;
}
}
@layer components;
@layer utilities {
.visible {
visibility: visible;
}
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
.relative {
position: relative;
}
.inset-0 {
inset: calc(var(--spacing) * 0);
}
.top-1\/2 {
top: 50%;
}
.top-full {
top: 100%;
}
.right-2 {
right: calc(var(--spacing) * 2);
}
.left-0 {
left: calc(var(--spacing) * 0);
}
.z-10 {
z-index: 10;
}
.z-50 {
z-index: 50;
}
.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;
}
}
.mx-1 {
margin-inline: calc(var(--spacing) * 1);
}
.mt-1 {
margin-top: calc(var(--spacing) * 1);
}
.mt-2 {
margin-top: calc(var(--spacing) * 2);
}
.mr-2 {
margin-right: calc(var(--spacing) * 2);
}
.mb-1 {
margin-bottom: calc(var(--spacing) * 1);
}
.mb-2 {
margin-bottom: calc(var(--spacing) * 2);
}
.mb-4 {
margin-bottom: calc(var(--spacing) * 4);
}
.block {
display: block;
}
.flex {
display: flex;
}
.grid {
display: grid;
}
.hidden {
display: none;
}
.inline {
display: inline;
}
.table {
display: table;
}
.h-4 {
height: calc(var(--spacing) * 4);
}
.h-8 {
height: calc(var(--spacing) * 8);
}
.h-10 {
height: calc(var(--spacing) * 10);
}
.w-4 {
width: calc(var(--spacing) * 4);
}
.w-8 {
width: calc(var(--spacing) * 8);
}
.w-10 {
width: calc(var(--spacing) * 10);
}
.w-64 {
width: calc(var(--spacing) * 64);
}
.w-full {
width: 100%;
}
.w-px {
width: 1px;
}
.max-w-md {
max-width: var(--container-md);
}
.border-collapse {
border-collapse: collapse;
}
.-translate-y-1\/2 {
--tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
translate: var(--tw-translate-x) var(--tw-translate-y);
}
.transform {
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
}
.resize {
resize: both;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.flex-wrap {
flex-wrap: wrap;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.gap-1 {
gap: calc(var(--spacing) * 1);
}
.gap-2 {
gap: calc(var(--spacing) * 2);
}
.gap-4 {
gap: calc(var(--spacing) * 4);
}
:where(.space-x-2 > :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)));
}
.rounded {
border-radius: .25rem;
}
.rounded-lg {
border-radius: var(--radius);
}
.rounded-md {
border-radius: calc(var(--radius) - 2px);
}
.rounded-sm {
border-radius: calc(var(--radius) - 4px);
}
.border {
border-style: var(--tw-border-style);
border-width: 1px;
}
.p-1 {
padding: calc(var(--spacing) * 1);
}
.p-2 {
padding: calc(var(--spacing) * 2);
}
.p-4 {
padding: calc(var(--spacing) * 4);
}
.p-6 {
padding: calc(var(--spacing) * 6);
}
.px-2 {
padding-inline: calc(var(--spacing) * 2);
}
.px-3 {
padding-inline: calc(var(--spacing) * 3);
}
.px-4 {
padding-inline: calc(var(--spacing) * 4);
}
.py-1 {
padding-block: calc(var(--spacing) * 1);
}
.py-2 {
padding-block: calc(var(--spacing) * 2);
}
.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));
}
.font-medium {
--tw-font-weight: var(--font-weight-medium);
font-weight: var(--font-weight-medium);
}
.italic {
font-style: italic;
}
.underline {
text-decoration-line: underline;
}
.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);
}
.ring {
--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);
}
.outline {
outline-style: var(--tw-outline-style);
outline-width: 1px;
}
.blur {
--tw-blur: blur(8px);
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, 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));
}
@media (hover: hover) {
.hover\:opacity-80:hover {
opacity: .8;
}
.hover\:opacity-90:hover {
opacity: .9;
}
}
.focus\:outline-none:focus {
--tw-outline-style: none;
outline-style: none;
}
.active\:opacity-70:active {
opacity: .7;
}
.active\:opacity-80:active {
opacity: .8;
}
}
@layer custom;
@keyframes enter {
from {
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));
}
}
@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));
}
}
@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-space-x-reverse {
syntax: "*";
inherits: false;
initial-value: 0;
}
@property --tw-border-style {
syntax: "*";
inherits: false;
initial-value: solid;
}
@property --tw-font-weight {
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-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
}