| 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 | 5 |
| 6 #about-container { | 6 #about-container { |
| 7 align-items: center; | 7 align-items: center; |
| 8 display: flex; | 8 display: flex; |
| 9 margin-top: 10px; | 9 margin-top: 10px; |
| 10 } | 10 } |
| 11 | 11 |
| 12 #product-description { | 12 #product-description { |
| 13 -webkit-margin-start: 10px; | 13 -webkit-margin-start: 10px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 @-webkit-keyframes spin { |
| 17 to { transform: rotate(-10turn); } |
| 18 } |
| 19 |
| 20 #product-logo.spin { |
| 21 -webkit-animation: spin 500ms cubic-bezier(1, 0, 0, 1) forwards; |
| 22 } |
| 23 |
| 16 #version-container { | 24 #version-container { |
| 17 margin-top: 30px; | 25 margin-top: 30px; |
| 18 } | 26 } |
| 19 | 27 |
| 20 #update-buttons-container { | 28 #update-buttons-container { |
| 21 margin-top: 5px; | 29 margin-top: 5px; |
| 22 } | 30 } |
| 23 | 31 |
| 24 #update-status-container { | 32 #update-status-container { |
| 25 margin-top: 10px; | 33 margin-top: 10px; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 background-size: 22px; | 140 background-size: 22px; |
| 133 vertical-align: top; | 141 vertical-align: top; |
| 134 } | 142 } |
| 135 | 143 |
| 136 .channel-change-error-text { | 144 .channel-change-error-text { |
| 137 -webkit-margin-start: 4px; | 145 -webkit-margin-start: 4px; |
| 138 display: block; | 146 display: block; |
| 139 vertical-align: top; | 147 vertical-align: top; |
| 140 width: 240px; | 148 width: 240px; |
| 141 } | 149 } |
| OLD | NEW |