OLD | NEW |
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 li { | 5 li { |
6 clear: both; | 6 clear: both; |
7 } | 7 } |
8 | 8 |
9 textarea { | 9 textarea { |
10 width: 100%; | 10 width: 100%; |
11 } | 11 } |
12 | 12 |
13 .log-container { | 13 .log-container { |
14 float: left; | 14 float: left; |
15 } | 15 } |
16 | 16 |
17 .log-header-event { | 17 .log-header-event { |
18 min-width: 720px; | 18 min-width: 600px; |
19 } | 19 } |
20 | 20 |
21 .stats-table-container { | 21 .stats-table-container { |
22 float: left; | 22 float: left; |
23 padding-left: 5px; | 23 padding: 0 0 0 0; |
24 padding-right: 5px; | |
25 } | 24 } |
| 25 |
| 26 body { |
| 27 font-family: 'Lucida Grande', sans-serif; |
| 28 padding: 20px; |
| 29 } |
| 30 |
| 31 button { |
| 32 margin-left: 1em; |
| 33 } |
| 34 |
| 35 h3 + div { |
| 36 font-size: 0.8em; |
| 37 margin: 0 0 1.2em 0; |
| 38 } |
| 39 |
| 40 h2 { |
| 41 border-bottom: 1px solid #eee; |
| 42 color: #666; |
| 43 font-size: 1.1em; |
| 44 margin: 0 0 1.6em 0; |
| 45 padding: 0 0 0.7em 0; |
| 46 } |
| 47 |
| 48 h3 { |
| 49 color: #666; |
| 50 font-size: 0.9em; |
| 51 margin: 0 0 0.5em 0; |
| 52 } |
| 53 |
| 54 li { |
| 55 list-style-type: none; |
| 56 margin: none; |
| 57 padding: none; |
| 58 } |
| 59 |
| 60 span { |
| 61 width: 17em; |
| 62 display: inline-block; |
| 63 } |
| 64 |
| 65 table { |
| 66 border: none; |
| 67 margin: 0 1em 1em 0; |
| 68 } |
| 69 |
| 70 td { |
| 71 border: none; |
| 72 font-size: 0.8em; |
| 73 padding: 0 1em 0.5em 0; |
| 74 } |
| 75 |
| 76 td:first-child { |
| 77 padding-top: 0.3em; |
| 78 } |
| 79 |
| 80 textarea { |
| 81 border: none; |
| 82 outline: none; |
| 83 } |
| 84 |
| 85 table > tr { |
| 86 vertical-align: top; |
| 87 } |
| 88 |
| 89 th { |
| 90 border: none; |
| 91 font-size: 0.8em; |
| 92 padding: 0 0 0.5em 0; |
| 93 } |
| 94 |
| 95 ul { |
| 96 margin: none; |
| 97 padding: none; |
| 98 -webkit-padding-start: 0px; |
| 99 } |
OLD | NEW |