-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
146 lines (137 loc) · 3.01 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@charset "utf-8";
/* CSS Document */
.onoffswitch {
position: relative;
width: 90px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.onoffswitch-checkbox-LF {
display: none;
}
.onoffswitch-label-LF {
display: block;
overflow: hidden;
cursor: pointer;
border: 2px solid #5A665E;
border-radius: 0px;
}
.onoffswitch-inner-LF {
width: 200%;
margin-left: -100%;
-moz-transition: margin 0.3s ease-in 0s;
-webkit-transition: margin 0.3s ease-in 0s;
-o-transition: margin 0.3s ease-in 0s;
transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner-EF {
width: 200%;
margin-left: -100%;
-moz-transition: margin 0.3s ease-in 0s;
-webkit-transition: margin 0.3s ease-in 0s;
-o-transition: margin 0.3s ease-in 0s;
transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner-LF:before, .onoffswitch-inner-LF:after {
float: left;
width: 50%;
height: 30px;
padding: 0;
line-height: 30px;
font-size: 14px;
color: white;
font-family: Trebuchet, Arial, sans-serif;
font-weight: bold;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.onoffswitch-inner-EF:before, .onoffswitch-inner-EF:after {
float: left;
width: 50%;
height: 30px;
padding: 0;
line-height: 30px;
font-size: 14px;
color: white;
font-family: Trebuchet, Arial, sans-serif;
font-weight: bold;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.onoffswitch-inner-LF:before {
content: "ON";
padding-left: 10px;
background-color: #2FCCFF;
color: #FFFFFF;
}
.onoffswitch-inner-EF:before {
content: "ON";
padding-left: 10px;
background-color: #2FCCFF;
color: #FFFFFF;
}
.onoffswitch-inner-LF:after {
content: "OFF";
padding-right: 10px;
background-color: #F5EBEB;
color: #999999;
text-align: right;
}
.onoffswitch-inner-EF:after {
content: "OFF";
padding-right: 10px;
background-color: #F5EBEB;
color: #999999;
text-align: right;
}
.onoffswitch-switch-LF {
width: 18px;
margin: 6px;
background: #FFFFFF;
border: 2px solid #5A665E;
border-radius: 0px;
position: absolute;
top: 0;
bottom: 0;
right: 56px;
-moz-transition: all 0.3s ease-in 0s;
-webkit-transition: all 0.3s ease-in 0s;
-o-transition: all 0.3s ease-in 0s;
transition: all 0.3s ease-in 0s;
}
.onoffswitch-switch-EF {
width: 18px;
margin: 6px;
background: #FFFFFF;
border: 2px solid #5A665E;
border-radius: 0px;
position: absolute;
top: 0;
bottom: 0;
right: 56px;
-moz-transition: all 0.3s ease-in 0s;
-webkit-transition: all 0.3s ease-in 0s;
-o-transition: all 0.3s ease-in 0s;
transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox-LF:checked + .onoffswitch-label-LF .onoffswitch-inner-LF {
margin-left: 0;
}
.onoffswitch-checkbox-LF:checked + .onoffswitch-label-LF .onoffswitch-inner-EF {
margin-left: 0;
}
.onoffswitch-checkbox-LF:checked + .onoffswitch-label-LF .onoffswitch-switch-LF {
right: 0px;
}
.onoffswitch-checkbox-LF:checked + .onoffswitch-label-LF .onoffswitch-switch-EF {
right: 0px;
}
.joboffer{
height: 100%;
width:100%;
background: #FFF;
}
/* LIGHT BOX */