version 0.0.1

This commit is contained in:
2026-05-11 22:07:17 +02:00
parent fd160cc13b
commit 5869b87336
53 changed files with 11810 additions and 80 deletions
+160
View File
@@ -0,0 +1,160 @@
:root {
--bg: #12121a;
--surface: #1c1c28;
--surface-2: #252532;
--border: #3a3a4d;
--text: #e8e8ef;
--muted: #9a9ab0;
--accent: #6c9cff;
--accent-dim: #4a6fb8;
--success: #5ecf8a;
--warn: #e8c547;
--danger: #e86c6c;
--radius: 10px;
--font: system-ui, 'Segoe UI', Roboto, Ubuntu, Cantarell, sans-serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
margin: 0;
min-height: 100%;
font-family: var(--font);
background: var(--bg);
color: var(--text);
line-height: 1.45;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1,
h2,
h3 {
margin: 0 0 0.5rem;
font-weight: 600;
}
button,
input,
select,
textarea {
font: inherit;
color: inherit;
}
button {
cursor: pointer;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1rem 1.25rem;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.4rem;
padding: 0.45rem 0.85rem;
border-radius: 8px;
border: 1px solid var(--border);
background: var(--surface-2);
color: var(--text);
}
.btn:hover {
border-color: var(--accent-dim);
background: var(--surface);
}
.btn.primary {
background: var(--accent);
border-color: var(--accent);
color: #0b1020;
font-weight: 600;
}
.btn.primary:hover {
filter: brightness(1.05);
}
.btn.danger {
border-color: #8a3d3d;
background: #3a2020;
color: #ffc9c9;
}
.field {
display: flex;
flex-direction: column;
gap: 0.25rem;
margin-bottom: 0.75rem;
}
.field label {
font-size: 0.85rem;
color: var(--muted);
}
.field input,
.field select,
.field textarea {
padding: 0.45rem 0.55rem;
border-radius: 8px;
border: 1px solid var(--border);
background: var(--bg);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
@media (max-width: 720px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
.row {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.muted {
color: var(--muted);
font-size: 0.9rem;
}
.big-number {
font-size: 2.25rem;
font-weight: 700;
font-variant-numeric: tabular-nums;
letter-spacing: 0.02em;
}
.pill {
display: inline-block;
padding: 0.15rem 0.5rem;
border-radius: 999px;
background: var(--surface-2);
border: 1px solid var(--border);
font-size: 0.8rem;
color: var(--muted);
}
.stack {
display: flex;
flex-direction: column;
gap: 1rem;
}