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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 background-repeat: no-repeat; | 516 background-repeat: no-repeat; |
517 } | 517 } |
518 | 518 |
519 .error-message-padding { | 519 .error-message-padding { |
520 margin-bottom: 10px; | 520 margin-bottom: 10px; |
521 } | 521 } |
522 | 522 |
523 html[dir=rtl] .error-message { | 523 html[dir=rtl] .error-message { |
524 background-position: right top; | 524 background-position: right top; |
525 } | 525 } |
| 526 |
| 527 #version-labels { |
| 528 -webkit-transition: all .5s linear; |
| 529 bottom: 10px; |
| 530 color: #999; |
| 531 font-size: 11px; |
| 532 left: 10px; |
| 533 opacity: 1.0; |
| 534 position: absolute; |
| 535 text-shadow: 0 1px 1px #fff; |
| 536 } |
OLD | NEW |