-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.css
80 lines (68 loc) · 1.39 KB
/
settings.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
@font-face {
font-family: 'SFProDisplay-Regular';
src: url('SFProDisplay-Regular.woff') format('woff');
}
body {
font-family: SFProDisplay-Regular;
margin: 0;
background-color: #E0E0E0;
}
.statusBarContainer {
font-size: 1.2em;
padding: 0.3em;
background-color: #fff;
}
.signalImg {
display:none;
padding-left: 0.2em;
}
.wifiAnywhereText {
font-size: 1.6em;
}
.wifiAnywhereContainer {
background-color: #fff;
padding: 0.5rem;
}
.wifiAnywhereDescriptor {
font-size: 2.4vh;
margin: 1em;
}
.goBackToSettingsContainer {
padding: 0.7em;
background-color: #fff;
}
.goBackToSettingsContainer > a {
text-decoration: none;
font-size: 1.5em;
}
input.apple-switch {
float: right;
position: relative;
-webkit-appearance: none;
outline: none;
width: 50px;
height: 30px;
background-color: #fff;
border: 1px solid #D9DADC;
border-radius: 50px;
box-shadow: inset -20px 0 0 0 #fff;
}
input.apple-switch:after {
content: "";
position: absolute;
top: 1px;
left: 1px;
background: transparent;
width: 26px;
height: 26px;
border-radius: 50%;
box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}
input.apple-switch:checked {
box-shadow: inset 20px 0 0 0 #4ed164;
border-color: #4ed164;
}
input.apple-switch:checked:after {
left: 20px;
box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}