-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptions.html
59 lines (50 loc) · 1.8 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
<!DOCTYPE html>
<html>
<head>
<title data-i18nid="options_title">New Tab Options</title>
<link rel="stylesheet" href="css/newtab.css">
<link rel="stylesheet" href="css/options.css">
</head>
<body>
<div id="background-layer"></div>
<div id="clock"></div>
<div id="date"></div>
<section class="options">
<div class="switch">
<input type="checkbox" id="format">
<label for="format" data-i18nid="24_hour">24-hour</label>
<label for="format" data-i18nid="12_hour">12-hour</label>
</div>
<section>
<div class="checkbox">
<input type="checkbox" id="showDate">
<label for="showDate" data-i18nid="show_date">Show date</label>
</div>
<div class="checkbox">
<input type="checkbox" id="cycle">
<label for="cycle" data-i18nid="change_theme_daytime">Change theme by time of day</label>
</div>
</section>
<div class="select">
<select id="theme">
<option value="theme-light" data-i18nid="light">Light</option>
<option value="theme-night" data-i18nid="night">Night</option>
<option value="theme-dark" data-i18nid="dark">Dark</option>
<option value="theme-material" data-i18nid="material">Material</option>
<option value="theme-lightblue" data-i18nid="lightblue">Light Blue</option>
<option value="theme-lightpurple" data-i18nid="lightpurple">Light Purple</option>
</select>
</div>
<section>
<div class="checkbox">
<input type="checkbox" id="use-bg-img">
<label for="use-bg-img" data-i18nid="use_bg_image">Use a background image</label>
</div>
</section>
<input type="file" id="bg-img-picker" accept="image/*" placeholder="Select an image" data-i18nid="select_image">
</section>
<script src="js/newtab.js"></script>
<script src="js/options.js"></script>
<script src="js/i18n.js"></script>
</body>
</html>