OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 * | 4 * |
5 * This is the stylesheet used by the Out of the box experience (OOBE) flow. | 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow. |
6 */ | 6 */ |
7 | 7 |
8 body { | 8 body { |
9 background: -webkit-gradient(radial, center center, 0, center center, 400, | 9 background: -webkit-gradient(radial, center center, 0, center center, 400, |
10 from(#fefefe), to(#efefef)); | 10 from(#fefefe), to(#efefef)); |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 width: 310px; | 379 width: 310px; |
380 } | 380 } |
381 | 381 |
382 #gaia-local-login { | 382 #gaia-local-login { |
383 border: none; | 383 border: none; |
384 height: 100%; | 384 height: 100%; |
385 vertical-align: top; | 385 vertical-align: top; |
386 width: 100%; | 386 width: 100%; |
387 } | 387 } |
388 | 388 |
389 #enroll-confirmation-header { | 389 #enroll-confirmation-screen { |
390 font-size: 1.4em; | 390 bottom: 0; |
391 font-weight: bold; | 391 left: 0; |
| 392 position: absolute; |
| 393 right: 0; |
| 394 top: 0; |
392 } | 395 } |
393 | 396 |
394 #enroll-confirmation-content { | 397 #enroll-confirmation-content { |
395 height: 1.5em; | 398 height: 1.5em; |
396 margin-top: -.75em; | 399 margin-top: -.75em; |
| 400 position: absolute; |
397 text-align: center; | 401 text-align: center; |
398 top: 50%; | 402 top: 50%; |
399 width: 100%; | 403 width: 100%; |
400 } | 404 } |
401 | 405 |
402 #enroll-confirmation-image { | 406 #enroll-confirmation-image { |
403 vertical-align: middle; | 407 vertical-align: middle; |
404 } | 408 } |
405 | 409 |
406 #enroll-confirmation-footer { | 410 #enroll-confirmation-footer { |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 #version-labels { | 531 #version-labels { |
528 -webkit-transition: all .5s linear; | 532 -webkit-transition: all .5s linear; |
529 bottom: 10px; | 533 bottom: 10px; |
530 color: #999; | 534 color: #999; |
531 font-size: 11px; | 535 font-size: 11px; |
532 left: 10px; | 536 left: 10px; |
533 opacity: 1.0; | 537 opacity: 1.0; |
534 position: absolute; | 538 position: absolute; |
535 text-shadow: 0 1px 1px #fff; | 539 text-shadow: 0 1px 1px #fff; |
536 } | 540 } |
OLD | NEW |