Added a bs example template

ref #3
This commit is contained in:
Nicolai Ort 2021-02-02 11:20:47 +01:00
parent a7d4001ad9
commit f726a6e699
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
<html>
<head>
<meta charset="utf8">
<title>Sponsoring contract</title>
<style>
html, body {
margin: 0;
padding: 0;
font-family: 'Sackers Gothic Std';
font-weight: 500;
font-size: 70px;
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>{{Runner Name}}</p>
</div>
</body>
</html>