-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
48 lines (48 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
html, body, button {
font-family: sans-serif;
font-size: 16px;
height: 100%;
color: black;
}
button {
border: 0;
background: #d3d3d3;
}
button:hover {
background: #c5c5c5;
}
button:active {
background: #b0b0b0;
}
#whitelist {
height: 78%;
width: 600px;
min-width: 40%;
max-width: 95%;
font-size: 14px;
color: black;
}
#saveWhitelist {
height: 28px;
width: 78px;
}
</style>
</head>
<body>
<h3>Whitelist</h3>
<textarea id="whitelist"></textarea><br/>
<button id="saveWhitelist">Save</button>
<p>
<a href="https://github.com/wooque/site-bleacher/issues">Report issue</a>
</p>
<script src="common.js"></script>
<script src="options.js"></script>
</body>
</html>