google_text 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,906 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Google Accounts</title>
6
+ <style type="text/css">
7
+ html, body, div, h1, h2, h3, h4, h5, h6, p, img, dl,
8
+ dt, dd, ol, ul, li, table, tr, td, form, object, embed,
9
+ article, aside, canvas, command, details, figcaption,
10
+ figure, footer, group, header, hgroup, mark, menu,
11
+ meter, nav, output, progress, section, summary,
12
+ time, audio, video {
13
+ margin: 0;
14
+ padding: 0;
15
+ border: 0;
16
+ }
17
+ article, aside, details, figcaption, figure, footer,
18
+ header, hgroup, menu, nav, section {
19
+ display: block;
20
+ }
21
+ html {
22
+ font: 81.25% arial, helvetica, sans-serif;
23
+ background: #fff;
24
+ color: #333;
25
+ line-height: 1;
26
+ direction: ltr;
27
+ }
28
+ a {
29
+ color: #15c;
30
+ text-decoration: none;
31
+ }
32
+ a:active {
33
+ color: #d14836;
34
+ }
35
+ a:hover {
36
+ text-decoration: underline;
37
+ }
38
+ h1, h2, h3, h4, h5, h6 {
39
+ color: #222;
40
+ font-size: 1.54em;
41
+ font-weight: normal;
42
+ line-height: 24px;
43
+ margin: 0 0 .46em;
44
+ }
45
+ p {
46
+ line-height: 17px;
47
+ margin: 0 0 1em;
48
+ }
49
+ ol, ul {
50
+ list-style: none;
51
+ line-height: 17px;
52
+ margin: 0 0 1em;
53
+ }
54
+ li {
55
+ margin: 0 0 .5em;
56
+ }
57
+ table {
58
+ border-collapse: collapse;
59
+ border-spacing: 0;
60
+ }
61
+ strong {
62
+ color: #222;
63
+ }
64
+ button, input, select, textarea {
65
+ font-family: inherit;
66
+ font-size: inherit;
67
+ }
68
+ button::-moz-focus-inner,
69
+ input::-moz-focus-inner {
70
+ border: 0;
71
+ }
72
+ html, body {
73
+ position: absolute;
74
+ height: 100%;
75
+ min-width: 100%;
76
+ }
77
+ .wrapper {
78
+ position: relative;
79
+ min-height: 100%;
80
+ }
81
+ .content {
82
+ margin: 0 auto;
83
+ width: 650px;
84
+ padding: 0 44px;
85
+ }
86
+ .google-header-bar {
87
+ height: 71px;
88
+ background: #f5f5f5;
89
+ border-bottom: 1px solid #e5e5e5;
90
+ overflow: hidden;
91
+ }
92
+ .header .logo {
93
+ margin: 18px 0 0 -1px;
94
+ float: left;
95
+ }
96
+ .header .signin,
97
+ .header .signup {
98
+ margin: 28px 0 0;
99
+ float: right;
100
+ font-weight: bold;
101
+ }
102
+ .header .signup-button {
103
+ margin: 22px 0 0;
104
+ float: right;
105
+ }
106
+ .header .signup-button a {
107
+ position: relative;
108
+ top: -1px;
109
+ margin: 0 0 0 1em;
110
+ }
111
+ .main {
112
+ padding-top: 23px;
113
+ padding-bottom: 125px;
114
+ }
115
+ .google-footer-bar {
116
+ position: absolute;
117
+ bottom: 0;
118
+ height: 35px;
119
+ width: 100%;
120
+ border-top: 1px solid #ebebeb;
121
+ overflow: hidden;
122
+ }
123
+ .footer {
124
+ padding-top: 9px;
125
+ font-size: .85em;
126
+ white-space: nowrap;
127
+ line-height: 0;
128
+ }
129
+ .footer ul {
130
+ color: #999;
131
+ float: left;
132
+ max-width: 80%;
133
+ }
134
+ .footer ul li {
135
+ display: inline;
136
+ padding: 0 1.5em 0 0;
137
+ }
138
+ .footer form {
139
+ text-align: right;
140
+ }
141
+ .footer form .lang-chooser {
142
+ max-width: 20%;
143
+ }
144
+ .announce-bar {
145
+ position: absolute;
146
+ bottom: 35px;
147
+ height: 33px;
148
+ z-index: 2;
149
+ width: 100%;
150
+ background: #f9edbe;
151
+ border-top: 1px solid #efe1ac;
152
+ border-bottom: 1px solid #efe1ac;
153
+ overflow: hidden;
154
+ }
155
+ .announce-bar .message {
156
+ font-size: .85em;
157
+ line-height: 33px;
158
+ margin: 0;
159
+ }
160
+ .announce-bar a {
161
+ margin: 0 0 0 1em;
162
+ }
163
+ .clearfix:after {
164
+ visibility: hidden;
165
+ display: block;
166
+ font-size: 0;
167
+ content: '.';
168
+ clear: both;
169
+ height: 0;
170
+ }
171
+ * html .clearfix {
172
+ zoom: 1;
173
+ }
174
+ *:first-child+html .clearfix {
175
+ zoom: 1;
176
+ }
177
+ input[type=email],
178
+ input[type=password],
179
+ input[type=text],
180
+ input[type=url] {
181
+ display: inline-block;
182
+ height: 29px;
183
+ margin: 0;
184
+ padding-left: 8px;
185
+ background: #fff;
186
+ border: 1px solid #d9d9d9;
187
+ border-top: 1px solid #c0c0c0;
188
+ -webkit-box-sizing: border-box;
189
+ -moz-box-sizing: border-box;
190
+ box-sizing: border-box;
191
+ -webkit-border-radius: 1px;
192
+ -moz-border-radius: 1px;
193
+ border-radius: 1px;
194
+ }
195
+ input[type=email]:hover,
196
+ input[type=password]:hover,
197
+ input[type=text]:hover,
198
+ input[type=url]:hover {
199
+ border: 1px solid #b9b9b9;
200
+ border-top: 1px solid #a0a0a0;
201
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
202
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
203
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
204
+ }
205
+ input[type=email]:focus,
206
+ input[type=password]:focus,
207
+ input[type=text]:focus,
208
+ input[type=url]:focus {
209
+ outline: none;
210
+ border: 1px solid #4d90fe;
211
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
212
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
213
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
214
+ }
215
+ input[type=email][disabled=disabled],
216
+ input[type=password][disabled=disabled],
217
+ input[type=text][disabled=disabled],
218
+ input[type=url][disabled=disabled] {
219
+ border: 1px solid #e5e5e5;
220
+ background: #f5f5f5;
221
+ }
222
+ input[type=email][disabled=disabled]:hover,
223
+ input[type=password][disabled=disabled]:hover,
224
+ input[type=text][disabled=disabled]:hover,
225
+ input[type=url][disabled=disabled]:hover {
226
+ -webkit-box-shadow: none;
227
+ -moz-box-shadow: none;
228
+ box-shadow: none;
229
+ }
230
+ input[type=checkbox],
231
+ input[type=radio] {
232
+ -webkit-appearance: none;
233
+ appearance: none;
234
+ width: 13px;
235
+ height: 13px;
236
+ margin: 0;
237
+ cursor: pointer;
238
+ vertical-align: bottom;
239
+ background: #fff;
240
+ border: 1px solid #dcdcdc;
241
+ -webkit-border-radius: 1px;
242
+ -moz-border-radius: 1px;
243
+ border-radius: 1px;
244
+ -webkit-box-sizing: border-box;
245
+ -moz-box-sizing: border-box;
246
+ box-sizing: border-box;
247
+ position: relative;
248
+ }
249
+ input[type=checkbox]:active,
250
+ input[type=radio]:active {
251
+ border-color: #c6c6c6;
252
+ background: #ebebeb;
253
+ }
254
+ input[type=checkbox]:hover {
255
+ border-color: #c6c6c6;
256
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
257
+ -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
258
+ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
259
+ }
260
+ input[type=radio] {
261
+ -webkit-border-radius: 1em;
262
+ -moz-border-radius: 1em;
263
+ border-radius: 1em;
264
+ width: 15px;
265
+ height: 15px;
266
+ }
267
+ input[type=checkbox]:checked,
268
+ input[type=radio]:checked {
269
+ background: #fff;
270
+ }
271
+ input[type=radio]:checked::after {
272
+ content: '';
273
+ display: block;
274
+ position: relative;
275
+ top: 3px;
276
+ left: 3px;
277
+ width: 7px;
278
+ height: 7px;
279
+ background: #666;
280
+ -webkit-border-radius: 1em;
281
+ -moz-border-radius: 1em;
282
+ border-radius: 1em;
283
+ }
284
+ input[type=checkbox]:checked::after {
285
+ content: url(//ssl.gstatic.com/ui/v1/menu/checkmark.png);
286
+ display: block;
287
+ position: absolute;
288
+ top: -6px;
289
+ left: -5px;
290
+ }
291
+ input[type=checkbox]:focus {
292
+ outline: none;
293
+ border-color:#4d90fe;
294
+ }
295
+ .g-button {
296
+ display: inline-block;
297
+ min-width: 54px;
298
+ text-align: center;
299
+ color: #555;
300
+ font-size: 11px;
301
+ font-weight: bold;
302
+ height: 27px;
303
+ padding: 0 8px;
304
+ line-height: 27px;
305
+ -webkit-border-radius: 2px;
306
+ -moz-border-radius: 2px;
307
+ border-radius: 2px;
308
+ -webkit-transition: all 0.218s;
309
+ -moz-transition: all 0.218s;
310
+ -ms-transition: all 0.218s;
311
+ -o-transition: all 0.218s;
312
+ transition: all 0.218s;
313
+ border: 1px solid #dcdcdc;
314
+ border: 1px solid rgba(0,0,0,0.1);
315
+ background-color: #f5f5f5;
316
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));
317
+ background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
318
+ background-image: -moz-linear-gradient(top,#f5f5f5,#f1f1f1);
319
+ background-image: -ms-linear-gradient(top,#f5f5f5,#f1f1f1);
320
+ background-image: -o-linear-gradient(top,#f5f5f5,#f1f1f1);
321
+ background-image: linear-gradient(top,#f5f5f5,#f1f1f1);
322
+ -webkit-user-select: none;
323
+ -moz-user-select: none;
324
+ user-select: none;
325
+ cursor: default;
326
+ }
327
+ *+html .g-button {
328
+ min-width: 70px;
329
+ }
330
+ button.g-button,
331
+ input[type=submit].g-button {
332
+ height: 29px;
333
+ line-height: 29px;
334
+ vertical-align: bottom;
335
+ margin: 0;
336
+ }
337
+ *+html button.g-button,
338
+ *+html input[type=submit].g-button {
339
+ overflow: visible;
340
+ }
341
+ .g-button:hover {
342
+ border: 1px solid #c6c6c6;
343
+ color: #333;
344
+ text-decoration: none;
345
+ -webkit-transition: all 0.0s;
346
+ -moz-transition: all 0.0s;
347
+ -ms-transition: all 0.0s;
348
+ -o-transition: all 0.0s;
349
+ transition: all 0.0s;
350
+ background-color: #f8f8f8;
351
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));
352
+ background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
353
+ background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1);
354
+ background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
355
+ background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
356
+ background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
357
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
358
+ -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
359
+ box-shadow: 0 1px 1px rgba(0,0,0,0.1);
360
+ }
361
+ .g-button:active {
362
+ background-color: #f6f6f6;
363
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#f1f1f1));
364
+ background-image: -webkit-linear-gradient(top,#f6f6f6,#f1f1f1);
365
+ background-image: -moz-linear-gradient(top,#f6f6f6,#f1f1f1);
366
+ background-image: -ms-linear-gradient(top,#f6f6f6,#f1f1f1);
367
+ background-image: -o-linear-gradient(top,#f6f6f6,#f1f1f1);
368
+ background-image: linear-gradient(top,#f6f6f6,#f1f1f1);
369
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
370
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
371
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
372
+ }
373
+ .g-button:visited {
374
+ color: #666;
375
+ }
376
+ .g-button-submit {
377
+ border: 1px solid #3079ed;
378
+ color: #fff;
379
+ text-shadow: 0 1px rgba(0,0,0,0.1);
380
+ background-color: #4d90fe;
381
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
382
+ background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
383
+ background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
384
+ background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
385
+ background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
386
+ background-image: linear-gradient(top,#4d90fe,#4787ed);
387
+ }
388
+ .g-button-submit:hover {
389
+ border: 1px solid #2f5bb7;
390
+ color: #fff;
391
+ text-shadow: 0 1px rgba(0,0,0,0.3);
392
+ background-color: #357ae8;
393
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));
394
+ background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8);
395
+ background-image: -moz-linear-gradient(top,#4d90fe,#357ae8);
396
+ background-image: -ms-linear-gradient(top,#4d90fe,#357ae8);
397
+ background-image: -o-linear-gradient(top,#4d90fe,#357ae8);
398
+ background-image: linear-gradient(top,#4d90fe,#357ae8);
399
+ }
400
+ .g-button-submit:active {
401
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
402
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
403
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
404
+ }
405
+ .g-button-share {
406
+ border: 1px solid #29691d;
407
+ color: #fff;
408
+ text-shadow: 0 1px rgba(0,0,0,0.1);
409
+ background-color: #3d9400;
410
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#398a00));
411
+ background-image: -webkit-linear-gradient(top,#3d9400,#398a00);
412
+ background-image: -moz-linear-gradient(top,#3d9400,#398a00);
413
+ background-image: -ms-linear-gradient(top,#3d9400,#398a00);
414
+ background-image: -o-linear-gradient(top,#3d9400,#398a00);
415
+ background-image: linear-gradient(top,#3d9400,#398a00);
416
+ }
417
+ .g-button-share:hover {
418
+ border: 1px solid #2d6200;
419
+ color: #fff;
420
+ text-shadow: 0 1px rgba(0,0,0,0.3);
421
+ background-color: #368200;
422
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#368200));
423
+ background-image: -webkit-linear-gradient(top,#3d9400,#368200);
424
+ background-image: -moz-linear-gradient(top,#3d9400,#368200);
425
+ background-image: -ms-linear-gradient(top,#3d9400,#368200);
426
+ background-image: -o-linear-gradient(top,#3d9400,#368200);
427
+ background-image: linear-gradient(top,#3d9400,#368200);
428
+ }
429
+ .g-button-share:active {
430
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
431
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
432
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
433
+ }
434
+ .g-button-red {
435
+ border: 1px solid transparent;
436
+ color: #fff;
437
+ text-shadow: 0 1px rgba(0,0,0,0.1);
438
+ text-transform: uppercase;
439
+ background-color: #d14836;
440
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
441
+ background-image: -webkit-linear-gradient(top,#dd4b39,#d14836);
442
+ background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
443
+ background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
444
+ background-image: -o-linear-gradient(top,#dd4b39,#d14836);
445
+ background-image: linear-gradient(top,#dd4b39,#d14836);
446
+ }
447
+ .g-button-red:hover {
448
+ border: 1px solid #b0281a;
449
+ color: #fff;
450
+ text-shadow: 0 1px rgba(0,0,0,0.3);
451
+ background-color: #c53727;
452
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));
453
+ background-image: -webkit-linear-gradient(top,#dd4b39,#c53727);
454
+ background-image: -moz-linear-gradient(top,#dd4b39,#c53727);
455
+ background-image: -ms-linear-gradient(top,#dd4b39,#c53727);
456
+ background-image: -o-linear-gradient(top,#dd4b39,#c53727);
457
+ background-image: linear-gradient(top,#dd4b39,#c53727);
458
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
459
+ -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
460
+ -ms-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
461
+ -o-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
462
+ box-shadow: 0 1px 1px rgba(0,0,0,0.2);
463
+ }
464
+ .g-button-red:active {
465
+ border: 1px solid #992a1b;
466
+ background-color: #b0281a;
467
+ background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));
468
+ background-image: -webkit-linear-gradient(top,#dd4b39,#b0281a);
469
+ background-image: -moz-linear-gradient(top,#dd4b39,#b0281a);
470
+ background-image: -ms-linear-gradient(top,#dd4b39,#b0281a);
471
+ background-image: -o-linear-gradient(top,#dd4b39,#b0281a);
472
+ background-image: linear-gradient(top,#dd4b39,#b0281a);
473
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
474
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
475
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
476
+ }
477
+ .g-button-white {
478
+ border: 1px solid #dcdcdc;
479
+ color: #666;
480
+ background: #fff;
481
+ }
482
+ .g-button-white:hover {
483
+ border: 1px solid #c6c6c6;
484
+ color: #333;
485
+ background: #fff;
486
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
487
+ -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
488
+ box-shadow: 0 1px 1px rgba(0,0,0,0.1);
489
+ }
490
+ .g-button-white:active {
491
+ background: #fff;
492
+ -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
493
+ -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
494
+ box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
495
+ }
496
+ .g-button-red:visited,
497
+ .g-button-share:visited,
498
+ .g-button-submit:visited {
499
+ color: #fff;
500
+ }
501
+ .g-button-submit:focus,
502
+ .g-button-share:focus,
503
+ .g-button-red:focus {
504
+ -webkit-box-shadow: inset 0 0 0 1px #fff;
505
+ -moz-box-shadow: inset 0 0 0 1px #fff;
506
+ box-shadow: inset 0 0 0 1px #fff;
507
+ }
508
+ .g-button-share:focus {
509
+ border-color: #29691d;
510
+ }
511
+ .g-button-red:focus {
512
+ border-color: #d14836;
513
+ }
514
+ .g-button-submit:focus:hover,
515
+ .g-button-share:focus:hover,
516
+ .g-button-red:focus:hover {
517
+ -webkit-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0,0,0,0.1);
518
+ -moz-box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0,0,0,0.1);
519
+ box-shadow: inset 0 0 0 1px #fff, 0 1px 1px rgba(0,0,0,0.1);
520
+ }
521
+ .g-button img {
522
+ display: inline-block;
523
+ margin: -3px 0 0;
524
+ opacity: .55;
525
+ vertical-align: middle;
526
+ }
527
+ *+html .g-button img {
528
+ margin: 4px 0 0;
529
+ }
530
+ .g-button:hover img {
531
+ opacity: .72;
532
+ }
533
+ .g-button:active img {
534
+ opacity: 1;
535
+ }
536
+ .errormsg {
537
+ margin: .5em 0 0;
538
+ display: block;
539
+ color: #dd4b39;
540
+ line-height: 17px;
541
+ }
542
+ .training-msg {
543
+ padding: .5em 8px;
544
+ background: #f9edbe;
545
+ }
546
+ .training-msg p {
547
+ margin: 0 0 .5em;
548
+ }
549
+ input[type=email].form-error,
550
+ input[type=password].form-error,
551
+ input[type=text].form-error,
552
+ input[type=url].form-error {
553
+ border: 1px solid #dd4b39;
554
+ }
555
+ .help-link {
556
+ background: #dd4b39;
557
+ padding: 0 5px;
558
+ color: #fff;
559
+ font-weight: bold;
560
+ display: inline-block;
561
+ -webkit-border-radius: 1em;
562
+ -moz-border-radius: 1em;
563
+ border-radius: 1em;
564
+ text-decoration: none;
565
+ position: relative;
566
+ top: 0px;
567
+ }
568
+ .help-link:visited {
569
+ color: #fff;
570
+ }
571
+ .help-link:hover {
572
+ opacity: .7;
573
+ color: #fff;
574
+ }
575
+ .content {
576
+ width: auto;
577
+ max-width: 1000px;
578
+ min-width: 780px;
579
+ }
580
+ .product-info {
581
+ margin: 0 385px 0 0;
582
+ }
583
+ .product-info h3 {
584
+ font-size: 1.23em;
585
+ font-weight: normal;
586
+ }
587
+ .product-info a:visited {
588
+ color: #61c;
589
+ }
590
+ .sign-in {
591
+ width: 335px;
592
+ float: right;
593
+ }
594
+ .signin-box,
595
+ .accountchooser-box {
596
+ margin: 12px 0 0;
597
+ padding: 20px 25px 15px;
598
+ background: #f5f5f5;
599
+ border: 1px solid #e5e5e5;
600
+ }
601
+ .product-headers {
602
+ margin: 0 0 1.5em;
603
+ }
604
+ .product-headers h1 {
605
+ color: #dd4b39;
606
+ font-size: 25px;
607
+ margin: 0;
608
+ }
609
+ .product-headers h2 {
610
+ font-size: 16px;
611
+ margin: .4em 0 0;
612
+ }
613
+ .features {
614
+ overflow: hidden;
615
+ margin: 2em 0 0;
616
+ }
617
+ .features li {
618
+ margin: 3px 0 2em;
619
+ }
620
+ .features img {
621
+ float: left;
622
+ margin: -3px 0 0;
623
+ }
624
+ .features p {
625
+ margin: 0 0 0 68px;
626
+ }
627
+ .features .title {
628
+ font-size: 16px;
629
+ margin-bottom: .3em;
630
+ }
631
+ .features.no-icon p {
632
+ margin: 0;
633
+ }
634
+ .features .small-title {
635
+ font-size: 1em;
636
+ font-weight: bold;
637
+ }
638
+ .notification-bar {
639
+ background: #f9edbe;
640
+ padding: 8px;
641
+ }
642
+ .signin-box h2 {
643
+ font-size: 16px;
644
+ line-height: 16px;
645
+ height: 16px;
646
+ margin: 0 0 1.2em;
647
+ position: relative;
648
+ }
649
+ .signin-box h2 strong {
650
+ display: inline-block;
651
+ position: absolute;
652
+ right: 0;
653
+ top: 1px;
654
+ height: 19px;
655
+ width: 52px;
656
+ background: transparent url(//ssl.gstatic.com/accounts/ui/google-signin-flat.png) no-repeat;
657
+ }
658
+ .signin-box label {
659
+ display: block;
660
+ margin: 0 0 1.5em;
661
+ }
662
+ .signin-box input[type=text],
663
+ .signin-box input[type=password] {
664
+ width: 100%;
665
+ height: 32px;
666
+ font-size: 15px;
667
+ }
668
+ .signin-box .email-label,
669
+ .signin-box .passwd-label {
670
+ font-weight: bold;
671
+ margin: 0 0 .5em;
672
+ display: block;
673
+ -webkit-user-select: none;
674
+ -moz-user-select: none;
675
+ user-select: none;
676
+ }
677
+ .signin-box .reauth {
678
+ display: inline-block;
679
+ font-size: 15px;
680
+ height: 29px;
681
+ line-height: 29px;
682
+ margin: 0;
683
+ }
684
+ .signin-box label.remember {
685
+ display: inline-block;
686
+ vertical-align: top;
687
+ margin: 9px 0 0;
688
+ }
689
+ .signin-box .remember-label {
690
+ font-weight: normal;
691
+ color: #666;
692
+ line-height: 0;
693
+ padding: 0 0 0 .4em;
694
+ -webkit-user-select: none;
695
+ -moz-user-select: none;
696
+ user-select: none;
697
+ }
698
+ .signin-box .g-button img {
699
+ opacity: 1;
700
+ }
701
+ .signin-box input[type=submit] {
702
+ margin: 0 1.5em 1.2em 0;
703
+ height: 32px;
704
+ font-size: 13px;
705
+ }
706
+ .signin-box ul {
707
+ margin: 0;
708
+ }
709
+ </style>
710
+ </head>
711
+ <body>
712
+ <div class="wrapper">
713
+ <div class="google-header-bar">
714
+ <div class="header content clearfix">
715
+ <a id="link-google" href="http://www.google.com/" >
716
+ <img class="logo" src="//www.google.com/images/logos/google_logo_41.png" alt="Google">
717
+ </a>
718
+ <a id="link-signup" class="signup" href="https://accounts.google.com/NewAccount" >Sign up for a new Google Account</a>
719
+ </div>
720
+ </div>
721
+ <div class="main content clearfix">
722
+ <div class="sign-in">
723
+ <div class="signin-box">
724
+ <h2>Sign in <strong></strong></h2>
725
+ <form id="gaia_loginform" action="https://accounts.google.com/ServiceLoginAuth" method="post">
726
+ <input type="hidden"
727
+
728
+
729
+ name="dsh" id="dsh" value="-7016410730020216670"
730
+
731
+
732
+ >
733
+ <input type="hidden"
734
+ name="GALX"
735
+ value="gw3tJxlUTos">
736
+ <input type="hidden"
737
+ id="pstMsg"
738
+ name="pstMsg"
739
+ value="0">
740
+ <input type="hidden"
741
+ id="dnConn"
742
+ name="dnConn"
743
+ value="">
744
+ <input type="hidden" name="timeStmp" id="timeStmp"
745
+ value=''/>
746
+ <input type="hidden" name="secTok" id="secTok"
747
+ value=''/>
748
+ <label>
749
+ <strong class="email-label">Email</strong>
750
+ <input type="text"
751
+
752
+
753
+ name="Email" id="Email" value=""
754
+
755
+
756
+ >
757
+ </label>
758
+ <label>
759
+ <strong class="passwd-label">Password</strong>
760
+ <input type="password" name="Passwd" id="Passwd"
761
+
762
+
763
+
764
+ >
765
+ </label>
766
+ <input type="submit" class="g-button g-button-submit" name="signIn" id="signIn"
767
+ value="Sign in">
768
+ <label class="remember">
769
+ <input type="checkbox"
770
+ name="PersistentCookie" id="PersistentCookie" value="yes"
771
+
772
+ checked="checked"
773
+ >
774
+ <strong class="remember-label">
775
+ Stay signed in
776
+ </strong>
777
+ </label>
778
+ <input type="hidden" name="rmShown" value="1">
779
+ </form>
780
+ <ul>
781
+ <li>
782
+ <a id="link-forgot-passwd"
783
+ href="https://www.google.com/accounts/recovery"
784
+ target="_top">
785
+ Can&#39;t access your account?
786
+ </a>
787
+ </li>
788
+ </ul>
789
+ </div>
790
+ </div>
791
+ <div class="product-info ">
792
+ <div class="product-headers">
793
+ <h1>Accounts</h1>
794
+ </div>
795
+ <p>Google has more to offer when you sign in to your Google Account.
796
+ <p>Sign in on the right or
797
+ <a href="https://accounts.google.com/NewAccount">
798
+ create an account for free</a>.</p>
799
+ <ul class="features clearfix">
800
+ <li>
801
+ <img src="//www.google.com/images/icons/product/googlemail-42.png" alt="">
802
+ <p class="title">Gmail</p>
803
+ <p>Chat with friends and never miss an important email.</p>
804
+ </li>
805
+ <li>
806
+ <img src="//www.google.com/images/icons/feature/search-b42.png" alt="">
807
+ <p class="title">Personalized Search</p>
808
+ <p>Get more relevant results based on your past searches.</p>
809
+ </li>
810
+ <li>
811
+ <img src="//www.google.com/images/icons/feature/house-r42.png" alt="">
812
+ <p class="title">Like Google?</p>
813
+ <p><a href="http://www.google.com/intl/en/services/hp/index.html#utm_source=gaia">Make Google your homepage.</a></p>
814
+ </li>
815
+ </ul>
816
+ <p>
817
+ See <a href="http://www.google.com/intl/en/landing/accounts/index.html#utm_campaign=en&utm_medium=et&utm_source=gaia">more benefits</a> of a Google Account.
818
+ </p>
819
+ </div>
820
+ <div id="cc_iframe_parent"></div>
821
+ </div>
822
+ <div class="announce-bar">
823
+ <div class="content">
824
+ <p class="message">
825
+ Welcome to Google's new sign-in page.
826
+ <a target="_blank" href="http://www.google.com/support/accounts/bin/answer.py?answer=1401722&topic=14129&hl=en">Read more</a>
827
+ </p>
828
+ </div>
829
+ </div>
830
+ <div class="google-footer-bar">
831
+ <div class="footer content clearfix">
832
+ <ul>
833
+ <li>© 2011 Google</li>
834
+ <li><a href="http://www.google.com/" >Google Home</a></li>
835
+ <li><a href="https://accounts.google.com/TOS?hl=en" >Terms of Service</a></li>
836
+ <li><a href="http://www.google.com/intl/en/privacy/" >Privacy Policy</a></li>
837
+ <li><a href="http://www.google.com/support/accounts?hl=en" >Help</a></li>
838
+ </ul>
839
+ </div>
840
+ </div>
841
+ </div>
842
+ <script type="text/javascript">
843
+ function gaia_setFocus() {
844
+ var f = null;
845
+ if (document.getElementById) {
846
+ f = document.getElementById('gaia_loginform');
847
+ }
848
+ if (f) {
849
+ if (f.Email && (f.Email.value == null || f.Email.value == '')) {
850
+ f.Email.focus();
851
+ } else if (f.Passwd) {
852
+ f.Passwd.focus();
853
+ }
854
+ }
855
+ }
856
+ window.onload = gaia_setFocus;
857
+ function gaia_onLoginSubmit() {
858
+ if (window.gaiacb_onLoginSubmit) {
859
+ return gaiacb_onLoginSubmit();
860
+ } else {
861
+ return true;
862
+ }
863
+ }
864
+ document.getElementById('gaia_loginform').onsubmit = gaia_onLoginSubmit;
865
+ var Gb=function(a,b){var c=a;a&&typeof a=="string"&&(c=document.getElementById(a));if(b&&!c)throw new Ga(a);return c},Ga=function(a){this.id=a;this.toString=function(){return"No element found for id '"+this.id+"'"}};var Gc={},Gd;Gd=window.addEventListener?function(a,b,c){var d=function(a){var b=c.call(this,a);!1===b&&Ge(a);return b},a=Gb(a,!0);a.addEventListener(b,d,!1);Gf(a,b).push(d);return d}:window.attachEvent?function(a,b,c){var a=Gb(a,!0),d=function(){var b=window.event,d=c.call(a,b);!1===d&&Ge(b);return d};a.attachEvent("on"+b,d);Gf(a,b).push(d);return d}:void 0;var Gg;
866
+ Gg=window.removeEventListener?function(a,b,c){a=Gb(a,!0);a.removeEventListener(b,c,!1)}:window.detachEvent?function(a,b,c){a=Gb(a,!0);a.detachEvent("on"+b,c)}:void 0;var Ge=function(a){a.preventDefault?a.preventDefault():a.returnValue=!1;return!1},Gf=function(a,b){Gc[a]=Gc[a]||{};Gc[a][b]=Gc[a][b]||[];return Gc[a][b]};var Gh=function(){try{return new XMLHttpRequest}catch(a){for(var b=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],c=0;c<b.length;c++)try{return new ActiveXObject(b[c])}catch(d){}}return null},Gi=function(){this.c=Gh();this.b={}};Gi.prototype.d=function(){};
867
+ Gi.prototype.send=function(a){var b=[],c;for(c in this.b){var d=this.b[c];b.push(c+"="+encodeURIComponent(d))}var b=b.join("&"),e=this.c,f=this.d;e.open("POST",a,!0);e.setRequestHeader("Content-type","application/x-www-form-urlencoded");e.setRequestHeader("Content-length",String(b.length));e.onreadystatechange=function(){e.readyState==4&&f({status:e.status,text:e.responseText})};e.send(b)};
868
+ Gi.prototype.h=function(a){var b=this.d,c=this.c;c.open("GET",a,!0);c.onreadystatechange=function(){c.readyState==4&&b({status:c.status,text:c.responseText})};c.send()};var Gk=function(a){this.e=a;this.i=this.j();if(this.e==null)throw new Gj("Empty module name");};Gk.prototype.j=function(){var a=window.location.pathname;return a&&a.indexOf("/accounts")==0?"/accounts/JsRemoteLog":"/JsRemoteLog"};
869
+ Gk.prototype.g=function(a,b,c){for(var d=this.i,e=this.e||"",d=d+"?module="+encodeURIComponent(e),a=a||"",d=d+"&type="+encodeURIComponent(a),b=b||"",d=d+"&msg="+encodeURIComponent(b),c=c||[],a=0;a<c.length;a++)d=d+"&arg="+encodeURIComponent(c[a]);try{var f=Math.floor(Math.random()*1E4),d=d+"&r="+String(f)}catch(g){}return d};Gk.prototype.send=function(a,b,c){var d=new Gi;d.b={};try{var e=this.g(a,b,c);d.h(e)}catch(f){}};Gk.prototype.a=function(a,b){this.send("ERROR",a,b)};
870
+ Gk.prototype.k=function(a,b){this.send("WARN",a,b)};Gk.prototype.f=function(a){var b=this;return function(){try{a.apply(null,arguments)}catch(c){throw b.a("Uncatched exception: "+c),c;}}};var Gj=function(a){this.l=a};var G=G||new Gk("check_connection"),Gl=function(a,b,c){var d=function(e){if(!(a!="*"&&e.origin.toLowerCase()!=a.toLowerCase()))e.data!=c?G.k("Received unexpected Message",[e.data,"Expected: "+c]):(b.value=a,Gg(window,"message",d),d=null)};return d},Gm=function(){if(window.__CHECK_CONNECTION_CONFIG){var a=window.__CHECK_CONNECTION_CONFIG.iframeUri,b=window.__CHECK_CONNECTION_CONFIG.iframeOrigin,c=window.__CHECK_CONNECTION_CONFIG.connectivityElementId,d=window.__CHECK_CONNECTION_CONFIG.iframeParentElementId,
871
+ e=window.__CHECK_CONNECTION_CONFIG.msgContent;if(window.postMessage)if(a){var f=document.getElementById(c);f?(c=document.getElementById(d))?(Gd(window,"message",Gl(b,f,e)),b=c,d=window.document.createElement("iframe"),e=d.style,e.visibility="hidden",e.width="1px",e.height="1px",e.position="absolute",e.top="-100px",d.src=a,d.id="CheckConnectionIframe",b.appendChild(d)):G.a("Unable to locate the iframe anchor to appendconnection test iframe",["element id: "+d]):G.a("Unable to locate the input element to storeconnection test result",
872
+ ["element id: "+c])}else G.a("Empty iframe URI")}},Gn=function(){if(window.__CHECK_CONNECTION_CONFIG){var a=window.__CHECK_CONNECTION_CONFIG.postMsgSupportElementId;if(window.postMessage){var b=document.getElementById(a);b?b.value="1":G.a("Unable to locate the input element to storepostMessage test result",["element id: "+a])}}};G_checkConnectionMain=G.f(Gm);G_setPostMessageSupportFlag=G.f(Gn);
873
+
874
+
875
+ window.__CHECK_CONNECTION_CONFIG = {
876
+
877
+ iframeUri: 'https:\x2F\x2Faccounts.youtube.com\x2Faccounts\x2FCheckConnection?pmpo=https%3A%2F%2Faccounts.google.com\x26v=772046950',
878
+
879
+ iframeOrigin: 'https:\x2F\x2Faccounts.youtube.com',
880
+
881
+ connectivityElementId: 'dnConn',
882
+
883
+ iframeParentElementId: 'cc_iframe_parent',
884
+
885
+ postMsgSupportElementId: 'pstMsg',
886
+
887
+ msgContent: 'accessible'
888
+ };
889
+
890
+ G_setPostMessageSupportFlag();
891
+ G_checkConnectionMain();
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
902
+
903
+
904
+ </script>
905
+ </body>
906
+ </html>