feat / AEB-26 login page

This commit is contained in:
Timofey Syrokvashko
2025-09-01 11:34:30 +03:00
parent 38a31824bc
commit 65a63235e5
37 changed files with 1185 additions and 49 deletions

View File

@@ -1,25 +1,37 @@
@import "tailwindcss";
@import 'tailwindcss';
:root {
--background: #ffffff;
--foreground: #171717;
--background: #0e111a;
--foreground: #ffffff;
}
/* @font-face {
font-family: '';
font-style: normal;
font-weight: 200 700;
font-display: swap;
src: url('') format('truetype');
} */
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-blue: #3193f5;
--color-cards: #161824;
/* --font-display: '', 'sans-serif'; */
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--background: #0e111a;
--foreground: #ededed;
}
}
html, body {
html,
body {
margin: 0;
padding: 0;
height: 100%;