From a57101001869aadf265d206e6070fa0d35d89c98 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 363bb43..221ef14 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;