blob: f79c5b121a42f682d35222a853ee9a4552d367d4 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tempo options</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="fonts/lato.css" />
<script src="options.js"></script>
</head>
<body>
<div>
<p style="margin: 0em;">Time format:</p>
<input type="radio" name="timefmt" id="t12" /><label for="t12"> 12-hour</label><br />
<input type="radio" name="timefmt" id="t24" /><label for="t24"> 24-hour</label>
</div>
<div style="margin-top: 1em;">
<p style="margin: 0em"><label for="fg">Time colour: <span style="color: #409;">(blank for default)</span></label></p>
<input type="text" name="fg" id="fg" placeholder="#ddd" />
</div>
<div style="margin-top: 1em;">
<p style="margin: 0em"><label for="fg_date">Date colour: <span style="color: #409;">(blank for default)</span></label></p>
<input type="text" name="fg_date" id="fg_date" placeholder="#777" />
</div>
<div style="margin-top: 1em;">
<p style="margin: 0em;"><label for="bg">Background colour: <span style="color: #409;">(blank for default)</span></label></p>
<input type="text" name="bg" id="bg" placeholder="#222" />
</div>
<div style="margin-top: 1em;">
<button id="save">Save</button>
<span id="status"></span>
</div>
</body>
</html>
|