forked from virtuallynathan/qpep
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.style.css
More file actions
124 lines (123 loc) · 2.71 KB
/
.style.css
File metadata and controls
124 lines (123 loc) · 2.71 KB
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
120
121
122
123
124
<style type="text/css">
body {
background-color: #fff;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table {
margin-left: 10px;
border-collapse: collapse;
}
td {
background-color: #fff;
padding: 2px;
}
table.overview td {
padding-right: 20px;
}
td.percent, td.linecount { text-align: right; }
div.package, #totalcov {
color: #fff;
background-color: #375eab;
font-size: 16px;
font-weight: bold;
padding: 10px;
border-radius: 5px 5px 5px 5px;
}
div.package, #totalcov {
float: right;
right: 10px;
}
#totalcov {
top: 10px;
position: relative;
background-color: #fff;
color: #000;
border: 1px solid #375eab;
clear: both;
}
#summaryWrapper {
position: fixed;
top: 10px;
float: right;
right: 10px;
}
span.packageTotal {
float: right;
color: #000;
}
#doctitle {
background-color: #fff;
font-size: 24px;
margin-top: 20px;
margin-left: 10px;
color: #375eab;
font-weight: bold;
}
#about {
margin-left: 18px;
font-size: 10px;
}
table tr:last-child td {
font-weight: bold;
}
.functitle, .funcname {
text-align: center;
font-size: 20px;
font-weight: bold;
color: #375eab;
}
.funcname {
text-align: left;
margin-top: 20px;
margin-left: 10px;
margin-bottom: 20px;
padding: 2px 5px 5px;
background-color: #e0ebf5;
}
table.listing {
margin-left: 10px;
}
table.listing td {
padding: 0px;
font-size: 12px;
background-color: lightgreen;
vertical-align: top;
padding-left: 10px;
border-bottom: 1px solid #fff;
}
table.listing td:first-child {
text-align: right;
font-weight: bold;
vertical-align: center;
}
table.listing tr.miss td {
background-color: #FFBBB8;
}
table.listing tr:last-child td {
font-weight: normal;
color: #000;
}
table.listing tr:last-child td:first-child {
font-weight: bold;
}
.info {
margin-left: 10px;
}
.info code {
}
pre { margin: 1px; }
pre.cmd {
background-color: #e9e9e9;
border-radius: 5px 5px 5px 5px;
padding: 10px;
margin: 20px;
line-height: 18px;
font-size: 14px;
}
a {
text-decoration: none;
color: #375eab;
}
a:hover { text-decoration: underline; }
p { margin-left: 10px; }
</style>