Bold table headers

This commit is contained in:
Florine W. Dekker 2022-12-14 20:45:27 +01:00
parent cba23b4911
commit e5e6a0d347
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fwdekker/template",
"version": "3.5.4",
"version": "3.5.5",
"description": "The base template for pages on fwdekker.com.",
"author": "Florine W. Dekker",
"license": "MIT",

View File

@ -11,11 +11,15 @@
--muted-color: hsl(205deg, 12%, 59%) !important;
}
/* pico.css: Bold labels, except for checkbox/radio labels */
/* pico.css: Bold <label> and <th>, except for checkbox/radio labels */
:root {
--form-label-font-weight: bold;
}
tr th {
font-weight: bold;
}
input:where([type="checkbox"], [type="radio"]) + label {
font-weight: normal;
}