-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
67 lines (59 loc) · 1.52 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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<head>
<style>
* {
margin: 0;
padding: 0;
}
body {
width: 130px;
height: 90px;
}
div {
margin: 5px;
text-align: center;
font-size: 20px;
}
button {
display: inline-block;
zoom: 1;
*display: inline;
margin-top: 5px;
width: 100px;
height: 45px;
vertical-align: baseline;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
font: 16px/100% Arial, Helvetica, sans-serif;
text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
-webkit-border-radius: .5em;
-moz-border-radius: .5em;
border-radius: .5em;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
button:hover {
text-decoration: none;
}
button:active {
position: relative;
top: 1px;
}
</style>
</head>
<body>
<div>
<div id="title">
Better Zhihu
</div>
<div>
<button type="button" id="stop" onClick="ClickToStop">本页停用</button>
</div>
</div>
<script src="js/popup.js"></script>
</body>
</html>