commit 33f79698cd0382c6c542aa57f9beac4b95943a9c
parent 8954a6256191c436faff8edbefb2bb6d34940a18
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date: Mon, 11 Mar 2024 10:32:53 -0700
Don't set th CSS font-weight property to normal
When I thought that <th> was for all table cells and didn't know
it was for headers and that <td> was for data, I obviously found
the bolded font annoying. Now that the cell data is a normal font
weight by default I'll leave <th> font-weight untouched.
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/css/main.css b/css/main.css
@@ -2,7 +2,6 @@ table, tr, th, td {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid black;
- font-weight: normal;
}
tr:nth-child(even) {