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

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

Issue 672073002: help: add important animation to Chrome logo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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_content.html » ('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 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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/help/help_content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698