| 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 body { |
| 6 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; |
| 7 font-size: 12px; |
| 8 } |
| 9 |
| 10 button { |
| 11 background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7); |
| 12 border: 1px solid rgba(0, 0, 0, 0.25); |
| 13 border-radius: 2px; |
| 14 color: #444; |
| 15 float: right; |
| 16 margin-top: 15px; |
| 17 min-height: 2em; |
| 18 min-width: 7em; |
| 19 padding-left: 10px; |
| 20 padding-right: 10px; |
| 21 } |
| 22 |
| 23 .buttons-pane { |
| 24 width: 90%; |
| 25 } |
| 26 |
| 27 form { |
| 28 width: 610px; |
| 29 } |
| 30 |
| 31 h2 { |
| 32 color: rgb(48, 57, 66); |
| 33 font-size: 1.3em; |
| 34 font-weight: normal; |
| 35 } |
| 36 |
| 37 input { |
| 38 border: solid 1px rgb(170, 207, 228); |
| 39 float: left; |
| 40 margin: 2px 0 8px 10px; |
| 41 padding: 4px 2px; |
| 42 text-align: right; |
| 43 width: 110px; |
| 44 } |
| 45 |
| 46 label { |
| 47 color: black; |
| 48 float: left; |
| 49 font-size: 16px; |
| 50 font-weight: normal; |
| 51 padding-top: 4px; |
| 52 text-align: right; |
| 53 width: 370px; |
| 54 } |
| 55 |
| 56 .row-units { |
| 57 float: left; |
| 58 margin-left: 7px; |
| 59 padding-top: 7px; |
| 60 text-align: left; |
| 61 width: 100px; |
| 62 } |
| OLD | NEW |