-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
81 lines (73 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Geniusly Extension Options</title>
<meta charset="UTF-8">
<script src="assets/js/router.js" type="text/javascript"></script>
<script src="assets/js/util.js" type="text/javascript"></script>
<script src="options.js" type="text/javascript"></script>
</head>
<style>
html, body {
margin: 0;
padding: 0;
}
body {
background-color: #ffff64;
}
main, header {
margin: 50px auto;
width: 800px;
}
main h1 {
font-size: 1.5em;
line-height: 1.45;
font-weight: 700;
display: inline-block;
color: inherit;
}
table > tbody > tr > td > ul {
margin: 0;
}
nav {
box-shadow:
5px 5px 15px #666,
-5px -5px 15px #666;
height: 3em;
background-color: black;
}
nav > ul {
display: flex;
vertical-align: middle;
}
nav > ul > li {
list-style-type: none;
padding: 5px 15px;
flex-basis: 100px;
transition: color .2s;
color: #fff;
cursor: pointer;
min-width: .8em;
z-index: 3;
display: inline-block;
position: relative;
font-size: 15px;
}
[data-route] {
cursor: pointer;
}
</style>
<body>
<nav>
<ul>
<li data-route="options">Options</li>
<li data-route="privacy">Privacy</li>
</ul>
</nav>
<header>
<img src="assets/img/logo_letters.svg" alt="Genius.com logo lettering" />
</header>
<main>
</main>
</body>
</html>