116 lines
1.9 KiB
CSS
Executable File
116 lines
1.9 KiB
CSS
Executable File
:root {
|
|
--bg: #f4f5f7;
|
|
--surface: #ffffff;
|
|
--border: #d8dce3;
|
|
--text: #1a1d23;
|
|
--text-muted: #5c6573;
|
|
--accent: #2563eb;
|
|
--accent-hover: #1d4ed8;
|
|
--positive: #15803d;
|
|
--positive-bg: #dcfce7;
|
|
--negative: #b91c1c;
|
|
--negative-bg: #fee2e2;
|
|
--zero: #6b7280;
|
|
--weekend-bg: #f8fafc;
|
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
--radius: 8px;
|
|
--radius-sm: 6px;
|
|
--surface-2: #f8fafc;
|
|
--font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
|
|
|
|
/* Aliases for dashboard JS inline styles */
|
|
--green: var(--positive);
|
|
--red: var(--negative);
|
|
--amber: #d97706;
|
|
--blue: var(--accent);
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: var(--font);
|
|
font-size: 15px;
|
|
line-height: 1.5;
|
|
color: var(--text);
|
|
background: var(--bg);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
|
|
button {
|
|
font: inherit;
|
|
}
|
|
|
|
.tagline {
|
|
margin: 0.25rem 0 0;
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
font: inherit;
|
|
font-size: 0.875rem;
|
|
padding: 0.45rem 0.9rem;
|
|
border-radius: var(--radius);
|
|
border: 1px solid var(--border);
|
|
cursor: pointer;
|
|
background: var(--surface);
|
|
color: var(--text);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn:hover:not(:disabled) {
|
|
background: var(--bg);
|
|
}
|
|
|
|
.btn:focus-visible:not(:disabled) {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.btn:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--accent);
|
|
color: #fff;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.btn-primary:hover:not(:disabled) {
|
|
background: var(--accent-hover);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: var(--surface);
|
|
}
|
|
|
|
.btn-ghost {
|
|
border-color: transparent;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|