-
Notifications
You must be signed in to change notification settings - Fork 86
/
options.css
191 lines (176 loc) · 3.38 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
body.options
{
background: #FBFBFB;
min-width: 0;
font-family: sans-serif;
font-size: 12px;
line-height: 1.4em;
color:#333;
}
a
{
text-decoration:none;
}
#info_form, #login_form
{
display:none;
}
#options
{
width: 400px;
padding: 80px 400px 0px 0;
margin: auto;
}
#options h1
{
margin:0px 0px 15px 8px;
text-align: center;
}
#options form
{
margin-left: 8px;
padding: 26px 24px 26px;
font-weight: normal;
background: white;
border: 1px solid #E5E5E5;
-webkit-box-shadow: rgba(200,200,200,0.7) 0 4px 10px -1px;
box-shadow: rgba(200,200,200,0.7) 0 4px 10px -1p
}
#options label
{
color: #777;
font-size: 14px;
}
#options label span
{
color:#555;
display:block;
font-weight: 200;
font-size: 24px;
line-height: 1;
width: 100%;
padding: 3px;
margin-top: 2px;
margin-right: 6px;
margin-bottom: 16px;
font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;
}
#options form .input
{
color:#555;
font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;
font-weight: 200;
font-size: 24px;
line-height: 1;
width: 100%;
padding: 3px;
margin-top: 2px;
margin-right: 6px;
margin-bottom: 16px;
border: 1px solid #E5E5E5;
background: #FBFBFB;
outline: none;
-webkit-box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
box-shadow: inset 1px 1px 2px rgba(200,200,200,0.2);
float: left;
}
#options form .button-primary
{
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -webkit-gradient(
linear, left top, left bottom,
from(#6b6b6b),
to(#000000));
border-radius: 30px;
-webkit-border-radius: 30px;
border: 1px solid #000000;
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.7);
text-shadow:
0px -1px 0px rgba(000,000,000,0.4),
0px 1px 0px rgba(255,255,255,0.3);
}
#options form .button-primary:hover
{
background: -webkit-gradient(
linear, left top, left bottom,
from(#ff3333),
to(#b80000));
border: 1px solid #d11313;
cursor: pointer;
}
#options form .button-primary:active
{
background: -webkit-gradient(
linear, left top, left bottom,
from(#bf0000),
to(#fa0000));
border: 1px solid #d10000;
}
#options form p.submit
{
text-align:right;
}
#slt_country, #slt_operator
{
width: 45%;
}
#user_device_id, #device_id {
text-transform: uppercase;
}
#login_form input.input:invalid {
box-shadow: 0 0 1.5px 1px red;
}
.show-advanced .btn-advanced-settings.expander {
display: none;
}
.hide-advanced .btn-advanced-settings.collapser, .hide-advanced #advanced-settings {
display: none;
}
.btn-advanced-settings {
margin-top: 8px;
border: none;
background: none;
color: rgb(0, 102, 204);
cursor: pointer;
}
.btn-advanced-settings:hover {
text-decoration: underline;
}
.help-msg {
margin-left: 8px;
padding-left: 8px;
left: 100%;
position: relative;
display: none;
background-image:
-webkit-linear-gradient(315deg, transparent 50%, #747474 50%),
-webkit-linear-gradient(45deg, transparent 50%, #747474 50%);
background-position: 0 0, 0 8px;
background-repeat: no-repeat;
background-size: 8px 8px;
height: 16px;
}
.help-msg p {
position: absolute;
border: 1px solid #747474;
background: white;
padding: 1em;
font-size: larger;
margin: 0;
}
input:focus + .help-msg {
display: block;
}
footer {
margin: 20px auto;
padding-right: 400px;
width: 400px;
}
footer p {
margin-left: 8px;
}