blob: eb76d44fe25fcc63cd213e12bba732fe8177068b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<html>
<head>
<title>Hansel and Gretel Print Shop</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=no'>
<style>
html,body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: 'Futura-Medium', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 13px;
background: black;
color: white;
padding: 5px;
}
.print {
display: inline-block;
border: 1px solid #f00;
margin: 5px;
cursor: pointer;
}
.print img {
display: block;
width: 250px;
margin: 5px;
}
.print div {
margin: 5px;
}
.print.printed {
border: 1px solid #333;
cursor: default;
}
</style>
</head>
<body>
<div id='react-root'></div>
</body>
<script>
var s = document.createElement('script');
s.setAttribute('src','public/bundle.js?' + Date.now());
document.body.appendChild(s)
</script>
</html>
|