80 lines
991 B
CSS
80 lines
991 B
CSS
|
|
:root {
|
|
font-family: "Times New Roman", serif;
|
|
line-height: 1;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
table td,
|
|
table th {
|
|
padding: 0.5mm 1mm;
|
|
}
|
|
|
|
table th {
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-wrapper {
|
|
position: running(page-footer);
|
|
width: 165mm;
|
|
}
|
|
|
|
.pre-footer {
|
|
margin: 1em 0;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
.pre-footer > * {
|
|
display: inline-block;
|
|
width: 33%;
|
|
}
|
|
|
|
.pre-footer .date {
|
|
text-align: left;
|
|
}
|
|
|
|
.pre-footer .doc-id {
|
|
text-align: center;
|
|
font-style: italic;
|
|
}
|
|
|
|
.pre-footer .page {
|
|
text-align: right;
|
|
float: right;
|
|
}
|
|
|
|
.pre-footer .page::after {
|
|
content: "Seite 1 von 1";
|
|
}
|
|
|
|
footer {
|
|
font-size: 10pt;
|
|
border-top: 0.5pt solid black;
|
|
height: 25mm;
|
|
padding-top: 1mm;
|
|
text-align: center;
|
|
}
|
|
|
|
.hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: 0.5pt solid black;
|
|
margin: 5mm 0;
|
|
}
|