website/app/assets/css/main.css

36 lines
766 B
CSS
Raw Permalink Normal View History

2026-05-12 21:05:12 +02:00
@import "tailwindcss";
@import "@nuxt/ui";
@theme static {
--font-sans: 'Public Sans', sans-serif;
2026-07-24 20:42:00 +02:00
--color-green-50: #eff6ff;
--color-green-100: #dbeafe;
--color-green-200: #bfdbfe;
--color-green-300: #93c5fd;
--color-green-400: #60a5fa;
--color-green-500: #3b82f6;
--color-green-600: #2563eb;
--color-green-700: #1d4ed8;
--color-green-800: #1e40af;
--color-green-900: #1e3a8a;
--color-green-950: #172554;
2026-05-12 21:05:12 +02:00
}
2026-05-13 01:04:57 +02:00
body {
font-family: 'Arial', sans-serif;
2026-05-14 06:49:11 +02:00
}
html, body {
margin: 0;
padding: 0;
background-color: #1d1e1f !important;
color: #c9d1d9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
box-sizing: border-box;
2026-05-13 01:04:57 +02:00
}