40 lines
697 B
CSS
40 lines
697 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
@apply m-0 bg-slate-50 text-slate-900 dark:bg-slate-950 dark:text-slate-100 font-sans antialiased selection:bg-amber-500/30 selection:text-amber-400;
|
|
}
|
|
}
|
|
|
|
/* Toast Einflug */
|
|
@keyframes toast-rein {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateX(24px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
|
|
.toast-rein {
|
|
animation: toast-rein 0.25s ease-out;
|
|
}
|
|
|
|
/* Subtile Disc-Rotation für Cinematic Spotlight */
|
|
@keyframes disc-spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.animate-disc-spin {
|
|
animation: disc-spin 14s linear infinite;
|
|
}
|