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

Side by Side Diff: chrome/browser/resources/contextual_search/promo.css

Issue 456833003: [Search] Make the text swoosh away off the screen when the user taps the opt-in link. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/contextual_search/promo.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 @font-face { 5 @font-face {
6 font-family: 'Roboto2'; 6 font-family: 'Roboto2';
7 font-weight: 400; 7 font-weight: 400;
8 src: local('Roboto'), local('Roboto2-Regular'), 8 src: local('Roboto'), local('Roboto2-Regular'),
9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff');
10 } 10 }
(...skipping 28 matching lines...) Expand all
39 text-decoration: none; 39 text-decoration: none;
40 text-transform: uppercase; 40 text-transform: uppercase;
41 } 41 }
42 42
43 #button-container { 43 #button-container {
44 position: fixed; 44 position: fixed;
45 text-align: right; 45 text-align: right;
46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); 46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */);
47 width: 100%; 47 width: 100%;
48 } 48 }
49
50 #container.hide {
51 -webkit-transform: scale(0.95);
52 -webkit-transition-property: opacity, -webkit-transform;
53 -webkit-transition-duration: 218ms;
54 opacity: 0;
55 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/contextual_search/promo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698