| 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 html, |
| 9 body { |
| 10 height: 100%; |
| 11 width: 100%; |
| 12 } |
| 13 |
| 8 body { | 14 body { |
| 9 background: -webkit-gradient(radial, center center, 0, center center, 400, | 15 background: -webkit-gradient(radial, center center, 0, center center, 400, |
| 10 from(#fefefe), to(#efefef)); | 16 from(#fefefe), to(#efefef)) center center no-repeat; |
| 11 font-size: 14px; | 17 font-size: 14px; |
| 12 overflow: hidden; | 18 overflow: hidden; |
| 13 padding: 10px; | 19 padding: 10px; |
| 14 } | 20 } |
| 15 | 21 |
| 16 #oobe { | 22 #oobe { |
| 17 left: 50%; | 23 left: 50%; |
| 18 margin-left: -320px; | 24 margin-left: -320px; |
| 19 margin-top: -270px; | 25 margin-top: -270px; |
| 20 position: absolute; | 26 position: absolute; |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 #version-labels { | 650 #version-labels { |
| 645 -webkit-transition: all .5s linear; | 651 -webkit-transition: all .5s linear; |
| 646 bottom: 10px; | 652 bottom: 10px; |
| 647 color: #999; | 653 color: #999; |
| 648 font-size: 11px; | 654 font-size: 11px; |
| 649 left: 10px; | 655 left: 10px; |
| 650 opacity: 1.0; | 656 opacity: 1.0; |
| 651 position: absolute; | 657 position: absolute; |
| 652 text-shadow: 0 1px 1px #fff; | 658 text-shadow: 0 1px 1px #fff; |
| 653 } | 659 } |
| OLD | NEW |