-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_report.css
24 lines (24 loc) · 995 Bytes
/
test_report.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
html {
max-width: 1000px;
margin: 0 auto;
}
body { font-family: Calibri, sans-serif }
code, pre { font-family: Consolas, monospace; font-size: 10pt }
h1 { font-size: 18pt; font-weight: bold; display: inline-block; margin: 0.4em 0.2em }
h3 { font-size: 11pt; font-weight: bold; background-color: #EEEEE0; padding: 0.2em }
span.fail, span.pass {
display: inline-block;
border-radius: 6px; padding: 0 6px;
position: relative; top: -0.2em;
color: white;
font-family: Consolas, monospace;
font-size: 9pt
}
span.fail { background-color: red }
span.pass { background-color: green }
pre { border: 1px solid lightgray }
pre.terminal { padding: 0.5em; background-color: black; color: white; overflow: auto }
pre.terminal.info { background-color: white; color: gray; font-size: .7em }
code { display: block; padding: 0.5em; overflow-x: auto }
code.ln { float: left; color: gray; background-color: #FEF9ED }
.empty { color: gray; font-style: italic }