mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-26 02:35:20 +02:00
42 lines
766 B
CSS
42 lines
766 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
a {
|
|
@apply hover:text-amber-200;
|
|
}
|
|
|
|
.placeholder {
|
|
@apply bg-zinc-700 bg-opacity-40 animate-pulse;
|
|
}
|
|
|
|
.placeholder-image {
|
|
@apply bg-zinc-700 bg-opacity-75;
|
|
}
|
|
|
|
.placeholder-text {
|
|
@apply bg-zinc-700 bg-opacity-40 animate-pulse text-transparent rounded-lg select-none;
|
|
}
|
|
|
|
.selectable {
|
|
@apply outline-none outline-0 border-2 border-[#00000000] focus-visible:border-[#f0cd6dc2];
|
|
}
|
|
|
|
.selectable:focus, .selectable:focus-within {
|
|
border-width: 2px;
|
|
}
|
|
|
|
.peer-selectable {
|
|
@apply peer-focus-visible:outline outline-2 outline-[#f0cd6dc2] outline-offset-2;
|
|
}
|
|
|
|
.selectable-explicit {
|
|
@apply focus-within:outline outline-2 outline-[#f0cd6dc2] outline-offset-2;
|
|
}
|
|
|
|
@media tv {
|
|
html {
|
|
font-size: 24px;
|
|
}
|
|
}
|