| 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 #about-container { | 5 #about-container { |
| 6 align-items: center; | 6 align-items: center; |
| 7 display: flex; | 7 display: flex; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #page-container #about-container { | 10 #page-container #about-container { |
| 11 margin-top: 10px; | 11 margin-top: 10px; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #product-description { | 14 #product-description { |
| 15 -webkit-margin-start: 10px; | 15 -webkit-margin-start: 10px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 @-webkit-keyframes spin { | |
| 19 to { transform: rotate(-10turn); } | |
| 20 } | |
| 21 | |
| 22 #product-logo.spin { | |
| 23 -webkit-animation: spin 500ms cubic-bezier(1, 0, 0, 1) forwards; | |
| 24 } | |
| 25 | |
| 26 #version-container { | 18 #version-container { |
| 27 margin-top: 30px; | 19 margin-top: 30px; |
| 28 } | 20 } |
| 29 | 21 |
| 30 #update-buttons-container { | 22 #update-buttons-container { |
| 31 margin-top: 5px; | 23 margin-top: 5px; |
| 32 } | 24 } |
| 33 | 25 |
| 34 #update-status-container { | 26 #update-status-container { |
| 35 margin-bottom: 12px; | 27 margin-bottom: 12px; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 } | 161 } |
| 170 | 162 |
| 171 #regulatory-label-container { | 163 #regulatory-label-container { |
| 172 padding-top: 32px; | 164 padding-top: 32px; |
| 173 } | 165 } |
| 174 | 166 |
| 175 #regulatory-label { | 167 #regulatory-label { |
| 176 display: block; | 168 display: block; |
| 177 width: 330px; | 169 width: 330px; |
| 178 } | 170 } |
| OLD | NEW |