-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
311 lines (273 loc) · 6.05 KB
/
style.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/* Reset default margin and padding */
* {
margin: 0;
padding: 0;
}
/* Selector for the body of HTML */
body {
background-color: #ECEEF1;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
/* Selector for the container which contains 2 paragraphs/top */
.top-information-container {
display: block;
text-align: right;
}
/* Selector for top paragraph near sign in */
.paragraph-top {
font-size: 12px;
color: #505050;
line-height: 1.5;
font-weight: 300;
}
/* Selector for top link recover password or ID text */
.paragraph-top a:link {
font-size: 12px;
}
/* Selector for container which contains the 2 top paragraphs */
.signin-text-container {
position: absolute;
top: 13px;
right: 144px;
}
/* Selector for the container for the Sign In button */
.signin-button-container {
display: inline;
width: 150px;
}
/* Selector for top Sign In button */
.sign-in-button {
width: 104px;
height: 34px;
background-color: #0077C5;
color: white;
border: none;
border-radius: 4px;
position: relative;
right: 28px;
font-weight: 300;
font-size: 14px;
margin-bottom: 10px;
margin-top: 12px;
border: 1px solid #4c4c4c;
}
/* Selector for font awseome padlock/ Top Button */
.fas {
color: white;
margin-right: 10px;
width: 10px;
}
/* Selector for the container for the image which displays the logo of the company */
.logo-container {
display: block;
margin-top: 14px;
}
/* Selector for the logo of the company itself */
.main-logo {
width: 138px;
margin: 0 auto;
display: block;
}
/* Selector for the div containing the elements below the main logo */
.menu-container {
text-align: center;
margin-top: 6px;
}
/* Selector for the text items below the main logo */
.menu-item {
display: inline;
font-size: 20px;
position: relative;
bottom: 10px;
}
/* Selector for the link items */
div span a:link {
text-decoration: none;
color: #777;
font-weight: 300;
font-size: 19px;
}
/* Selector for icons below the main logo */
.menu-logo {
display: inline;
width: 35px;
}
/* Container for the form and its elements */
.form-container {
width: 380px;
height: 640px;
position: relative;
text-align: center;
margin: 10px auto 0 auto;
background-color: white;
border: 1px solid lightgray;
}
/* Selector for learn more link */
div a:link {
text-decoration: none;
font-size: 11px;
color: #0077C5;
}
/* Selector for learn more link when user hovers */
div a:link:hover {
text-decoration-line: underline;
}
/* Selector for h1 sign in on form */
.signin-form {
font-weight: 350;
color: #4C4C4C;
text-align: center;
font-size: 24px;
margin-top: 30px;
}
/* Selector for text below Sing in header */
.form-text {
text-align: center;
font-size: 13px;
color: #777;
font-weight: 300;
}
/* Selector for labels inside the form */
label {
width: 140px;
text-align: left;
display: inline-block;
margin-right: 160px;
margin-bottom: 10px;
margin-top: 34px;
font-weight: 300;
font-size: 14px;
color: #404040;
}
/* Selector for the Pssword label above the password input */
.password-label {
position: relative;
left: 14px;
}
/* Selector for inputs inside the form */
input {
padding-left: 10px;
width: 80%;
height: 30px;
display: block;
margin-left: 36px;
border-radius: 2px;
border: 1px solid #C1C5C8;
}
/* Selector for the lock on the input password field */
.fa-unlock-alt {
color: #D3D3D3;
display: inline;
position: relative;
top: 36px;
right: 10px;
width: 18px;
}
/* Selector for small tags */
small {
color: #444;
font-size: 10px;
position: relative;
right: 36px;
}
/* Selector for the Sign In button container */
.button-container {
position: relative;
}
/* Selector for the Sign In button */
.create-account-button {
width: 80%;
height: 42px;
background-color: #0077C5;
color: white;
border: none;
border-radius: 4px;
margin-top: 32px;
font-weight: 300;
margin-bottom: 10px;
}
/* Selector for the padlock icon used in the Sign In button */
.padlock-icon {
width: 16px;
position: absolute;
top: 45px;
left: 118px;
z-index: 10;
}
/* Selector for the terms bellow Sign In button */
.form-text-bottom {
color: #777;
font-size: 12px;
display: block;
font-style: italic;
margin-top: 16px;
font-weight: 350;
line-height: 18px;
}
/* Selector for the links in the terms below Sign In Button */
.form-text-bottom a:link {
font-size: 12px;
}
/* Selector for create an account link */
p.create-account a {
font-size: 14px;
}
/* Selector for the footer inside the form section */
.form-footer {
width: 380px;
height: 52px;
font-size: 12px;
color: #777;
font-weight: 200;
border-left: none;
display: block;
position: absolute;
bottom: 0;
left: 0;
background-color: #ECEEF1;
}
/* Selector for invisible captcha text */
footer.form-footer span.footer-captcha {
position: relative;
top: 20px;
font-size: 10px;
font-weight: 300;
}
/* Selector for invisible captcha links */
footer.form-footer span.footer-captcha a:link {
font-size: 10px;
font-weight: 300;
color: #0077C5;
}
/* Selector for main footer outside form */
.main-footer {
text-align: center;
width: 800px;
margin: auto;
margin-top: 10px;
color: #777;
}
/* Selector for span containing terms links */
footer.main-footer div.terms-container span {
margin: 0 2px;
}
/* Selector for legal, privacy, security links */
footer.main-footer div.terms-container span a {
font-size: 12px;
color: #505050;
font-weight: 300;
}
/* Selector for terms, inside terms-container */
body footer.main-footer div span.footer-terms {
display: inline-block;
font-size: 30px;
}
/* Selector for the text on the main footer */
.text-footer {
font-size: 12px;
color: #505050;
font-weight: 300;
position: relative;
bottom: 4px;
padding-bottom: 18px;
}