From c4f6187263c5840b76ad005cde12d0752eb6adf1 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Wed, 23 Jul 2025 22:09:52 +1000 Subject: [PATCH] Avoid
  • 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. --- conservancy/static/css/conservancy.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/conservancy/static/css/conservancy.css b/conservancy/static/css/conservancy.css index 0ae3710e..aad7d150 100644 --- a/conservancy/static/css/conservancy.css +++ b/conservancy/static/css/conservancy.css @@ -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 */ -} \ No newline at end of file +}