-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpopup.html
61 lines (59 loc) · 1.65 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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Bitcoin Mining Monitor</title>
<script type="text/javascript" src="js/popup.js"></script>
<style>
body {
font-family: sans-serif;
font-size: 12px;
}
h3 {
margin-bottom: 5px;
}
h4 {
/* color: #f00;*/
}
#summary {
font-weight: bolder;
border-top: 1px solid #000;
}
table {
width: 300px;
}
td, th {
padding: 2px 3px;
}
tr:nth-child(even){
background: #e6e6e6;
}
tr:nth-child(odd){
}
td:nth-child(2){
text-align: right;
}
td:nth-child(3){
text-align: center;
}
td:nth-child(4), td:nth-child(5), td:nth-child(6), td:nth-child(7){
text-align: right;
}
p {
width: 300px;
}
a {
color: #000;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<div id="pools">
</div>
<p>Auto updates every 5 mins - Updated: <span id="ts"></span><br/><a href="http://bitcoincharts.com" target="_blank">Bitcoincharts</a> - weighted prices from last 24 hours</p>
</body>
</html>