- replace fragile Docker file bind mount with persistent /data storage - add container entrypoint to link config.json from persistent storage - tighten Docker image permissions and add a basic healthcheck - add .dockerignore to keep git metadata and runtime files out of the image - bundle hls.js locally instead of loading it from a CDN - download and serve UI/theme fonts locally instead of Google Fonts - update service worker cache entries for local assets - refresh README to reflect local bundled assets and cleaner deployment docs
25 lines
548 B
CSS
25 lines
548 B
CSS
/*
|
|
* GridTV Theme — Steampunk (Cuivre victorien)
|
|
* Brun chaud, cuivre, laiton. Très 1880.
|
|
*/
|
|
|
|
:root {
|
|
--bg: #160e04;
|
|
--surface: #201408;
|
|
--surface2: #2c1e0c;
|
|
--border: #4a2e0a;
|
|
--border-bright: #7a4e18;
|
|
--accent: #c87808;
|
|
--accent2: #e0a020;
|
|
--accent-live: #cc3000;
|
|
--text: #d4a050;
|
|
--text-dim: #7a5428;
|
|
--text-bright: #f0cc80;
|
|
--prog-bg: #1c1206;
|
|
--prog-border: #5a380c;
|
|
--prog-live-bg: #281800;
|
|
--prog-live-border: #c87808;
|
|
--font-ui: 'IM Fell English', serif;
|
|
--font-mono: 'Share Tech Mono', monospace;
|
|
}
|