-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (61 loc) · 1.78 KB
/
index.html
File metadata and controls
74 lines (61 loc) · 1.78 KB
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
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=640,initial-scale=0.5,user-scalable=no">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="icon/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="icon/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="icon/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="icon/apple-touch-icon-precomposed.png">
<style type="text/css" media="screen">
* {
margin:0;
padding:0;
border:none;
-webkit-user-select:none;
}
body {
background: black;
font: 28px/1em "Helvetica";
color: #FFF;
-webkit-tap-highlight-color: rgba(0,0,0,0);
overflow: hidden;
}
a {
color: #bfbfbf;
cursor: pointer;
}
.content {
line-height: 1.6;
color: #363B40;
}
.content ul {
margin-bottom: 20px;
}
.content a {
color: #0871BB;
}
.popover.content {
padding: 40px;
}
.tooltip {
background: #f5f5f5;
border: 1px solid #979797;
border-radius: 5px;
padding: 10px;
color: #111;
font-weight: bold;
font-size: 24pt;
box-shadow: 0 1px 20px rgba(0,0,0,0.2);
margin: 0 10px;
}
</style>
</head>
<body>
<script src="framer/framer.js"></script>
<script src="app.js"></script>
</body>
</html>