Files
energy-frontend/frontend/src/style.css

117 lines
1.9 KiB
CSS

:root {
--bg: #0f1117;
--bg-card: #1a1d27;
--bg-input: #252830;
--border: #2e3140;
--text: #e4e6eb;
--text-muted: #8b8fa3;
--accent: #4f8ff7;
--accent-hover: #3a7ae0;
--green: #4caf50;
--orange: #ff9800;
--red: #f44336;
--radius: 8px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.5;
}
a {
color: var(--accent);
text-decoration: none;
}
.navbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1.5rem;
height: 56px;
background: var(--bg-card);
border-bottom: 1px solid var(--border);
}
.nav-brand {
font-size: 1.1rem;
font-weight: 600;
color: var(--text);
}
.card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.25rem;
}
.btn {
background: var(--accent);
color: #fff;
border: none;
border-radius: var(--radius);
padding: 0.5rem 1rem;
font-size: 0.9rem;
cursor: pointer;
transition: background 0.15s;
}
.btn:hover {
background: var(--accent-hover);
}
.btn:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.btn-ghost {
background: transparent;
color: var(--text-muted);
border: none;
padding: 0.5rem 1rem;
font-size: 0.9rem;
cursor: pointer;
border-radius: var(--radius);
transition: color 0.15s, background 0.15s;
}
.btn-ghost:hover {
color: var(--text);
background: var(--bg-input);
}
input {
background: var(--bg-input);
border: 1px solid var(--border);
border-radius: var(--radius);
color: var(--text);
padding: 0.5rem 0.75rem;
font-size: 0.9rem;
width: 100%;
}
input:focus {
outline: none;
border-color: var(--accent);
}
.error {
color: var(--red);
font-size: 0.875rem;
}
.text-muted {
color: var(--text-muted);
font-size: 0.85rem;
}