Set size and margins for print

This commit is contained in:
Benjamin 2023-02-05 14:42:07 +01:00
parent 4e5ef36fb4
commit d66da677a6

12
cv.html
View file

@ -75,14 +75,20 @@
}
@media print {
body {
max-width: 72ch;
html, body {
max-width: initial;
font-size: 10pt;
background-color: #ffffff;
}
body,
a {
color: black;
color: #000000;
}
@page {
margin: 25mm;
size: A4;
}
}