From 6317fb8f40196f62ff5debcb1ef1685f57d27118 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 7 Nov 2025 12:51:34 +0100 Subject: [PATCH] contrib/html.sh: add a margin on left and right... ... for windows in landscape (wider than high). --- contrib/general/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/general/style.css b/contrib/general/style.css index d0cb371..f497edf 100644 --- a/contrib/general/style.css +++ b/contrib/general/style.css @@ -4,6 +4,12 @@ body { font-size: 10pt; background-color: transparent; } +@media only screen and (orientation: landscape) { + body { + margin-left: 10vw; + margin-right: 10vw; + } +} h2 { border-bottom: 1px solid #ccc; color: #000;