-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
66 lines (65 loc) · 1.44 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>Clock Options</title>
<link rel="stylesheet" href="options.css" />
<link rel="shortcut icon" href="icon-16.png" />
<script src="jquery.js"></script>
<script src="options.js"></script>
</head>
<body>
<div>
<label>
<a target="_blank" href="/clock.html" title="click to open the clock in a new tab">Open Clock</a>
</label>
</div>
<div>
<label>
<input id="analog" type="checkbox" /> Analog Mode
</label>
</div>
<div>
<label>
<input id="military" type="checkbox" /> 24 Hour Format
</label>
</div>
<div>
<label>
Pop-up Size <input id="size" type="range" min="72" max="408" step="12" />
</label>
</div>
<div>
<label>
Accent Color <input id="accent" type="text" />
</label>
</div>
<div>
<label>
Foreground Color <input id="foreground" type="text" />
</label>
</div>
<div>
<label>
Background Color <input id="background" type="text" />
</label>
</div>
<div>
<label>
Font
<select id="font">
<option value="serif">Serif</option>
<option value="sans-serif">Sans Serif</option>
<option value="monospace">Monospace</option>
<option value="cursive">Cursive</option>
<option value="fantasy">Fantasy</option>
</select>
</label>
</div>
<div>
<button id="save" type="button" title="click to save options">Save</button>
</div>
<div>
<span id="status"></span>
</div>
</body>
</html>