OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 body { | |
6 background-color: white; | |
xiyuan
2014/12/05 18:56:55
nit: not necessary, default bg color is white.
Charlie
2014/12/05 21:26:08
Done.
| |
7 color: black; | |
8 font-family: Helvetica,Arial,sans-serif; | |
9 font-size: 10pt; | |
10 margin: 10px 20px; | |
11 } | |
12 | |
13 section { | |
14 margin-top: 50px; | |
15 } | |
16 | |
17 table { | |
18 border: 1px solid DarkGrey; | |
19 border-spacing: 0; | |
20 } | |
21 | |
22 thead { | |
23 background-color: rgb(220, 240, 255); | |
24 font-weight: bold; | |
25 } | |
26 | |
27 tbody { | |
28 border-top: 1px solid DarkGrey; | |
29 height: 200px; | |
30 overflow-x: hidden; | |
31 overflow-y: scroll; | |
32 } | |
33 | |
34 td { | |
35 padding: 5px; | |
36 text-align: left; | |
37 } | |
38 | |
39 #directives-table td { | |
40 width: 200px; | |
41 } | |
42 | |
43 #sent-tokens-table td, | |
44 #received-tokens-table td { | |
45 width: 150px; | |
46 } | |
47 | |
48 tbody, | |
49 thead > tr { | |
50 display: block; | |
51 } | |
OLD | NEW |