-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
43 lines (36 loc) · 811 Bytes
/
popup.html
File metadata and controls
43 lines (36 loc) · 811 Bytes
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
<html>
<head>
<meta charset="utf-8">
<style>
* {
margin: 0;
padding: 0;
}
body {
width: 300px;
height: 80px;
}
div {
line-height: 50px;
font-size: 22px;
text-align: center;
display: flex;
flex-direction: column
}
a {
outline: none;
text-decoration: none;
color: black;
}
a:visited {
color: black;
}
</style>
</head>
<body>
<div id="clock_div">
<a href='https://github.com/shuiRong' target='_blanket'>作者: shuiRong</a>
<a href='https://github.com/v2exExtensions' target='_blanket'>源码: v2exExtensions</a>
</div>
</body>
</html>