api / frontend /globals.css
gary-boon
Deploy Visualisable.ai backend with API protection
c6c8587
raw
history blame
1.08 kB
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-slideIn {
animation: slideIn 0.3s ease-out;
}
@keyframes slideInFromRight {
from {
opacity: 0;
transform: translateX(100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes expandFromRight {
from {
width: 0;
opacity: 0;
}
to {
width: 24rem;
opacity: 1;
}
}
.animate-slide-in {
animation: expandFromRight 0.4s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
overflow: hidden;
}