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 a4d4365735
commit 6317fb8f40

View file

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