diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-11-07 22:34:42 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-11-07 22:34:42 +0100 |
commit | 0ad27f430dd8cd0dad17ffbce7add868b3deb3b6 (patch) | |
tree | a2825ddab2acabea03abd18bcbb5daa931dae550 /src/http/static | |
parent | d9570411134273d690e783748dd572696fc14c6f (diff) |
Fix width of index table
Diffstat (limited to 'src/http/static')
-rw-r--r-- | src/http/static/mediocre.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/http/static/mediocre.css b/src/http/static/mediocre.css index 26dee81..f065802 100644 --- a/src/http/static/mediocre.css +++ b/src/http/static/mediocre.css @@ -63,6 +63,11 @@ table { font-size: 0.8rem; } +/* Undo the coloring that new.css does */ +table tr:nth-child(even) { + background-color: initial; +} + table td { border: 0; margin: 0; @@ -73,7 +78,3 @@ table td input { margin: 0; width: 100%; } - -table tr:nth-child(even) { - background-color: initial; -} |