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