-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
50 lines (45 loc) · 1.07 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
<html>
<head><title>Konamikitten Options</title>
<style>
html {
height: 200px;
width: 200px;
}
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
padding: 20px;
height: 200px;
color: #333;
}
div.info{
margin-top: 10px;
border-top: 1px solid #eee;
}
div.info p {
font-size: small;
}
a, a:visited{
color: #000;
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#save {
margin-top: 10px;
}
</style>
</head>
<body>
<div id="options">
<input type="checkbox" id="alwaysEnabled" value="always" >
<label for="alwaysEnabled">Always enabled</label>
<button id="save">Save</button>
</div>
<div id="status"></div>
<div class="info"><p>Use checkbox above to always enable kittens for this site, or, for instant on-demand kittens use <a href="http://en.wikipedia.org/wiki/Konami_code" target="_blank">Konami code</a> on any page.</p></div>
</body>
<script src="options.js"></script>
</html>