-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathoptions.html
84 lines (80 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SO Chat Commander Options</title>
<style>
.group h2 {
clear: both;
font-size: 32px;
font-weight: 400;
margin: 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
font-size: 20px;
line-height: 30px;
}
input[type="checkbox"] {
margin-right: 20px;
}
#content {
margin: 0 auto;
width: 800px;
}
.group {
margin-bottom: 10px;
padding: 10px;
box-sizing: borde-box;
}
#github-logo {
width: 32px;
float: right;
margin: 10px;
}
#header h1 {
float: left;
margin: 0;
line-height: 30px;
padding: 10px;
font-size: 30px;
margin-bottom: 20px;
}
.command-name {
padding-top: 0.2em;
padding-bottom: 0.2em;
border-radius: 3px;
background: #f5f5f5;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
margin-right: 10px;
}
</style>
<link rel="icon" href="icon.png">
</head>
<body>
<div id="content">
<div id="header">
<h1>Stack Overflow Chat Commander</h1>
<a href="https://github.com/TristanWiley/So-Chat-Commander"><img src="GitHub-Mark-64px.png" id="github-logo"/></a>
</div>
<div class="group">
<h2>General options</h2>
<ul id="options">
<li><input type="checkbox" id="pluginEnabled"> Plugin enabled</li>
<li><input type="checkbox" id="displayPopup"> Display popup with commands</li>
</ul>
</div>
<div class="group">
<h2>Enable / disable commands</h2>
<ul id="command-list">
</ul>
</div>
<div class="group">
</div>
</div>
<script src="options.js"></script>
</body>
</html>