-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
48 lines (39 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<style>
.light {
height: 20px;
width: 20px;
outline: none;
}
li {
list-style: none;
}
.green {
background-color: green;
}
.yellow {
background-color: yellow;
}
.red {
background-color: red;
}
.floating {
float: left;
}
</style>
</head>
<body>
<ul>
<li><button class="green light"></button><a href="http://site1/" target="_blank">Site 1</a></li>
<li><button class="green light"></button><a href="http://site2/" target="_blank">Site 2</a></li>
<li><button class="red light"></button><a href="http://site3/" target="_blank">Site 3</a></li>
</ul>
<ul id="placeholder"></ul>
<script src="popup.js"></script>
<script id="template" type="text/template">
<li><button class="gray light"></button><a href="#" target="_blank">#url</a></li>
</script>
</body>
</html>