2025-01-07 18:30:21 +03:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2025-01-09 00:40:28 +03:00
|
|
|
@import "font.css";
|
|
|
|
|
|
|
|
@layer utilities {
|
|
|
|
.backdrop-blur-custom {
|
|
|
|
backdrop-filter: blur(8.7px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.shadow-custom {
|
|
|
|
box-shadow: 14px 18px 29.9px 0px rgba(0, 0, 0, 0.06);
|
|
|
|
}
|
|
|
|
}
|
2025-01-07 18:30:21 +03:00
|
|
|
|
|
|
|
:root {
|
|
|
|
--background: #ffffff;
|
|
|
|
--foreground: #171717;
|
2025-01-09 00:40:28 +03:00
|
|
|
--black: rgba(55, 55, 55, 1);
|
|
|
|
--white: rgba(255, 255, 255, 1);
|
|
|
|
--dark-white: rgba(251 251 252);
|
|
|
|
--blue: rgba(135, 191, 255, 1);
|
|
|
|
--grey: rgba(132, 132, 132, 1);
|
|
|
|
--dark: rgba(51, 51, 51, 1);
|
|
|
|
--dark-blue: rgba(95, 161, 236, 1);
|
|
|
|
--dark-grey: rgba(243, 243, 243, 1);
|
|
|
|
--light-black: rgba(109, 109, 109, 1);
|
|
|
|
--light-grey: rgba(114, 114, 114, 1);
|
|
|
|
--middle-grey: rgba(141, 141, 141, 1);
|
2025-01-07 18:30:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--background: #0a0a0a;
|
|
|
|
--foreground: #ededed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: var(--foreground);
|
2025-01-09 00:40:28 +03:00
|
|
|
background: linear-gradient(180deg, #F3F3F3 0%, #F9F9F9 100%);
|
|
|
|
font-family: 'GT Eesti Pro Display', Arial, Helvetica, sans-serif;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|