| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 | 5 |
| 6 #outer-container { | 6 #outer-container { |
| 7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
| 8 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
| 9 -webkit-perspective: 600px; | 9 -webkit-perspective: 600px; |
| 10 bottom: 48px; /* Leave space for the header bar */ | 10 bottom: 48px; /* Leave space for the header bar */ |
| 11 display: -webkit-box; | 11 display: -webkit-box; |
| 12 left: 0; | 12 left: 0; |
| 13 position: absolute; | 13 position: absolute; |
| 14 right: 0; | 14 right: 0; |
| 15 top: 0; | 15 top: 0; |
| 16 } | 16 } |
| 17 | 17 |
| 18 #outer-container.fullscreen, |
| 19 #outer-container.fullscreen #oobe, |
| 20 #outer-container.fullscreen #oobe #inner-container { |
| 21 height: 100%; |
| 22 width: 100%; |
| 23 } |
| 24 |
| 18 #inner-container { | 25 #inner-container { |
| 19 border-radius: 2px; | 26 border-radius: 2px; |
| 20 padding: 0; | 27 padding: 0; |
| 21 position: relative; | 28 position: relative; |
| 22 } | 29 } |
| 23 | 30 |
| 24 #inner-container.animation { | 31 #inner-container.animation { |
| 25 overflow: hidden; | 32 overflow: hidden; |
| 26 } | 33 } |
| 27 | 34 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 text-transform: lowercase; | 157 text-transform: lowercase; |
| 151 width: 20em; | 158 width: 20em; |
| 152 } | 159 } |
| 153 | 160 |
| 154 .header-section::before { | 161 .header-section::before { |
| 155 /* Divider in header between product name and title, | 162 /* Divider in header between product name and title, |
| 156 * like "[Product name] > [step header]". */ | 163 * like "[Product name] > [step header]". */ |
| 157 content: '\00A0\203A\00A0\00A0'; | 164 content: '\00A0\203A\00A0\00A0'; |
| 158 } | 165 } |
| 159 | 166 |
| OLD | NEW |