Files
MAD-Platform/app/globals.css

56 lines
770 B
CSS
Raw Normal View History

2026-01-20 17:20:13 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
2026-01-20 17:31:34 +01:00
font-family: var(--font-poppins), Arial, Helvetica, sans-serif;
2026-01-20 17:20:13 +01:00
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
2026-01-20 18:08:06 +01:00
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeIn {
animation: fadeIn 0.2s ease-out;
}
.animate-slideUp {
animation: slideUp 0.3s ease-out;
}