-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.css
129 lines (120 loc) · 2.64 KB
/
options.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
body{
margin: -5px 0px 2px 0px !important;
padding: 0px;
border-radius: 5px;
font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
}
.titleBar{
width: 100%;
height: 40px;
background: #4285F4;
}
.headers{
margin-top: 5px;
margin-left: 5px;
color: white;
font-size: 21px;
vertical-align: middle;
line-height: 40px;
}
p {
margin: 0px;
padding-left: 8px;
font-size: 15px;
font-weight: 600;
vertical-align: middle;
line-height: 62px;
color: #303030;
}
a{
margin-left: 5px;
font-size: 18px;
vertical-align: middle;
line-height: 60px;
color: blue;
text-decoration: none; /* no underline */
}
#container{
background:#ECECEC;
padding: 0 0 1 0px;
font-size: 16px;
width: 250px;
border-radius: 5px;
}
.contentBox{
height: 50px;
width: 70%;
float: left;
background: white;
}
.rightBox{
height: 50px;
margin-left: 70%;
background: white;
}
.card {
background: #fff;
width: 100%;
padding-bottom: 10px;
}
.switch-input {
display: none;
}
.switch-label {
position: relative;
display: inline-block;
min-width: 112px;
cursor: pointer;
font-weight: 500;
text-align: left;
margin: 16px;
padding: 16px 0 16px 44px;
}
.switch-label:before, .switch-label:after {
content: "";
position: absolute;
margin: 0;
outline: 0;
top: 50%;
-ms-transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.switch-label:before {
left: 1px;
width: 34px;
height: 14px;
background-color: #9E9E9E;
border-radius: 8px;
}
.switch-label:after {
left: 0;
width: 20px;
height: 20px;
background-color: #FAFAFA;
border-radius: 50%;
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.switch-label .toggle--on {
display: none;
}
.switch-label .toggle--off {
display: inline-block;
}
.switch-input:checked + .switch-label:before {
background-color: #A6A5D6;
}
.switch-input:checked + .switch-label:after {
background-color: #4285F4;
-ms-transform: translate(80%, -50%);
-webkit-transform: translate(80%, -50%);
transform: translate(80%, -50%);
}
.switch-input:checked + .switch-label .toggle--on {
display: inline-block;
}
.switch-input:checked + .switch-label .toggle--off {
display: none;
}