-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpopup.html
46 lines (45 loc) · 1.13 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
<!doctype html>
<html>
<head>
<title>Star History</title>
<link href="./assets/nvd3.css" rel="stylesheet" type="text/css">
<style>
#chart,
svg {
display: block;
margin-left: auto;
margin-right: auto;
padding-right: 20pt;
width: 700px;
height: 500px;
}
#theGif {
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 230px;
}
h2 {
text-align:center;
}
</style>
</head>
<body>
<h2 style="background-position:top center;">Star History</h2>
<div id="container" style="width:730px; height:500px;">
<div id="chart">
<svg></svg>
</div>
<img src="./assets/loadinfo.net.gif" alt="Loding..." id="theGif">
<a href="https://github.com/timqian/star-history-plugin"
style="position: absolute; bottom: 2px; right:5px;">
source code
</a>
<a href="http://timqian.com/star-history"
style="position: absolute; bottom: 2px; left:5px;">
Website
</a>
</div>
<script src="./build/bundle.js"></script>
</body>
</html>