-
Notifications
You must be signed in to change notification settings - Fork 81
/
index.html
32 lines (28 loc) · 908 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Pixel.Web</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="screen-orientation" content="portrait" />
<link rel="shortcut icon" href="https://avatars3.githubusercontent.com/u/12763277?v=3&s=460">
<style>
* {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
body,
html {
width: 100%;
height: 100%;
background-color: #f4f5f5;
font-size: 10px;
font-family: -apple-system, PingFang SC, Hiragino Sans GB, Arial, Microsoft YaHei, Helvetica Neue, sans-serif;
}
</style>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>