39024-vm/assets/css/custom.css
Flatlogic Bot 362dcb49bb 003
2026-03-06 13:41:26 +00:00

78 lines
1.6 KiB
CSS

:root {
--bg: #f9fafb;
--surface: #ffffff;
--surface-muted: #f3f4f6;
--border: #e5e7eb;
--text: #111827;
--muted: #6b7280;
--accent: #2563eb;
--accent-soft: #dbeafe;
--success: #059669;
--warning: #d97706;
--info: #0284c7;
--danger: #dc2626;
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}
* { box-sizing: border-box; }
body {
background: var(--bg);
color: var(--text);
font-family: "Inter", system-ui, -apple-system, sans-serif;
font-size: 14px;
line-height: 1.5;
margin: 0;
min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: all 0.2s; }
a:hover { opacity: 0.8; }
.card {
border-radius: var(--radius-md);
border: 1px solid var(--border);
background: var(--surface);
box-shadow: var(--shadow-sm);
overflow: hidden;
}
.card-header {
background: #f9fafb;
border-bottom: 1px solid var(--border);
font-weight: 600;
padding: 1rem;
}
.card-body { padding: 1.5rem; }
.btn {
padding: 0.5rem 1rem;
border-radius: var(--radius-sm);
font-weight: 500;
font-size: 14px;
transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: white; border: none; }
.btn-primary:hover { background: #1d4ed8; }
.btn-outline-primary { border: 1px solid var(--accent); color: var(--accent); }
.badge {
padding: 0.25rem 0.5rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 500;
}
.form-control {
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 0.6rem;
width: 100%;
}