- 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
564 B
CSS
25 lines
564 B
CSS
/*
|
|
* GridTV Theme — Magazine (Vieux TV Guide années 60)
|
|
* Papier jauni, encre rouge et bleue, machine à écrire.
|
|
*/
|
|
|
|
:root {
|
|
--bg: #f2e8c8;
|
|
--surface: #ede0b0;
|
|
--surface2: #e4d49a;
|
|
--border: #b8a070;
|
|
--border-bright: #8a7040;
|
|
--accent: #b01020;
|
|
--accent2: #1a4a8a;
|
|
--accent-live: #b01020;
|
|
--text: #1a0e06;
|
|
--text-dim: #6a4a20;
|
|
--text-bright: #0a0602;
|
|
--prog-bg: #ede0b0;
|
|
--prog-border: #b8a070;
|
|
--prog-live-bg: #fff0e0;
|
|
--prog-live-border: #b01020;
|
|
--font-ui: 'Special Elite', serif;
|
|
--font-mono: 'Special Elite', serif;
|
|
}
|