blob: 677b5f41dbe6783fa1cf235baddc126f7f8238ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* 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. */
body {
background-color: white;
color: black;
font-family: Helvetica,Arial,sans-serif;
margin: 0;
}
tr {
display: none;
}
#outer {
margin-left: auto;
margin-right: auto;
margin-top: 10px;
width: 800px;
}
#inner {
padding-top: 10px;
width: 550px;
}
.label {
-webkit-padding-end: 5px;
font-size: 0.9em;
font-weight: bold;
text-align: end;
vertical-align: top;
white-space: nowrap;
}
.label:after {
content: ':';
}
#message {
font-family: monospace;
}
.value {
font-family: monospace;
max-width: 430px;
padding-left: 5px;
}
|