75 lines
1.3 KiB
CSS
75 lines
1.3 KiB
CSS
|
|
:root {
|
||
|
|
--bg: #0b0f17;
|
||
|
|
--panel: #141a26;
|
||
|
|
--text: #e6ecf2;
|
||
|
|
--muted: #9aa7b2;
|
||
|
|
--accent: #4f8cff;
|
||
|
|
}
|
||
|
|
|
||
|
|
* { box-sizing: border-box; }
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
||
|
|
background: var(--bg);
|
||
|
|
color: var(--text);
|
||
|
|
padding: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
header {
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 { margin: 0 0 6px 0; }
|
||
|
|
|
||
|
|
.sub { color: var(--muted); margin: 0; }
|
||
|
|
|
||
|
|
.kpi-grid {
|
||
|
|
display: grid;
|
||
|
|
gap: 16px;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.kpi-card {
|
||
|
|
background: var(--panel);
|
||
|
|
border: 1px solid #1f2a3a;
|
||
|
|
border-radius: 12px;
|
||
|
|
padding: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.kpi-label { color: var(--muted); font-size: 13px; }
|
||
|
|
.kpi-value { font-size: 22px; margin-top: 6px; }
|
||
|
|
|
||
|
|
.panel {
|
||
|
|
background: var(--panel);
|
||
|
|
border: 1px solid #1f2a3a;
|
||
|
|
border-radius: 12px;
|
||
|
|
padding: 16px;
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.csv-list { display: flex; flex-wrap: wrap; gap: 8px; }
|
||
|
|
.csv-pill {
|
||
|
|
background: #1f2a3a;
|
||
|
|
padding: 6px 10px;
|
||
|
|
border-radius: 999px;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table-wrap { overflow-x: auto; }
|
||
|
|
|
||
|
|
.table {
|
||
|
|
width: 100%;
|
||
|
|
border-collapse: collapse;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table th, .table td {
|
||
|
|
border-bottom: 1px solid #1f2a3a;
|
||
|
|
padding: 6px 8px;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.table th { color: var(--muted); }
|