blob: 16c85a259966cfb7703502e8d792ae96c46bd5ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<title>glass</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<style>
* {
box-sizing: border-box;
}
html,body {
margin: 0; padding: 0;
width: 100%; height: 100%;
overflow: hidden;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
user-select: none;
}
</style>
</head>
<body>
</body>
<script src='bundle.js'></script>
</html>
|