forked from mrspeaker/whats-new-reddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
50 lines (47 loc) · 1.23 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>
form {
padding: 6px;
}
form label {
display: inline-block;
width: 200px;
line-height: 30px;
}
.number {
width: 70px;
}
#msg {
display: inline-block;
color: #ff6600;
}
a {
color: #dd5500;
text-decoration: none;
}
</style>
</head>
<body>
<form>
<div>
<label for="refresh">Refresh time (seconds)</label>
<input class="number" type="number" id="refresh" />
</div>
<div>
<label for="newPost">New post</label><input type="color" id="newPost"><br/>
<label for="progress">Progress bar</label><input type="color" id="progress"><br/>
<label for="progressEdge">Progress edge</label><input type="color" id="progressEdge"><br/>
</div>
<br/>
<button type="submit">Save</button>
<button id="btnReset">Reset to defaults</button>
<p id="msg"></p>
<p>Suggestions? Ping me <a href="https://twitter.com/mrspeaker">@mrspeaker</a>!</p>
</form>
<script src="Settings.js"></script>
<script src="options.js"></script>
</body>
</html>