Added UI with station cards, grouping and styling

This commit is contained in:
2026-05-07 23:22:05 +02:00
parent 02392b8c24
commit 02c1a4c58c
9 changed files with 444 additions and 8 deletions
+23 -4
View File
@@ -2,9 +2,28 @@
box-sizing: border-box;
}
body {
margin: 0;
font-synthesis: none;
text-rendering: optimizeLegibility;
:root {
--bg: #f0f2f5;
--surface: #ffffff;
--border: #dde1e7;
--text: #374151;
--text-dim:#9ca3af;
--text-hi: #111827;
--accent: #2563eb;
--sans: 'Poppins', system-ui, sans-serif;
font-family: var(--sans);
font-size: 14px;
line-height: 1.5;
color: var(--text);
background: var(--bg);
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
min-height: 100svh;
}