summaryrefslogtreecommitdiff
path: root/options.html
blob: 66f64e5f2d2ff9c30cc93caf33c84427b8a3e2c9 (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
<!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">Foreground 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="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>