From af54cec32623eeafce35b64b48ad21bcce74a79d Mon Sep 17 00:00:00 2001 From: J S Date: Mon, 27 Nov 2023 12:27:46 -0500 Subject: [PATCH] feat[table]: Added table coloring --- static/css/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 54be214..375dfac 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -129,3 +129,17 @@ position: relative; #mode-selector.dark button { color: #FFF } + +table, th, td{ +border: 1px solid; +border-collapse: collapse; +color: #000; +padding: 2pt; +} +th { +border: 2px solid; +} + +body.dark table, body.dark th, body.dark td { +color: #FFF; +}