-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
64 lines (62 loc) · 1.5 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="x5-orientation" content="portrait" />
<meta name="screen-orientation" content="portrait" />
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<meta name="format-detection" content="telephone=no"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0">
<style>
html, body {height:100%}
.container {height:100%}
#app{
height: 100%;
}
html, body {
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
user-select: none;
-webkit-use-select:none;
-webkit-touch-callout: none;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, fieldset, lengend, button, input, textarea, th, td {
margin: 0;
padding: 0;
font-weight: normal
}
ul {
list-style: none
}
table {
border-collapse: collapse;
border-spacing: 0
}
textarea {
overflow: auto;
resize: none
}
a, button {
cursor: pointer
}
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box
}
a {
text-decoration: none;
color: inherit;
}
</style>
</head>
<body>
<div id="app"></div>
</body>
</html>