-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
124 lines (100 loc) · 2.43 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>BidBuddy</title>
<style>
body {
margin: 10px;
padding: 0;
font-family: Helvetica, Arial, sans-serif;
font-size: 11px;
color: #333;
background: #EEE;
width: 503px;
}
#results .title a {
font-size: 14px;
text-decoration: none;
width: 150px;
display: block;
}
#results .title a:hover {
text-decoration: underline;
}
#results .price {
font-size: 14px;
}
#results .time {
font-weight: bold;
width: 100px;
}
#results .time span {
font-weight: normal;
width: 100px;
}
#results td + td {
padding-left: 10px;
}
#results .thumbnail img {
width: 150px;
height: auto;
}
#results .date {
display: block;
}
#results .price small {
color: #BBB;
font-size: 11px;
display: block;
}
input {
padding: 5px 0;
width: 380px;
margin-right: 5px;
margin-bottom: 5px;
}
button {
border-radius: 5px;
border: 1px solid #263553;
background-image: -webkit-gradient(linear, left top, left bottom, from(#357ce7), to(#14376d));
padding: 6px 15px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
color: white;
text-shadow: 0px -1px 0 rgba(0, 0, 0, 0.6);
cursor: pointer;
width: 70px;
}
.pageination {
text-align: center;
font-size: 20px;
color: #444;
}
.pageination a {
text-decoration: none;
color: #51789f;
}
</style>
</head>
<body>
<div>
<label for="query">Search: </label>
<input type="text" id="query" />
<button data-action="lb:save:query">Save</button>
</div>
<div>
<label for="exclude">Exclude <small>(comma separated, no spaces)</small>: </label>
<input type="text" name="exclude" id="exclude" style="width: 244px;" />
<button data-action="lb:save:exclude">Save</button>
</div>
<table id="results">
<tr><th>Loading...</th></tr>
</table>
<div class="pageination">
<a href="#" data-action="lb:page:prev">«</a>
<span id="page">1</span>
<a href="#" data-action="lb:page:next">»</a>
</div>
<script src="popup.js"></script>
</body>
</html>