| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 * sign in and lock screens. | 6 * sign in and lock screens. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 html, | 9 html, |
| 10 body { | 10 body { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #eula a { | 50 #eula a { |
| 51 color: rgb(0, 102, 104); | 51 color: rgb(0, 102, 104); |
| 52 text-decoration: none; | 52 text-decoration: none; |
| 53 } | 53 } |
| 54 | 54 |
| 55 #eula #stats-help-link { | 55 #eula #stats-help-link { |
| 56 color: rgb(49, 106, 197); | 56 color: rgb(49, 106, 197); |
| 57 } | 57 } |
| 58 | 58 |
| 59 hr.shadow { | 59 hr.shadow { |
| 60 -webkit-mask: -webkit-linear-gradient(left, rgba(0,0,0,0), | 60 -webkit-mask: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), |
| 61 black 50%, rgba(0,0,0,0)); | 61 black 50%, rgba(0, 0, 0, 0)); |
| 62 border: none; | 62 border: none; |
| 63 opacity: 0.3 | 63 opacity: 0.3 |
| 64 } | 64 } |
| 65 | 65 |
| 66 hr.top { | 66 hr.top { |
| 67 background: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.0)); | 67 background: -webkit-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)); |
| 68 border-top: 1px solid rgba(0,0,0,0.5); | 68 border-top: 1px solid rgba(0, 0, 0, 0.5); |
| 69 height: 4px; | 69 height: 4px; |
| 70 } | 70 } |
| 71 | 71 |
| 72 hr.bottom { | 72 hr.bottom { |
| 73 background: -webkit-linear-gradient(bottom, | 73 background: -webkit-linear-gradient(bottom, |
| 74 rgba(0,0,0,0.2), rgba(0,0,0,0.0)); | 74 rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)); |
| 75 border-bottom: 1px solid rgba(0,0,0,0.5); | 75 border-bottom: 1px solid rgba(0, 0, 0, 0.5); |
| 76 height: 4px; | 76 height: 4px; |
| 77 z-index: 0; | 77 z-index: 0; |
| 78 } | 78 } |
| 79 | 79 |
| 80 #header { | 80 #header { |
| 81 -webkit-padding-start: 34px; | 81 -webkit-padding-start: 34px; |
| 82 background-image: url('chrome://theme/IDR_PRODUCT_LOGO_32'); | 82 background-image: url('chrome://theme/IDR_PRODUCT_LOGO_32'); |
| 83 background-position: left center; | 83 background-position: left center; |
| 84 background-repeat: no-repeat; | 84 background-repeat: no-repeat; |
| 85 background-size: 32px; | 85 background-size: 32px; |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 } | 758 } |
| 759 | 759 |
| 760 #notification-area a { | 760 #notification-area a { |
| 761 color: rgb(37, 79, 155); | 761 color: rgb(37, 79, 155); |
| 762 } | 762 } |
| 763 | 763 |
| 764 #notification-area .butter-bar { | 764 #notification-area .butter-bar { |
| 765 margin: 0 auto; | 765 margin: 0 auto; |
| 766 max-width: 850px; | 766 max-width: 850px; |
| 767 } | 767 } |
| OLD | NEW |