forked from kennethlynne/chrome-one-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
49 lines (35 loc) · 1.33 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
<html>
<head>
<title>OneTab options</title>
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,300,700' rel='stylesheet' type='text/css'>
<style>
input[type='radio'] {
margin:0;
padding:0;
outline:none;
font-family:inherit; box-sizing:border-box
}
input[type="radio"],
input[type="checkbox"] {
position: absolute; left: -999em;
}
input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
content:'';
display: inline-block;
position:relative;
top:7px;
left:-5px;
width:25px;
height:25px;
background-image:url(images/checkboxradiosprite.png);
}
input[type="checkbox"] + label:before { background-position: 0 -25px;} input[type="checkbox"]:checked + label:before {background-position: 0 0 ; }
input[type="radio"] + label:before { background-position: -25px -25px;} input[type="radio"]:checked + label:before { background-position: -25px 0;}
</style>
</head>
<body style="margin:0; padding:0; font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; font-weight: 400; font-size:14px">
<div style="padding:50px 50px 10px 50px" id="contentAreaDiv"></div>
<script src="ext-onetab-concatenated-sources-options.js"></script>
</body>
</html>