| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 position: relative; | 149 position: relative; |
| 150 text-align: end; | 150 text-align: end; |
| 151 text-shadow: | 151 text-shadow: |
| 152 0 0 4px rgba(0,0,0,.6), | 152 0 0 4px rgba(0,0,0,.6), |
| 153 0 1px 2px rgba(0,0,0,.8), | 153 0 1px 2px rgba(0,0,0,.8), |
| 154 0 -1px 2px rgba(0,0,0,1); | 154 0 -1px 2px rgba(0,0,0,1); |
| 155 transition: all 500ms linear; | 155 transition: all 500ms linear; |
| 156 z-index: 1; | 156 z-index: 1; |
| 157 } | 157 } |
| 158 | 158 |
| 159 #bluetooth-name { |
| 160 background: rgba(255,255,255,.17); |
| 161 border-radius: 4px; |
| 162 display: inline-block; |
| 163 font-size: 12px; |
| 164 height: 28px; |
| 165 line-height: 28px; |
| 166 padding: 0 12px; |
| 167 } |
| 168 |
| 159 #background { | 169 #background { |
| 160 background-size: 100% 100%; | 170 background-size: 100% 100%; |
| 161 height: 100%; | 171 height: 100%; |
| 162 left: 0; | 172 left: 0; |
| 163 position: absolute; | 173 position: absolute; |
| 164 top: 0; | 174 top: 0; |
| 165 transition: 700ms opacity; | 175 transition: 700ms opacity; |
| 166 width: 100%; | 176 width: 100%; |
| 167 } | 177 } |
| 168 | 178 |
| 169 .background-initial { | 179 .background-initial { |
| 170 opacity: 0; | 180 opacity: 0; |
| 171 } | 181 } |
| 172 | 182 |
| 173 .dimmed-background { | 183 .dimmed-background { |
| 174 background-color: black; | 184 background-color: black; |
| 175 opacity: 0.5; | 185 opacity: 0.5; |
| 176 } | 186 } |
| 177 | 187 |
| 178 .throbber { | 188 .throbber { |
| 179 -webkit-margin-end: 0.5em; | 189 -webkit-margin-end: 0.5em; |
| 180 margin-top: 1px; | 190 margin-top: 1px; |
| 181 } | 191 } |
| OLD | NEW |