Documents: Add variable for border thickness

This commit is contained in:
2024-03-28 15:56:46 +01:00
parent d501cfaf72
commit 9aa6cba1ff
5 changed files with 16 additions and 15 deletions

View File

@ -2,6 +2,7 @@
:root {
font-family: "Times New Roman", serif;
line-height: 1;
--border-thickness: 0.05pt;
}
* {
@ -58,7 +59,7 @@ header .type {
position: running(page-footer);
width: 165mm;
/* for some reason the position without the following statement changes on the second page */
border: 0.5pt solid #00000000;
border: var(--border-thickness) solid #00000000;
}
.footer-wrapper.left {
@ -95,7 +96,7 @@ header .type {
footer {
font-size: 10pt;
border-top: 0.5pt solid black;
border-top: var(--border-thickness) solid black;
height: 25mm;
padding-top: 1mm;
text-align: center;
@ -107,6 +108,6 @@ footer {
hr {
border: none;
border-top: 0.5pt solid black;
border-top: var(--border-thickness) solid black;
margin: 5mm 0;
}