OLD | NEW |
1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 | 10 |
11 td { | 11 td { |
12 padding: 4px; | 12 padding: 4px; |
13 } | 13 } |
14 | 14 |
15 tr:nth-child(odd) { | 15 tr:nth-child(odd) { |
16 background-color: azure; | 16 background-color: azure; |
17 } | 17 } |
18 | 18 |
19 th { | 19 th { |
20 background-color: navy; | 20 background-color: navy; |
21 color: white; | 21 color: white; |
22 font-weight: bold; | 22 font-weight: bold; |
23 padding: 5px; | 23 padding: 5px; |
24 } | 24 } |
25 | 25 |
| 26 table { |
| 27 margin-bottom: 5px; |
| 28 } |
| 29 |
26 ul { | 30 ul { |
27 border: 1px solid; | 31 border: 1px solid; |
28 list-style-type: none; | 32 list-style-type: none; |
29 margin: 0; | 33 margin-top: 5px; |
30 max-height: 300px; | 34 max-height: 300px; |
31 overflow: auto; | 35 overflow: auto; |
32 padding: 5px; | 36 padding: 5px; |
33 width: 100%; | 37 width: 100%; |
34 } | 38 } |
35 | 39 |
36 ul li { | 40 ul li { |
37 list-style-position: outside; | 41 list-style-position: outside; |
38 margin: 0 0 0 5px; | 42 margin: 0 0 0 5px; |
39 padding: 0; | 43 padding: 0; |
40 } | 44 } |
41 | 45 |
42 li:nth-child(2n) { | 46 li:nth-child(2n) { |
43 background-color: lavender; | 47 background-color: lavender; |
44 } | 48 } |
| 49 |
| 50 #current-status { |
| 51 font-size: 15px; |
| 52 } |
OLD | NEW |