From 054f2a628ddec3fc1f301f4f01da7646199c9b0b Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Tue, 30 May 2023 08:16:06 +0200 Subject: page.c: Apply lightgray background to even cells This will help users to navigate through large tables. --- page.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/page.c b/page.c index 6c67484..cb2bffb 100644 --- a/page.c +++ b/page.c @@ -1330,6 +1330,10 @@ int page_style(struct http_response *const r) " display: flex;\n" " justify-content: center;\n" " text-decoration: auto;\n" + "}\n" + "tr:nth-child(even)\n" + "{\n" + " background-color: lightgray;\n" "}\n"; *r = (const struct http_response) -- cgit v1.2.3