You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
641 B
CSS
54 lines
641 B
CSS
3 years ago
|
@media print{
|
||
|
|
||
|
/* Define the size of the pages and layout settings */
|
||
|
|
||
|
@page {
|
||
|
size: 148mm 210mm;
|
||
|
marks: crop cross;
|
||
|
bleed: 5mm;
|
||
|
}
|
||
|
|
||
|
/* Custom font */
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "neuzeit";
|
||
|
src: url("fonts/NeuzeitOffice-Regular.ttf") format("ttf")
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: "fivo";
|
||
|
src: url("fonts/fivo-sans.medium.otf") format("otf")
|
||
|
}
|
||
|
|
||
|
/* Custom variables */
|
||
|
|
||
|
:root{
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
/* Rules for everything */
|
||
|
|
||
|
body{
|
||
|
font-family: "neuzeit";
|
||
|
}
|
||
|
|
||
|
/* Rules for the rest */
|
||
|
|
||
|
div{
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
|
||
|
p{
|
||
|
text-align: left;
|
||
|
font-size: 12px;
|
||
|
line-height: 15.5px;
|
||
|
}
|
||
|
|
||
|
h1{
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|