OLD | NEW |
---|---|
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 h1 { | 5 h1 { |
6 color: rgb(74, 142, 230); | 6 color: rgb(74, 142, 230); |
7 margin: 0; | 7 margin: 0; |
8 padding: 0; | 8 padding: 0; |
9 } | 9 } |
10 | |
11 td { | |
12 padding: 4px; | |
13 } | |
14 | |
15 .row-caption { | |
16 font-weight: bold; | |
17 padding-right: 10px; | |
18 text-align: right; | |
arv (Not doing code reviews)
2014/03/05 14:43:36
or text-align: end;
juyik
2014/03/05 19:05:25
Done.
| |
19 } | |
20 | |
21 .odd-number-row { | |
22 background-color: rgb(245, 245, 200); | |
23 } | |
OLD | NEW |