Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2012 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 button { | |
| 6 background: #888; | |
| 7 color: #FFF; | |
| 8 font-size: 11px; | |
| 9 font-weight: bold; | |
| 10 height: 31px; | |
| 11 line-height: 31px; | |
| 12 margin-left: 20px; | |
| 13 margin-top: 20px; | |
| 14 width: 125px; | |
|
flackr
2012/06/06 14:50:54
Use 2 space indent.
Kevin Greer
2012/06/06 20:26:20
Done.
| |
| 15 } | |
| 16 | |
| 17 .buttons-pane { | |
| 18 float: right; | |
| 19 } | |
| 20 | |
| 21 form { | |
| 22 width: 650px; | |
| 23 } | |
| 24 | |
| 25 input { | |
| 26 border: solid 1px rgb(170, 207, 228); | |
| 27 display: block; | |
| 28 float: left; | |
| 29 font-size: 12px; | |
| 30 margin: 2px 0 8px 10px; | |
| 31 padding: 4px 2px; | |
| 32 text-align: right; | |
| 33 width: 150px; | |
| 34 } | |
| 35 | |
| 36 label { | |
| 37 display: block; | |
| 38 float: left; | |
| 39 font-weight: bold; | |
| 40 padding-top: 4px; | |
| 41 text-align: right; | |
| 42 width: 350px; | |
| 43 } | |
| 44 | |
| 45 .units { | |
| 46 display: block; | |
| 47 float: left; | |
| 48 margin-left: 7px; | |
| 49 padding-top: 4px; | |
| 50 text-align: left; | |
| 51 width: 100px; | |
| 52 } | |
| OLD | NEW |