blob: 5288f884bb46d6e6b0ac191b6d25bd2207f588a0 (
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
|
<html>
<head>
<title>honeycomb</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style>
html,body { margin: 0; padding: 0; width: 100%; height: 100%; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 13px;
background-color: #333;
}
#container {
position: absolute; top: 0; left: 0;
width: 100%; height: 100%;
}
.desktop body {
user-select: none;
}
@media only screen and (max-device-width: 800px) {
html,body {
margin: 0;
padding: 0;
}
}
</style>
</head>
<body>
<div id="container"></div>
</body>
<script>
var s = document.createElement('script');
s.setAttribute('src','bundle.js?' + Date.now());
document.body.appendChild(s)
</script>
</html>
|