summaryrefslogtreecommitdiff
path: root/index.html
blob: 2175fbfc5753565143b25dfb241836c2e14a0cf5 (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
<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%;
}
.mobile #container {
	transform-origin: 50% 50%;
  transform: scale(0.6);
}
.desktop body {
  user-select: none;
}
.hex {
  transform: translate(-40px, -50px);
}
@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>