blob: f00077dd9eb9c661b429a4cd87ec56c35f79091f (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
body
{
font-family: monospace;
background: #fff;
color: #000;
}
h1
{
font-size: 100%;
text-align: center;
border-bottom: 1px solid #000;
}
table
{
width: 100%;
counter-reset: line;
}
pre
{
margin: 0;
}
ol.menu
{
margin: 1em 0;
list-style: none;
text-align: center;
padding: 0;
}
.menu li
{
display: inline-block;
text-align: center;
min-width: 3em;
}
.lines
{
margin: .5em 5ch 1em;
}
.lines p
{
display: inline;
}
.lines ol
{
display: inline-block;
list-style: none;
padding: 0;
margin: 0;
}
.lines li
{
display: inline;
}
.lines li + li:before
{
content: '; ';
}
.warn
{
background: #ffa;
}
.err
{
background: #faa;
}
.log tr:target, .good
{
background: #afa;
}
.log td:first-child
{
text-align: right;
padding-right: 1ch;
min-width: 5ch;
vertical-align: top;
/* meaningless but aesthetics */
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
.log td:first-child a:before
{
counter-increment: line;
content: counter(line);
}
.log td:first-child a span
{
display: none;
}
.log pre
{
white-space: pre-wrap;
}
address
{
margin-top: 1em;
font-size: 75%;
text-align: center;
}
|