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 * { | |
| 6 font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; | |
| 7 } | |
|
flackr
2012/06/07 21:07:54
What's this for?
Kevin Greer
2012/06/08 12:10:34
I set the font globally rather than repeating it i
| |
| 8 | |
| 9 button { | |
| 10 background-image: -webkit-linear-gradient(#E7E7E7, #E7E7E7 38%, #D7D7D7); | |
| 11 border: 1px solid rgba(0, 0, 0, 0.25); | |
| 12 border-radius: 2px; | |
| 13 color: #444; | |
| 14 float: right; | |
| 15 font-size: 12px; | |
| 16 margin-top: 15px; | |
| 17 min-height: 2em; | |
| 18 min-width: 7em; | |
| 19 padding-left: 10px; | |
| 20 padding-right: 10px; | |
| 21 } | |
|
flackr
2012/06/07 21:07:54
We probably want to include shared/css/widgets.css
Kevin Greer
2012/06/08 11:51:25
Ironically, if I do that, then the button no longe
| |
| 22 | |
| 23 .buttons-pane { | |
| 24 width: 90%; | |
| 25 } | |
| 26 | |
| 27 form { | |
| 28 width: 610px; | |
| 29 } | |
| 30 | |
| 31 h2 { | |
| 32 color: rgb(48, 57,66); | |
|
flackr
2012/06/07 21:07:54
nit: Space before 66.
Kevin Greer
2012/06/08 11:51:25
Removed.
On 2012/06/07 21:07:54, flackr wrote:
| |
| 33 font-size: 1.3em; | |
| 34 font-weight: normal; | |
| 35 } | |
| 36 | |
| 37 input { | |
| 38 border: solid 1px rgb(170, 207, 228); | |
| 39 display: block; | |
| 40 float: left; | |
| 41 font-size: 12px; | |
| 42 margin: 2px 0 8px 10px; | |
| 43 padding: 4px 2px; | |
| 44 text-align: right; | |
| 45 width: 110px; | |
| 46 } | |
| 47 | |
| 48 label { | |
| 49 color: black; | |
| 50 display: block; | |
| 51 float: left; | |
| 52 font-size: 16px; | |
| 53 font-weight: normal; | |
| 54 padding-top: 4px; | |
| 55 text-align: right; | |
| 56 width: 370px; | |
| 57 } | |
| 58 | |
| 59 .units { | |
| 60 display: block; | |
| 61 float: left; | |
| 62 font-size: 12px; | |
| 63 margin-left: 7px; | |
| 64 padding-top: 7px; | |
| 65 text-align: left; | |
| 66 width: 100px; | |
| 67 } | |
| OLD | NEW |