OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 #sync-promo { | |
7 margin-top: 0px; | |
8 width:100%; | |
James Hawkins
2011/07/18 02:37:36
Space after colon, here and elsewhere.
sail
2011/07/20 01:30:46
Done.
| |
9 background-color: #F6F6F6; | |
James Hawkins
2011/07/18 02:37:36
Lower-case letters for hex color.
James Hawkins
2011/07/18 02:37:36
Alphabetize properties, here and elsewhere.
sail
2011/07/20 01:30:46
Done.
sail
2011/07/20 01:30:46
Done.
| |
10 border-bottom:solid 1px #DBDBDB; | |
11 position: fixed; | |
12 } | |
13 | |
14 #sync-promo-contents { | |
15 max-width: 850px; | |
16 margin-left: auto; | |
17 margin-right: auto; | |
18 } | |
19 | |
20 #sync-promo-toggle { | |
21 margin-left: auto; | |
22 margin-right: auto; | |
23 width: 12px; | |
24 margin-bottom: 2px; | |
25 } | |
26 | |
27 #sync-promo.collapsed #sync-promo-toggle-button { | |
28 -webkit-transform: rotate(180deg); | |
29 } | |
30 | |
31 #sync-setup-configure { | |
32 max-width: 475px; | |
33 margin-left: auto; | |
34 margin-right: auto; | |
35 } | |
36 | |
37 #sync-setup-login-summary-title { | |
38 font-weight: bold; | |
39 font-size: 115%; | |
40 } | |
41 | |
42 #sync-setup-login-left-column { | |
43 padding: 30px; | |
44 } | |
OLD | NEW |