forked from mhemmings/twitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
49 lines (47 loc) · 950 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Twitcher Options</title>
<script src="options.js"></script>
<link href="chrome-bootstrap.css" type="text/css" rel="stylesheet" />
<style>
li {
list-style: none;
}
label input[type="checkbox"] {
margin-top: -14px;
}
label img {
width: 24px;
margin: 0 9px 0;
}
label div {
margin-top: -5px;
display: inline-block;
line-height: 36px;
vertical-align: top;
}
</style>
</head>
<body class="frame">
<div class="navigation">
<h1><a href="#">Twitcher</a></h1>
<ul class="menu">
<li class="selected">
<a href="#">Settings</a>
</li>
</ul>
</div>
<div class="mainview view">
<div id="typography" class="selected">
<header>
<h1>Switchable Accounts <small>Only checked accounts will be available for switching</small></h1>
</header>
<div class="content">
<ul id="accounts"></ul>
<button id="save">Save</button>
</div>
</div>
</div>
</body>
</html>