67 lines
849 B
CSS
67 lines
849 B
CSS
|
|
:root {
|
|
font-family: "Times New Roman", serif;
|
|
line-height: 1;
|
|
--border-thickness: 0.5pt;
|
|
}
|
|
|
|
* {
|
|
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;
|
|
}
|
|
|
|
header {
|
|
height: 45mm;
|
|
padding: 10mm 0 0 0;
|
|
position: absolute;
|
|
top: -25mm;
|
|
left: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
header .name {
|
|
font-size: 18pt;
|
|
margin-top: 8mm;
|
|
font-weight: bold;
|
|
}
|
|
|
|
header .suffix {
|
|
font-size: 14pt;
|
|
font-weight: bold;
|
|
}
|
|
|
|
header .type {
|
|
font-size: 12pt;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.hidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top: var(--border-thickness) solid black;
|
|
margin: 5mm 0;
|
|
}
|