contrib/html.sh: add a margin on left and right...

... for windows in landscape (wider than high).
This commit is contained in:
Christian Hesse 2025-11-07 12:51:34 +01:00
parent 0af5d516a3
commit 12b1572208

View file

@ -4,6 +4,12 @@ body {
font-family: fira-sans, sans-serif;
font-size: 10pt;
}
@media only screen and (orientation: landscape) {
body {
margin-left: 10vw;
margin-right: 10vw;
}
}
h2 {
border-bottom: 1px solid #ccc;
color: #000;