Files
cheesy-arena-lite/templates/bracket_report.html
2022-08-20 21:25:22 -07:00

24 lines
385 B
HTML

<html>
<head>
<title>Bracket Report</title>
<style>
@page {
margin: 0;
size: landscape;
}
#bracket {
position: fixed;
top: -60px;
left: -250px;
scale: 0.75;
}
</style>
</head>
<body>
<div id="bracket"><div>{{.}}</div></div>
<script>
window.print();
</script>
</body>
</html>