-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
97 lines (94 loc) · 2.92 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Options</title>
<style type="text/css">
html,
body {
min-width: 250px;
min-height: 200px;
text-align: center;
display: flex;
justify-content: center;
font-family: "Lato-ed942f29-391b-4914-8dc3-ce527fd6d8cc", sans-serif;
font-size: 16px;
font-weight: 400;
color: #000;
}
h3 {
color: #696969;
margin-top: 5px;
}
button {
background-color: #e9e9e9;
border: none;
color: #000;
padding: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
border-radius: 3px;
min-width: 150px;
}
</style>
<link rel="stylesheet" href="css/content-styles.css">
</head>
<body>
<div class="container">
Auto Alert:<br><select id="autoOption">
<option value="auto">
Get Automatic Alerts
</option>
<option value="none">
Disable Automatic Alerts
</option>
</select>
<br><br><br>
Alert Time On Screen:<br><select id="screenTime">
<option value="12">
12 Seconds
</option>
<option value="11">
11 Seconds
</option>
<option value="10">
10 Seconds
</option>
<option value="9">
9 Seconds
</option>
<option value="8">
8 Seconds
</option>
<option value="7">
7 Seconds
</option>
<option value="6">
6 Seconds
</option>
<option value="5">
5 Seconds
</option>
<option value="4">
4 Seconds
</option>
<option value="3">
3 Seconds
</option>
<option value="2">
2 Seconds
</option>
<option value="1">
1 Second
</option>
</select>
<div id="status"></div><br>
<br>
<button id="save">Save Settings</button>
</div>
<script src="js/options.js" type="text/javascript"></script>
</body>
</html>