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

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

Issue 8283014: Sync: Update look of sign in box (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: promo page Created 9 years, 2 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
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 html { 6 html {
7 font-family: segoe ui, arial, helvetica, sans-serif; 7 font-family: segoe ui, arial, helvetica, sans-serif;
8 font-size: 13px;
8 height: 100%; 9 height: 100%;
9 } 10 }
10 11
11 body { 12 body {
12 background-image: -webkit-linear-gradient( 13 background-image: -webkit-linear-gradient(
13 rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.04)); 14 rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.04));
14 } 15 }
15 16
16 #sync-setup-overlay { 17 #sync-setup-overlay {
17 background-color: transparent; 18 background-color: transparent;
18 width: 100%; 19 width: 100%;
19 } 20 }
20 21
21 #sync-setup-login { 22 #sync-setup-login {
22 margin-left: auto; 23 margin: 0 auto;
23 margin-right: auto; 24 width: auto;
24 width: 800px; 25 max-width: 900px;
26 min-width: 830px;
25 } 27 }
26 28
27 #sync-setup-configure { 29 #sync-setup-configure {
28 background-color: transparent; 30 background-color: transparent;
29 margin-left: auto; 31 margin-left: auto;
30 margin-right: auto; 32 margin-right: auto;
31 width: 600px; 33 width: 600px;
32 } 34 }
33 35
34 #sync-setup-login-promo-column { 36 #sync-setup-login-promo-column {
35 display: block; 37 margin: 0 385px 0 0;
James Hawkins 2011/10/14 21:52:11 Just set margin-right?
sail 2011/10/14 22:11:36 Done.
36 float: left;
37 width: 500px;
38 } 38 }
39 39
40 #sync-setup-login-content-column { 40 #sync-setup-login-content-column {
41 float: right; 41 float: right;
42 width: 275px; 42 width: 335px;
43 } 43 }
44 44
45 #promo-title { 45 #promo-title {
46 display: block; 46 display: block;
47 margin-top: 33px; 47 margin-top: 33px;
48 margin-bottom: 64px; 48 margin-bottom: 64px;
49 text-align: center; 49 text-align: center;
50 } 50 }
51 51
52 h1 { 52 #promo-infographic {
53 font-size: 180%; 53 margin-top: 14px;
54 font-weight: normal;
55 }
56
57 #promo-message-title {
58 font-size: 120%;
59 }
60
61 #promo-message-body {
62 font-size: 85%;
63 margin-top: 8px;
64 margin-bottom: 28px;
65 } 54 }
66 55
67 #promo-skip { 56 #promo-skip {
68 clear: both; 57 clear: both;
69 display: block; 58 display: block;
70 padding-top: 85px; 59 padding-top: 85px;
71 text-align: center; 60 text-align: center;
72 } 61 }
73 62
74 #promo-information > h3 {
75 font-size: 85%;
76 margin-bottom: 0;
77 margin-top: 0;
78 }
79
80 #promo-information > p {
81 font-size: 85%;
82 margin-top: 0;
83 }
84
85 #promo-advanced-link { 63 #promo-advanced-link {
86 font-size: 85%; 64 font-size: 85%;
87 margin: 0 10px; 65 margin: 0 10px;
88 } 66 }
67
68 #sync-setup-login h1 {
69 color: #222;
70 font-weight: normal;
James Hawkins 2011/10/14 21:52:11 Alphabetize.
sail 2011/10/14 22:11:36 Done.
71 font-size: 27px;
72 }
73
74 #sync-setup-login-promo-column h2 {
75 color: #222;
76 font-weight: normal;
77 font-size: 18px;
78 }
79
80 #sync-setup-login-promo-column h3 {
81 color: #222;
82 font-size: 13px;
83 line-height: 13px;
84 }
85
86 #sync-setup-login-promo-column p {
87 color: #222;
88 font-size: 13px;
89 line-height: 20px;
90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698