-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
50 lines (43 loc) · 1 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
padding: 20px;
font-family: Arial, sans-serif;
}
.site-list {
margin: 20px 0;
}
.site-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
margin: 5px 0;
background-color: #f5f5f5;
border-radius: 4px;
}
.remove-btn {
background-color: #ff4444;
color: white;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
}
.remove-btn:hover {
background-color: #cc0000;
}
</style>
</head>
<body>
<h1>自定义滚动条设置</h1>
<div>
<h2>已启用的网站列表:</h2>
<div id="siteList" class="site-list"></div>
</div>
<script src="scripts/options.js"></script>
</body>
</html>