[FAFO] Limit width of content to 100em on large screens

We don't want to stretch the content too wide, this makes text harder to
read.
This commit is contained in:
Rahix 2026-03-11 21:34:50 +01:00
parent faf0448747
commit faf0650a5c

View file

@ -24,6 +24,15 @@ html, body {
font-weight: bold; font-weight: bold;
} }
body > div.dokuwiki {
position: relative;
margin: auto;
@media @screen_min-xlg {
max-width: 100em;
}
}
.dokuwiki { .dokuwiki {
.page ol li, .page ol li,
.page ul li, .page ul li,