spestexnika

This commit is contained in:
Davron Chetin
2025-10-04 11:41:38 +05:00
parent cb78857a3a
commit 398269b49b
180 changed files with 1174 additions and 113 deletions

View File

@@ -1,8 +1,11 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--primary: #0c1239;
--secondary: #f2a01c;
}
@theme inline {
@@ -10,6 +13,8 @@
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-primary: var(--primary);
--color-secondary: var(--secondary);
}
@media (prefers-color-scheme: dark) {
@@ -20,7 +25,10 @@
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
* {
transition: 0.3s ease-in-out all;
font-family: "Roboto", sans-serif;
}