35 lines
452 B
CSS
35 lines
452 B
CSS
@font-face{
|
|
font-family: 'fantasque';
|
|
src:url('fonts/FantasqueSansMono-Regular.ttf');
|
|
}
|
|
|
|
body{
|
|
margin:10mm;
|
|
font-family: 'fantasque';
|
|
font-size: 12pt;
|
|
max-width: 210mm;
|
|
}
|
|
h1{
|
|
font-size: 400%;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
table{
|
|
width: 100%;
|
|
}
|
|
table, td{
|
|
border:1px solid;
|
|
}
|
|
tfoot td{
|
|
border:0;
|
|
font-weight: bold;
|
|
vertical-align: top;
|
|
}
|
|
td{
|
|
padding:10px 20px 50px;
|
|
line-height: 1.4;
|
|
}
|
|
small{
|
|
display: block;
|
|
margin-top:1em;
|
|
} |