From 8e3508c31340feac8bb7d5afed83542dd482f518 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 20 Dec 2024 16:27:35 +0000 Subject: [PATCH] make libreboot.org text bigger on high dpi screens, the text looks far too small add a section for higher screen resolution, increasing the font size, and increase it for existing widths this makes the site much more readable on my 27" 1440p monitor. Signed-off-by: Leah Rowe --- site/global.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/site/global.css b/site/global.css index e80c1af..5cd4935 100644 --- a/site/global.css +++ b/site/global.css @@ -18,14 +18,21 @@ { html { - font-size: 0.95em; + font-size: 1.05em; } } @media (min-width:90em) { html { - font-size: 1.05em; + font-size: 1.15em; + } +} +@media (min-width:110em) +{ + html + { + font-size: 1.25em; } }