toggles-iphone.less
1.16 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
.toggle-iphone {
.toggle-slide {
border-radius: 9999px;
box-shadow: 0 0 0 1px #999;
}
.toggle-on, .toggle-off {
color: white;
font-size: 18px;
font-weight: bold;
text-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.toggle-on {
border-radius: 9999px 0 0 9999px;
background: #037bda;
box-shadow: inset 2px 2px 5px rgba(0,0,0,0.4);
&:after {
background: linear-gradient(#1189f1, #3797ef);
height: 50%;
content: '';
margin-top: -19%;
display: block;
border-radius: 9999px;
margin-left: 10%;
}
}
.toggle-off {
box-shadow: inset -2px 2px 5px rgba(0,0,0,0.4);
border-radius: 0 9999px 9999px 0;
color: rgb(130,130,130);
background: #ECECEC;
text-shadow: 0 0 1px white;
&:after {
background: linear-gradient(#fafafa, #fdfdfd);
height: 50%;
content: '';
margin-top: -19%;
display: block;
margin-right: 10%;
border-radius: 9999px;
}
}
.toggle-blob {
border-radius: 50px;
background: linear-gradient(#d1d1d1, #fafafa);
box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6), inset 0 0 0 2px white, 0 0 3px rgba(0,0,0,0.6);
}
}