summaryrefslogtreecommitdiff
path: root/lib/awprint/public/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/awprint/public/index.html')
-rw-r--r--lib/awprint/public/index.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/awprint/public/index.html b/lib/awprint/public/index.html
new file mode 100644
index 0000000..eb76d44
--- /dev/null
+++ b/lib/awprint/public/index.html
@@ -0,0 +1,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>