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

Side by Side Diff: chrome/browser/resources/about_welcome_android/about_welcome_android.css

Issue 11801031: Fix sync signed in text from being too small. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Switch to em Created 7 years, 11 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 html { 5 html {
6 height: 100%; 6 height: 100%;
7 width: 100%; 7 width: 100%;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 24 matching lines...) Expand all
35 35
36 #footer-container { 36 #footer-container {
37 display: none; 37 display: none;
38 position: fixed; 38 position: fixed;
39 text-align: center; 39 text-align: center;
40 width: 100%; 40 width: 100%;
41 } 41 }
42 42
43 #footer { 43 #footer {
44 color: #646464; 44 color: #646464;
45 font-size: 1.3em;
45 } 46 }
46 47
47 #take-a-tour { 48 #take-a-tour {
48 background: -webkit-gradient( 49 background: -webkit-gradient(
49 linear, left top, left bottom, from(#f5f5f5), to(#f1f1f1)); 50 linear, left top, left bottom, from(#f5f5f5), to(#f1f1f1));
50 border: 1px solid #ccc; 51 border: 1px solid #ccc;
51 border-radius: 2px; 52 border-radius: 2px;
52 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08), 53 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08),
53 inset 0 0 2px rgba(255, 255, 255, 0.6); 54 inset 0 0 2px rgba(255, 255, 255, 0.6);
54 color: rgb(73, 73, 74); 55 color: rgb(73, 73, 74);
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 margin-right: auto; 149 margin-right: auto;
149 } 150 }
150 } 151 }
151 @media only screen and (max-width: 605px) { 152 @media only screen and (max-width: 605px) {
152 #footer { 153 #footer {
153 /* the footer horizontally fills the page, so add some margin */ 154 /* the footer horizontally fills the page, so add some margin */
154 margin-left: 20px; 155 margin-left: 20px;
155 margin-right: 20px; 156 margin-right: 20px;
156 } 157 }
157 } 158 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698