Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: chrome/browser/resources/help/help_content.css

Issue 2321913003: Old and new about pages: simplify product logo animation code (Closed)
Patch Set: happify closure Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/help/help_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/help/help_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698