figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

commit c186443c8dc3436c5a37553cbd52cc65387811da
parent 07e5c5f97404cbd4cfb0c1ac8246d49e97c9ffbf
Author: FIGBERT <figbert@figbert.com>
Date:   Mon,  2 Nov 2020 00:13:52 -0800

Add table styles to global.css

Diffstat:
Mstatic/global.css | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/static/global.css b/static/global.css @@ -100,6 +100,21 @@ h6::before { color: var(--secondary-color); } +table { + border-collapse: collapse; + width: 100%; +} + +thead { + background-color: var(--secondary-color); +} + +td, th { + border: 1px solid var(--text-color); + padding: 0.5rem; + text-align: left; +} + .emoji > svg { width: 2rem; height: auto;