-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathoptions.html
45 lines (39 loc) · 1009 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
<!doctype html>
<html>
<head>
<title>SPDY Indicator Options</title>
<style>
body {
padding: 25px 100px;
font-family: "Linux Libertine", Palatino Linotype
}
#field {
padding: 10px;
background: #eee;
-webkit-transition: background ease-in 200ms;
-moz-transition: background ease-in 200ms;
transition: background ease-in 200ms;
cursor: pointer;
display: block;
text-shadow: 0 1px 0 #fff;
font: 13px "Lucida Grande", Verdana;
border: 1px solid #eee;
}
#field:hover {
border-color: #ccc;
}
#field.saved {
background-color: #ffefc6;
}
</style>
<script src="options.js"></script>
</head>
<body>
<h1>SPDY Indicator</h1>
<h2>Preferences</h2>
<label id="field">
<input type="checkbox" id="checkbox" />
Hide gray SPDY indicator icon on pages not using SPDY
</label>
</body>
</html>