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 #signin { | |
7 -webkit-box-align: center; | |
8 -webkit-box-pack: center; | |
9 display: -webkit-box; | |
10 overflow: hidden; | |
11 } | |
12 | |
13 #gaia-signin { | |
14 -webkit-box-align: center; | |
15 -webkit-box-pack: center; | |
16 display: -webkit-box; | |
17 height: 470px; | |
18 } | |
19 | |
20 #signin-right { | |
21 font-size: 12px; | |
22 position: absolute; | |
23 top: 60px; | |
24 width: 200px; | |
25 } | |
26 | |
27 html[dir=ltr] #signin-right { | |
28 right: -150px; /* ('gaia-sign'.width - 'signin-frame'.width) / 2 - | |
29 desiredGap - 'signin-right'.width = | |
30 (640 - 340) / 2 - 100 - 200 = -150 | |
31 */ | |
32 } | |
33 | |
34 html[dir=rtl] #signin-right { | |
35 left: -150px; | |
36 } | |
37 | |
38 .signin-text { | |
39 color: #666; | |
40 margin-top: 20px; | |
41 } | |
42 | |
43 .signin-link { | |
44 color: #254f9b; | |
45 cursor: pointer; | |
46 text-decoration: none; | |
47 } | |
48 | |
49 #signin-frame { | |
50 height: 100%; | |
51 width: 340px; | |
52 } | |
53 | |
54 #gaia-loading { | |
55 -webkit-box-align: center; | |
56 -webkit-box-pack: center; | |
57 bottom: 0; | |
58 display: -webkit-box; | |
59 left: 0; | |
60 position: absolute; | |
61 right: 0; | |
62 top: 0; | |
63 } | |
64 | |
65 #email, | |
66 #password { | |
67 display: block; | |
68 margin-bottom: 20px; | |
69 } | |
OLD | NEW |