-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (42 loc) · 789 Bytes
/
style.css
File metadata and controls
48 lines (42 loc) · 789 Bytes
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
.toggle-wrapper {
margin: 0.5em auto;
}
.toggle-wrapper label {
padding: 0.3em;
font-size: 17px;
display: block;
}
.toggleContainer {
width: 100%;
position: relative;
background: #ffffff;
border: 1px solid #eeeeee;
}
.toggleContainer .toggleOption {
display: inline-block;
position: relative;
z-index: 1;
text-align: center;
height: 40px;
line-height: 40px;
cursor: pointer;
transition: all 0.5s ease-in-out;
color: #807b77;
font-size: 1em;
}
.toggleContainer .toggleOption.selected {
color: #ffffff;
cursor: initial;
}
.toggleContainer .toggle {
position: absolute;
height: 100%;
bottom: 0;
left: 0;
transition: all 0.4s ease-in-out;
background: #df5d5d;
}
.optionDisabled {
background: #e6e6e6;
cursor: no-drop !important;
}