summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-03-03 05:38:35 +0100
committerJules Laplace <julescarbon@gmail.com>2018-03-03 05:38:35 +0100
commit636b62aa6d0d77e19a4b7bb3c039924eeb217a71 (patch)
tree042fa3404738e347f8d60f419fa600aa6030c61b /index.html
hall demo
Diffstat (limited to 'index.html')
-rw-r--r--index.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..9a4a9b4
--- /dev/null
+++ b/index.html
@@ -0,0 +1,41 @@
+<html>
+<head>
+<title>hall</title>
+<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=yes;">
+<style>
+* {
+ box-sizing: border-box;
+}
+html,body {
+ background: #eee;
+ margin: 0; padding: 0;
+ overflow: hidden;
+ -webkit-overflow-scrolling: auto;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ user-select: none;
+}
+html {
+ background: red;
+}
+#header {
+ position: fixed;
+ bottom: 20px; left: 0;
+ width: 100%;
+ color: #000;
+ font-size: 16px;
+ font-weight: 100;
+ text-align: center;
+ z-index: 20;
+ pointer-events: none;
+}
+canvas {
+ position: absolute;
+ top: 0; left: 0;
+}
+</style>
+</head>
+<body>
+ <div id="header">sonic model of the "manica lunga"</div>
+</body>
+<script src='bundle.js'></script>
+</html>