ezgg-badge-generator/template/template_badge_180_rotated.html
2026-03-20 19:04:53 +01:00

39 lines
483 B
HTML

<html>
<head>
<style>
@page {
size: {{ width }} {{ height }};
margin: 0;
}
body {
margin: 0;
}
.page {
width: {{ width }};
height: {{ height }};
page-break-after: always;
display: flex;
align-items: center;
justify-content: center;
}
.rotated {
transform: rotate(180deg);
transform-origin: center;
}
</style>
</head>
<body>
<div class="page">
{{ svg | safe }}
</div>
<div class="page rotated">
{{ svg | safe }}
</div>
</body>
</html>