117 lines
2.1 KiB
CSS
117 lines
2.1 KiB
CSS
:root {
|
|
--bg: #0f1117;
|
|
--bg-elevated: #171a23;
|
|
--bg-input: #1e222c;
|
|
--border: #2a2f3a;
|
|
--border-strong: #3a4150;
|
|
--text: #e6e8ee;
|
|
--text-muted: #9aa2b1;
|
|
--accent: #6366f1;
|
|
--accent-hover: #7c7ff5;
|
|
--accent-soft: rgba(99, 102, 241, 0.15);
|
|
--danger: #ef4444;
|
|
--success: #22c55e;
|
|
--radius: 10px;
|
|
--font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
|
|
"Liberation Mono", monospace;
|
|
--font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
|
|
sans-serif;
|
|
|
|
color-scheme: dark;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
font-family: var(--font-sans);
|
|
line-height: 1.5;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
color: var(--accent-hover);
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
line-height: 1.2;
|
|
margin: 0;
|
|
}
|
|
|
|
button {
|
|
font-family: inherit;
|
|
font-size: 0.875rem;
|
|
cursor: pointer;
|
|
border: 1px solid var(--border-strong);
|
|
background: var(--bg-input);
|
|
color: var(--text);
|
|
padding: 0.5rem 0.9rem;
|
|
border-radius: 8px;
|
|
transition: background 0.12s ease, border-color 0.12s ease;
|
|
}
|
|
button:hover {
|
|
background: var(--bg-elevated);
|
|
border-color: var(--accent);
|
|
}
|
|
button:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
button.primary {
|
|
background: var(--accent);
|
|
border-color: var(--accent);
|
|
color: #fff;
|
|
}
|
|
button.primary:hover {
|
|
background: var(--accent-hover);
|
|
border-color: var(--accent-hover);
|
|
}
|
|
|
|
input[type="text"],
|
|
textarea,
|
|
select {
|
|
font-family: var(--font-mono);
|
|
font-size: 0.875rem;
|
|
width: 100%;
|
|
background: var(--bg-input);
|
|
color: var(--text);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 0.6rem 0.75rem;
|
|
resize: vertical;
|
|
}
|
|
input[type="text"]:focus,
|
|
textarea:focus,
|
|
select:focus {
|
|
outline: none;
|
|
border-color: var(--accent);
|
|
box-shadow: 0 0 0 3px var(--accent-soft);
|
|
}
|
|
|
|
label {
|
|
font-size: 0.8rem;
|
|
color: var(--text-muted);
|
|
font-family: var(--font-sans);
|
|
}
|
|
|
|
textarea {
|
|
min-height: 8rem;
|
|
line-height: 1.5;
|
|
}
|