logo

rc-status-page

Unnamed repository; edit this file 'description' to name the repository.
commit: 0a6f655c37b8168e723127700dee9f26be79d37a
parent 91aab9e48cad59cff783ddebd3dde94702ef57df
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sat,  8 Jun 2024 19:30:44 +0200

CSS: Allow light & dark color schemes, use bold on stop/crash

Diffstat:

Mrc-status-page.css7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/rc-status-page.css b/rc-status-page.css @@ -1,6 +1,9 @@ +:root { color-scheme: light dark; } .service-started { color:green; } -.service-stopped { color:red; } -.service-crashed { color:red; } +.service-stopped, .service-crashed { + color:red; + font-weight: bold; +} body { display: table; margin: 0 auto;