From fe099c5053a5874027e42155505c8ef64b464907 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Mon, 4 Dec 2023 00:52:11 +0100 Subject: [PATCH] Update default.html Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- _layouts/default.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/_layouts/default.html b/_layouts/default.html index 5925255..1debd70 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -126,6 +126,22 @@ .highlight .code { color: #000000; font-family: 'Courier New', monospace; } .code { color: #000000; font-family: 'Courier New', monospace; } code { color: #000000; font-family: 'Courier New', monospace; } + + th { + background-color: white; /* White background for header */ + } + + tr:nth-child(even) { + background-color: white; /* Blue for even rows */ + } + + tr:nth-child(odd) { + background-color: #d5e3f3; /* White for odd rows */ + } + + th:empty { + display: none; /* This will make an empty header cell vanish */ + } img { display: block;