Avoid <li> items showing bolder than paragraph text

List items were showing as "font-weight: 400", where paragraph text was
"font-weight: 375". This isn't very obvious when using the Atkinson Hyperlegible Next
font, but is when custom fonts aren't being loaded.
This commit is contained in:
Ben Sturmfels 2025-07-23 22:09:52 +10:00
parent 85822cfd9f
commit c4f6187263
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -14,7 +14,6 @@ p, li {
p {
font-size: 1.1rem;
font-weight: 375;
}
h1, h2, h3, h4, h5, h6 {
@ -913,7 +912,7 @@ body {
sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1.125rem;
font-weight: 400;
font-weight: 375;
color: var(--black);
}
@ -1741,7 +1740,6 @@ Court Case Page Styles (MT/2025)
.case-content p {
font-size: 1.1rem;
line-height: 1.42;
font-weight: 375;
margin-top: 7px;
}
@ -1858,4 +1856,4 @@ Court Case Page Styles (MT/2025)
.toggle-section .summary-title {
display: block;
/* No extra indent needed, padding on summary handles it */
}
}