-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
67 lines (61 loc) · 1.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<script type="text/javascript" src="jquery.1.8.2.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
<link rel="Stylesheet" type="text/css" href="wColorPicker.css" />
<script type="text/javascript" src="wColorPicker.js"></script>
<style type="text/css">
body {
font-family: Calibri, Verdana, sans-serif;
font-size: 10pt;
}
#interesting-tags {
width: 235px;
list-style: none outside none;
margin: 0;
padding: 0 10px;
}
.taglabel {
float:left;
padding: 4px 10px;
width: 136px;
}
#interesting-tags li {
background-color: #EFF3F7;
margin: 2px 0;
height: 32px;
}
#interesting-tags li input {
width: 54px;
}
#controls {
float: left;
width: 100%;
text-align: center;
}
.swatch {
width: 10px;
border: 1px black solid;
height: 10px;
float: left;
margin: 7px 5px;
}
.hoverBox{
float:left;
margin: 1px;
padding: 1px;
}
.content {
margin: 10px 40px;
}
#save {
padding: 5px 12px;
}
</style>
</head>
<div class="content">
<ul id="interesting-tags">
</ul>
<div id="controls"><input id="save" name="save" type="button" value="Save" size="10"></div>
</div>
</html>