-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
52 lines (45 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>浏览器屏幕取词翻译器</title>
<style>
body {
font-family: "微软雅黑", "黑体", Helvetica, Arial, Sans-Serif;
font-size: 100%;
padding: 15px;
}
ul {
margin: 0;
padding: 0;
}
li {
list-style-type: none;
padding: 7px 14px;
white-space: nowrap;
background-color: #419641;
margin: 10px;
border-radius: 5px;
text-align: center;
cursor: pointer;
color: #fff;
font-weight: bold;
}
a {
text-decoration: none;
color: #fff;
font-weight: bold;
outline: none;
}
.closed {
background-color: #d43f3a;
}
</style>
</head>
<body>
<ul>
<li class="shanbay">开启屏幕查词</li>
</ul>
<script src="js/popup.js"></script>
</body>
</html>