Chromium Code Reviews| 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 html, body { | |
|
xiyuan
2011/10/18 16:11:32
nit: split into two lines. It's good to keep each
mazda
2011/10/18 17:32:02
Done.
| |
| 7 background-color: #EEE; | |
| 8 height: 100%; | |
| 9 margin: 0; | |
| 10 overflow: hidden; | |
| 11 } | |
| 12 | |
| 13 .vbox { | |
| 14 height: 100%; | |
| 15 width: 100%; | |
| 16 } | |
| 17 | |
| 18 .input-area { | |
| 19 -webkit-box-align: center; | |
| 20 -webkit-box-pack: center; | |
| 21 display: -webkit-box; | |
| 22 height: 60%; | |
| 23 } | |
| 24 | |
| 25 .buttons-area { | |
| 26 display: table; | |
| 27 float: right; | |
| 28 height: 100%; | |
| 29 margin-right: 8px; | |
| 30 width: auto; | |
| 31 } | |
| 32 | |
| 33 .buttons-area > div { | |
| 34 display: table-cell; | |
| 35 padding: 3px; | |
| 36 vertical-align: top; | |
| 37 width: 50%; | |
| 38 } | |
| 39 | |
| 40 button { | |
| 41 white-space: nowrap; | |
| 42 width: 100%; | |
| 43 } | |
| OLD | NEW |