-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.html
49 lines (41 loc) · 1.31 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<title>My Test Extension Options</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="font_icons/font-icons.css">
</head>
<body>
<div id="nzqm-settings-header">
<button class="back" id="nzqm-back-button">
<i class="icon-player"></i>
</button>
</div>
<div id="nzqm-options-container">
<div class="m-t-10">
<div class="text-center">
<b>Selected Theme:</b>
</div>
<div class="text-center">
<img id="nzqm-theme-preview" width="150" height="75">
</div>
</div>
<div class="inline-flex-evenly m-t-10">
<label for="theme-select">
<b>Choose a Theme:</b>
</label>
<select name="theme-select" id="theme-select">
<option value="light">Light</option>
<option value="dark">Dark</option>
<option value="matrix">Matrix</option>
<option value="cartoon">Cartoon</option>
<option value="evil">Evil</option>
</select>
</div>
<div id="nzqm-operation-result">
<p class="text-center"></p>
</div>
</div>
<script src="options.js"></script>
</body>
</html>