| OLD | NEW |
| 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 #signin { | 6 #signin { |
| 7 -webkit-box-align: center; | 7 -webkit-box-align: center; |
| 8 -webkit-box-pack: center; | 8 -webkit-box-pack: center; |
| 9 display: -webkit-box; | 9 display: -webkit-box; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| 11 } | 11 } |
| 12 | 12 |
| 13 #gaia-signin { | 13 #gaia-signin { |
| 14 height: 470px; | 14 height: 470px; |
| 15 } | 15 } |
| 16 | 16 |
| 17 #signin-right { | 17 #signin-right { |
| 18 float: right; | 18 float: right; |
| 19 font-size: 12px; | 19 font-size: 12px; |
| 20 margin-right: 80px; | 20 margin-right: 80px; |
| 21 width: 200px; | 21 width: 200px; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .signin-link { | 24 .signin-link { |
| 25 color: #254f9b; | 25 color: #254f9b; |
| 26 cursor: pointer; | 26 cursor: pointer; |
| 27 margin-top: 20px; | 27 margin-top: 20px; |
| 28 } | 28 } |
| 29 | 29 |
| 30 #gaia-signin > iframe { | 30 #signin-frame { |
| 31 bottom: 0; | 31 bottom: 0; |
| 32 display: -webkit-box; | |
| 33 height: 100%; | 32 height: 100%; |
| 34 left: 0; | 33 left: 0; |
| 35 position: absolute; | 34 position: absolute; |
| 36 right: 0; | 35 right: 0; |
| 37 top: 0; | 36 top: 0; |
| 38 width: 340px; | 37 width: 340px; |
| 39 } | 38 } |
| 40 | 39 |
| 40 #gaia-loading { |
| 41 -webkit-box-align: center; |
| 42 -webkit-box-pack: center; |
| 43 bottom: 0; |
| 44 display: -webkit-box; |
| 45 left: 0; |
| 46 position: absolute; |
| 47 right: 0; |
| 48 top: 0; |
| 49 } |
| 50 |
| 41 #email, | 51 #email, |
| 42 #password { | 52 #password { |
| 43 display: block; | 53 display: block; |
| 44 margin-bottom: 20px; | 54 margin-bottom: 20px; |
| 45 } | 55 } |
| OLD | NEW |