27 lines
516 B
CSS
27 lines
516 B
CSS
|
@media print {
|
||
|
@page {
|
||
|
size: A4; /* DIN A4 standard, Europe */
|
||
|
margin: 2em;
|
||
|
}
|
||
|
html {
|
||
|
--background-color: #fff !important;
|
||
|
--color: #000 !important;
|
||
|
--accent-color: #000 !important;
|
||
|
--accent-color-fg: #fff !important;
|
||
|
--font-family: "Lexend Deca" !important;
|
||
|
--document-width: 100% !important;
|
||
|
|
||
|
--border-style: calc(1em / 16) solid var(--color);
|
||
|
}
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
#accessibility {
|
||
|
display: none;
|
||
|
}
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
}
|