-
Notifications
You must be signed in to change notification settings - Fork 28
/
options.html
53 lines (51 loc) · 1.04 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
<html>
<head>
<title>Option Page</title>
<style>
.theme {
padding: 15px;
width: 150px;
display: inline-block;
margin-right: 5px;
background-color: #1a1d26;
color: white;
border-radius: 15px;
}
.theme img {
width: 100px;
display: block;
margin: auto;
}
.theme .description {
text-align: center;
margin-top: 10px;
}
.theme .tag {
padding: 2px 4px;
font-size: 12px;
color: #1a1d26;
background-color: darksalmon;
border-radius: 5px;
margin: 10px 0px 0 3px;
display: inline-block;
}
.theme .name {
font-size: 20px;
display: block;
}
</style>
</head>
<body>
<div class="container">Options</div>
<div>
<h2>Light</h2>
<ul id="lightThemes"></ul>
</div>
<hr />
<div>
<h2>Dark</h2>
<ul id="darkThemes"></ul>
</div>
<script src="js/options.js"></script>
</body>
</html>