2025-12-23 17:09:40 +03:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
2026-01-13 03:58:08 +03:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');
|
2025-12-23 22:00:31 +03:00
|
|
|
@layer base {
|
|
|
|
|
:root {
|
2026-01-12 15:27:19 +03:00
|
|
|
overflow-y: scroll !important;
|
2026-01-09 20:12:38 +03:00
|
|
|
--primary: #041c40;
|
|
|
|
|
--secondary: #e06923;
|
|
|
|
|
--tertiary: #313131;
|
|
|
|
|
--bg-color: #F5EEE6;
|
|
|
|
|
--text-color: #313131;
|
|
|
|
|
--border-color: #d1c9be;
|
2025-12-23 22:00:31 +03:00
|
|
|
}
|
|
|
|
|
.dark {
|
2026-01-12 15:27:19 +03:00
|
|
|
overflow-y: scroll !important;
|
2026-01-09 20:12:38 +03:00
|
|
|
--primary: #041c40;
|
|
|
|
|
--secondary: #e06923;
|
|
|
|
|
--tertiary: #313131;
|
|
|
|
|
--bg-color: #313131;
|
|
|
|
|
--text-color: #F5EEE6;
|
|
|
|
|
--border-color: #4a4a4a;
|
2025-12-23 22:00:31 +03:00
|
|
|
}
|
|
|
|
|
body {
|
2026-01-12 15:27:19 +03:00
|
|
|
overflow-y: scroll !important;
|
2026-01-09 20:12:38 +03:00
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
overflow-x: hidden;
|
2026-01-13 03:58:08 +03:00
|
|
|
font-family: 'Cairo', system-ui, -apple-system, sans-serif;
|
2026-01-09 20:12:38 +03:00
|
|
|
color: var(--text-color);
|
|
|
|
|
transition: background-color 0.3s ease, color 0.3s ease;
|
2025-12-23 22:00:31 +03:00
|
|
|
}
|
2026-01-09 20:12:38 +03:00
|
|
|
html {
|
2026-01-12 15:27:19 +03:00
|
|
|
overflow-y: scroll !important;
|
2026-01-09 20:12:38 +03:00
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
overflow-x: hidden;
|
2025-12-23 22:00:31 +03:00
|
|
|
}
|
2025-12-23 17:09:40 +03:00
|
|
|
}
|