-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
74 lines (62 loc) · 1.59 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
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vocab Master - Options</title>
<style>
body {
padding: 0 15px 15px;
width: 250px;
height: 200px;
}
h1 {
margin-top: 0;
padding-top: 0;
}
div {
float: left;
padding-bottom: 10px;
}
.fullWidth {
width: 100%;
}
label {
font-weight: bold;
min-width: 125px;
display: inline-block;
}
#statusLabel {
color: #389E38;
}
</style>
</head>
<body>
<h1>Reminder Options</h1>
<div class="fullWidth">
<p>Reminds you vocabulary while you surfing.</p>
</div>
<div class="fullWidth">
<label>Reminder activated?</label>
<input name="activated" type="checkbox">
</div>
<div class="fullWidth">
<label>Hide meaning?</label>
<input name="hideMeaning" type="checkbox">
</div>
<div class="fullWidth">
<label>Period (in minutes):</label> <input name="period" style="width: 15%; text-align: right;" type="number" />
</div>
<div class="fullWidth">
<label>Vocabulary List:</label>
<select name="vocabularyList">
<option value="globish">Globish</option>
<option value="gre">GRE</option>
</select>
</div>
<div class="fullWidth">
<label id="statusLabel"></label>
</div>
<script src="jquery.min.js"></script>
<script src="options.js"></script>
</body>
</html>