diff options
| author | Jules Laplace <jules@okfoc.us> | 2017-04-29 13:49:36 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2017-04-29 13:49:36 -0400 |
| commit | c27f800fa586b40d2b9baa648cb0c894fdc1e4ef (patch) | |
| tree | 0465838d21beedcac9154d3ecd99fe606e418123 /index.html | |
| parent | 91ff874dfe5f7377dc7412dec9a78d03aad45c4d (diff) | |
client init
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..c17aafb --- /dev/null +++ b/index.html @@ -0,0 +1,32 @@ +<html> +<head> +<title>honeycomb</title> +<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> +<style> +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; +} +div { + display: inline-block; +} +.desktop body { + user-select: none; +} +@media only screen and (max-device-width: 800px) { + html,body { + margin: 0; + padding: 0; + } +} +</style> +</head> +<body> +</body> +<script> + var s = document.createElement('script'); + s.setAttribute('src','bundle.js?' + Date.now()); + document.body.appendChild(s) +</script> +</html> |
