first commit

Made-with: Cursor
This commit is contained in:
Michilis
2026-04-01 02:46:53 +00:00
commit 76210db03d
126 changed files with 20208 additions and 0 deletions

34
frontend/app/globals.css Normal file
View File

@@ -0,0 +1,34 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
body {
background-color: #09090b;
color: #e5e2e1;
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
}
.glass-effect {
background: rgba(57, 57, 57, 0.4);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
}
.asymmetric-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 768px) {
.asymmetric-grid {
grid-template-columns: 1fr;
}
}
::selection {
background-color: #f7931a;
color: #603500;
}