-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (67 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
78 lines (67 loc) · 1.67 KB
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
#local-contactlist-toggle {
display: inline-block;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
#local-contactlist-toggle i {
position: relative;
display: inline-block;
margin-right: .5rem;
width: 46px;
height: 26px;
background-color: #e6e6e6;
border-radius: 23px;
vertical-align: text-bottom;
transition: all 0.3s linear;
}
#local-contactlist-toggle i::before {
content: "";
position: absolute;
left: 0;
width: 42px;
height: 22px;
background-color: #fff;
border-radius: 11px;
transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
transition: all 0.25s linear;
}
#local-contactlist-toggle i::after {
content: "";
position: absolute;
left: 0;
width: 22px;
height: 22px;
background-color: #fff;
border-radius: 11px;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
transform: translate3d(2px, 2px, 0);
transition: all 0.2s ease-in-out;
}
#local-contactlist-toggle:active i::after {
width: 28px;
transform: translate3d(2px, 2px, 0);
}
#local-contactlist-toggle:active input:checked + i::after {
transform: translate3d(16px, 2px, 0);
}
#local-contactlist-toggle input {
display: none;
}
#local-contactlist-toggle input:checked + i {
background-color: #4bd763;
}
#local-contactlist-toggle input:checked + i::before {
transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
}
#local-contactlist-toggle input:checked + i::after {
transform: translate3d(22px, 2px, 0);
}
.contactlist_studentview_fnc {
width: 30%;
white-space: nowrap;
}
.contactlist_studentview_cc {
width: 10%;
white-space: nowrap;
text-align: center;
}