From 697d651feb78e4996b07a71e24cbf5c313ed2eaa Mon Sep 17 00:00:00 2001 From: coon Date: Wed, 29 Nov 2023 16:00:37 +0100 Subject: [PATCH] static: use alternating colors on table --- static/flexbox/sanic.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/flexbox/sanic.css b/static/flexbox/sanic.css index 410be61..4c17732 100644 --- a/static/flexbox/sanic.css +++ b/static/flexbox/sanic.css @@ -24,6 +24,15 @@ table { border-spacing: 0pt; } + +table tr:nth-child(odd) td { + background:#1e1f1a; +} + +table tr:nth-child(even) td { + background:#171812; +} + #flexbox-container { display: flex; flex-direction: column;