45 lines
885 B
HTML
45 lines
885 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
<title>Sponsoring contract</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Sackers Gothic Std';
|
|
font-weight: 500;
|
|
background: rgb(241,241,241);
|
|
-webkit-print-color-adjust: exact;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.page {
|
|
position: relative;
|
|
height: 148mm;
|
|
width: 210mm;
|
|
display: block;
|
|
background: white;
|
|
page-break-after: auto;
|
|
margin: 50px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media print {
|
|
body {
|
|
background: white;
|
|
}
|
|
|
|
.page {
|
|
margin: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="page">
|
|
<p style="font-size: 100vw;">{{Runner Name}}</p>
|
|
</div>
|
|
</body>
|
|
</html> |