-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
27 lines (27 loc) · 830 Bytes
/
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
<!DOCTYPE html>
<html lang="zh-tw">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/popup.css" />
<title>NO TITLE</title>
<style>
body {
width: 250px;
background-color: liner-gradient(45deg, #f3f3f3, #ffffff);
padding: 10px;
text-align: center;
transition: background-color 0.75s ease;
font-size: 13px;
font-family: 'Helvetica Neue', 'Lucida Grande', sans-serif;
}
.logo {
filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.7));
}
</style>
</head>
<body>
<p>Made by <a rel="noopener" href="https://github.com/dada878" target="_blank">Dada878</a></p>
</body>
</html>