-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
70 lines (59 loc) · 1.18 KB
/
popup.css
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
body {
font-family: "Lucida Grande", Verdana, Arial, sans-serif, Helvetica;
font-size:10px;
color:black;
background:white url('imgs/striped.png') repeat right top;
}
.checkbox {
cursor: pointer;
display: block;
width: 94px;
height: 27px;
overflow: hidden;
border-radius: 3px;
}
input[type=checkbox] {
display: none;
}
input[type=checkbox] + label {
cursor: pointer;
text-indent: -9999px;
display: block;
width: 150px;
height: 27px;
line-height: 27px;
background: transparent url(imgs/slider.png) no-repeat -56px 0;
-webkit-transition: background-position 0.3s ease-in-out;
-moz-transition: background-position 0.3s ease-in-out;
}
input[type=checkbox]:checked + label {
-webkit-transition: background-position 0.3s ease-in-out;
-moz-transition: background-position 0.3s ease-in-out;
background-position: -3px 0;
}
input:focus,
select:focus,
textarea:focus,
a:focus {
outline: none;
}
a.options{
float: right;
position: relative;
top: -23px;
}
button{
border: 1px solid #333;
background: #333;
color: white;
cursor: pointer;
padding: 7px 10px;
font-weight: bold;
border-radius: 2px;
width: 100%;
}
.exclude{
color: red;
font-weight: bold;
display:none;
}