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
|
body {
font: 14px/1.6 "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
color: #000;
border-top: 2px solid #ddd;
background-color: #fff;
min-height: 100%;
display: flex;
flex-direction: column;
}
h1 {
width: 100%;
border-bottom: 1px solid #eee;
margin-bottom: 0;
font-weight: 100;
font-size: 1.1em;
letter-spacing: 1px;
}
h1 code {
font-size: 0.96em;
}
code {
font: 12px monospace;
}
footer {
background: #eee;
width: 100%;
padding: 10px 0;
text-align: right;
border-top: 1px solid #ddd;
display: flex;
flex: 1;
order: 2;
justify-content: center;
}
table {
width: 100%;
margin-top: 10px;
border-collapse: collapse;
border: 1px solid #cbcbcb;
color: #000;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
table thead {
display: none;
}
table td.line,
table td.line a,
table td.hits {
width: 20px;
background: #eaeaea;
text-align: center;
text-decoration: none;
font-size: 11px;
padding: 0 10px;
color: #949494;
}
table td.hits {
width: 10px;
padding: 2px 5px;
color: rgba(0, 0, 0, 0.6);
background-color: #f0f0f0;
}
tr.miss td.line,
tr.miss td.line a,
tr.miss td.hits {
background-color: #ffdce0;
border-color: #fdaeb7;
}
tr.miss td {
background-color: #ffeef0;
}
tr.hit td.line,
tr.hit td.line a,
tr.hit td.hits {
background-color: #cdffd8;
border-color: #bef5cb;
}
tr.hit td {
background-color: #e6ffed;
}
td.source {
padding-left: 15px;
line-height: 15px;
white-space: pre;
font: 12px monospace;
}
|