Chromium Code Reviews| Index: chrome/browser/resources/gesture_config.css |
| diff --git a/chrome/browser/resources/gesture_config.css b/chrome/browser/resources/gesture_config.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a132210a4dfc602bd277ee4ba8315e0f4964762e |
| --- /dev/null |
| +++ b/chrome/browser/resources/gesture_config.css |
| @@ -0,0 +1,67 @@ |
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. */ |
| + |
| +* { |
| + font-family: 'Chrome Droid Sans', 'Droid Sans Fallback', sans-serif; |
| +} |
|
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
|
| + |
| +button { |
| + background-image: -webkit-linear-gradient(#E7E7E7, #E7E7E7 38%, #D7D7D7); |
| + border: 1px solid rgba(0, 0, 0, 0.25); |
| + border-radius: 2px; |
| + color: #444; |
| + float: right; |
| + font-size: 12px; |
| + margin-top: 15px; |
| + min-height: 2em; |
| + min-width: 7em; |
| + padding-left: 10px; |
| + padding-right: 10px; |
| +} |
|
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
|
| + |
| +.buttons-pane { |
| + width: 90%; |
| +} |
| + |
| +form { |
| + width: 610px; |
| +} |
| + |
| +h2 { |
| + 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:
|
| + font-size: 1.3em; |
| + font-weight: normal; |
| +} |
| + |
| +input { |
| + border: solid 1px rgb(170, 207, 228); |
| + display: block; |
| + float: left; |
| + font-size: 12px; |
| + margin: 2px 0 8px 10px; |
| + padding: 4px 2px; |
| + text-align: right; |
| + width: 110px; |
| +} |
| + |
| +label { |
| + color: black; |
| + display: block; |
| + float: left; |
| + font-size: 16px; |
| + font-weight: normal; |
| + padding-top: 4px; |
| + text-align: right; |
| + width: 370px; |
| +} |
| + |
| +.units { |
| + display: block; |
| + float: left; |
| + font-size: 12px; |
| + margin-left: 7px; |
| + padding-top: 7px; |
| + text-align: left; |
| + width: 100px; |
| +} |