Initial GeoIntel V1 foundation
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-16 23:36:32 +02:00
commit 6ea3586a3e
605 changed files with 45284 additions and 0 deletions
+87
View File
@@ -0,0 +1,87 @@
@import 'maplibre-gl/dist/maplibre-gl.css';
:root {
--bg: #0f172a;
--panel: #ffffff;
--muted: #475569;
--line: #cbd5e1;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Inter', 'Avenir Next', 'Segoe UI', sans-serif;
color: #0f172a;
background: radial-gradient(circle at top, #1d4ed8 0%, #1e293b 45%, #020617 100%);
}
.app-shell {
min-height: 100vh;
padding: 1rem;
}
.app-shell,
section {
background: color-mix(in srgb, var(--panel) 92%, transparent);
}
.workspace-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1rem;
}
section {
border: 1px solid var(--line);
border-radius: 10px;
padding: 0.9rem;
}
h1,
h2 {
margin-top: 0;
}
input,
textarea,
button,
select {
width: 100%;
padding: 0.5rem;
margin-top: 0.4rem;
font: inherit;
border: 1px solid #94a3b8;
border-radius: 6px;
}
button {
cursor: pointer;
}
.demo-actions {
margin-top: 0.75rem;
padding-top: 0.75rem;
border-top: 1px solid var(--line);
}
ul {
padding-left: 1.1rem;
margin-top: 0.6rem;
}
.error {
color: #7f1d1d;
background: #fee2e2;
padding: 0.6rem;
border-radius: 8px;
}
.map-container {
width: 100%;
height: 460px;
border: 1px solid #94a3b8;
border-radius: 8px;
}