-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·54 lines (51 loc) · 1.04 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>Leap Motion Controller</title>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300,800" />
<style>
body {
min-width: 357px;
overflow-x: hidden;
font-family: 'Open Sans', sans-serif;
padding: 20px;
margin: 0;
}
h1 {
background: url('img/icon_38.png') center left no-repeat;
height: 38px;
line-height: 38px;
text-indent: 50px;
font-size: 24px;
color: #666;
margin: 0;
padding: 0;
font-weight: normal;
}
p {
text-align: center;
margin: 0;
padding: 0;
line-height: 30px;
}
p span {
color: #CCC;
font-size: 24px;
line-height: 30px;
}
a {
text-decoration: none;
color: #9ac847;
outline: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<h1>Leap Motion Controller</h1>
<p><span>»</span> Update Settings on <a id="opts_link" href="#" target="_blank">Options Page</a></p>
</body>
</html>