Remove tailwind

This commit is contained in:
2025-06-02 19:14:16 +03:00
parent 7f51c7ed11
commit 29fb52ffdc
7 changed files with 222 additions and 829 deletions

View File

@@ -1,17 +1,8 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
@@ -19,8 +10,33 @@
}
}
html,
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
max-width: 100vw;
overflow-x: hidden;
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
}