Files
stack/assets/css/dashboard.css
kert 8bd649d9ab feat: skinny packages, tree reorg, cloud abstraction (refs #182–#201)
P23 — Skinny Packages:
- Break conf→bib circular dependency with lazy guarded import
- Extract aco.table.base → conf.table_base (shared foundation)
- Add try/except ImportError guards on all cross-module imports
- Define per-module optional-dependencies in pyproject.toml
- Slim base deps to just pydantic; all heavy deps in optional groups
- Add gen_config.py --check validation for module/dep sync
- Add skinny-install CI matrix job (tests each extra in isolation)

P24 — Tree Reorganization:
- Move service configs to infra/ (traefik, coredns, grafana, etc.)
- Consolidate Dockerfiles under infra/images/
- Move styles/ → assets/css/ + assets/icons/ + assets/nature.py
- Update compose.yml, stack.toml, gen_config.py, all backend emitters
- Update bootstrap scripts and install_certs.sh

P25 — Cloud Provider Abstraction:
- Add cloud/ directory with self-hosted, aws, gcp, azure stubs
- Add cloud contexts (aws, gcp, azure) to stack.toml
- Add conf/storage.py — get_filesystem() dispatches per context
- Add aws, gcp, azure optional dependency groups
- Document service mapping for each provider

All 11955 tests pass. Zero functionality lost.
2026-03-24 15:00:26 -04:00

193 lines
4.0 KiB
CSS

/* LOCH — deep-navy design system for Dashboard (nginx landing page) */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&display=swap');
:root {
--ds-navy: #0a1628;
--ds-navy-light: #162040;
--ds-navy-mid: #1e2d50;
--ds-slate: #2a3f5f;
--ds-steel: #7a90b0;
--ds-white: #f0f0f0;
--ds-blue: #4488dd;
--ds-blue-light: #5588dd;
--ds-blue-bright: #88aaee;
--ds-red: #ee5577;
--ds-red-light: #dd4466;
--ds-green: #44aa44;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'IBM Plex Mono', 'Courier New', monospace;
background: var(--ds-navy);
min-height: 100vh;
overflow-x: hidden;
color: var(--ds-white);
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 40px 20px;
border-bottom: 4px solid var(--ds-red);
}
h1 {
font-family: 'IBM Plex Mono', monospace;
font-weight: 600;
font-size: 2rem;
color: var(--ds-white);
letter-spacing: 6px;
text-shadow: 3px 3px 0 var(--ds-navy-mid);
}
.subtitle {
font-family: 'IBM Plex Mono', monospace;
color: var(--ds-blue-bright);
font-size: 0.55rem;
margin-top: 15px;
letter-spacing: 2px;
}
.score-bar {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 20px;
font-family: 'IBM Plex Mono', monospace;
font-size: 0.5rem;
}
.score-item {
color: var(--ds-white);
background: var(--ds-blue);
padding: 6px 14px;
border: 2px solid var(--ds-blue-light);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
padding: 20px 0;
margin-top: 20px;
}
.tile {
background: var(--ds-navy-light);
border: 3px solid var(--ds-slate);
padding: 25px;
position: relative;
overflow: hidden;
transition: all 0.2s ease;
cursor: pointer;
text-decoration: none;
display: block;
}
.tile:hover {
border-color: var(--ds-blue);
background: var(--ds-navy-mid);
}
/* All tile variants use the same base style */
.tile .icon {
font-size: 2.5rem;
margin-bottom: 15px;
display: block;
}
.tile.storage .icon,
.tile.database .icon { color: var(--ds-red); }
.tile.git .icon { color: var(--ds-blue-bright); }
.tile.ci .icon { color: var(--ds-blue-light); }
.tile.notebook .icon,
.tile.research .icon { color: var(--ds-white); }
.tile.catalog .icon { color: var(--ds-blue-bright); }
.tile.query .icon { color: var(--ds-blue-light); }
.tile.observability .icon { color: var(--ds-red-light); }
.tile.metrics .icon { color: var(--ds-blue-bright); }
.tile.logs .icon { color: var(--ds-blue-light); }
.tile.proxy .icon { color: var(--ds-white); }
.tile-title {
font-family: 'IBM Plex Mono', monospace;
font-size: 0.7rem;
color: var(--ds-white);
margin-bottom: 10px;
letter-spacing: 1px;
}
.tile-desc {
font-size: 0.75rem;
color: var(--ds-steel);
line-height: 1.6;
margin-bottom: 15px;
}
.tile-port {
font-size: 0.7rem;
color: var(--ds-blue-bright);
display: inline-block;
}
.status {
position: absolute;
top: 15px;
right: 15px;
width: 10px;
height: 10px;
background: var(--ds-green);
border-radius: 50%;
}
.stripe {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: var(--ds-red);
}
footer {
text-align: center;
padding: 40px;
color: var(--ds-slate);
font-size: 0.7rem;
border-top: 3px solid var(--ds-slate);
margin-top: 20px;
}
footer span {
color: var(--ds-red);
}
/* Badges */
.badge {
position: absolute;
top: -1px;
left: 20px;
font-family: 'IBM Plex Mono', monospace;
color: var(--ds-white);
font-size: 0.35rem;
padding: 4px 8px;
text-transform: uppercase;
letter-spacing: 1px;
}
.badge.new { background: var(--ds-red); }
.badge.gpu { background: var(--ds-blue); }
.badge.data { background: var(--ds-blue); }