-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.47 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Theme Selection</title>
<link rel="stylesheet" type="text/css" href="font-faces.css">
<link rel="stylesheet" type="text/css" href="options.css">
</head>
<body>
<div id="main" class="main">
<div class="options-menu">
<div class="option">
<p>Theme:</p>
<select id="theme" class="input-option">
</select>
<br>
</div>
<div class="option">
<p>Font Family:</p>
<select id="font" class="input-option">
</select>
<br>
</div>
<div class="option">
<p>Font Size:</p>
<select id="font-size" class="input-option">
</select>
</div>
<div class="option">
<p style="margin-left: 10px;">Show Id:</p>
<label class="switch input-option" for="show-id">
<input id="show-id" name="show-id" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<button id="save">Save</button>
</div>
</br>
<div id="status"></div>
</br>
<div id="editor">function foo(items) {
var x = "All this is syntax highlighted";
return x;
}</div>
</div>
<script src="ace-editor/ace.js"></script>
<script src="options.js"></script>
</body>
</html>