1/*
2 * Automated Testing Framework (atf)
3 *
4 * Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30body {
31    margin: 0 0 0 0;
32}
33
34h1 {
35    background: black;
36    color: white;
37    font-family: Arial;
38    font-size: 24pt;
39    padding: 5pt;
40}
41
42h2 {
43    background: #eeeeee;
44    font-family: Arial;
45    font-size: 16pt;
46    margin-left: 10pt;
47    margin-right: 10pt;
48    padding: 3pt;
49}
50
51h3 {
52    font-family: Arial;
53    font-size: 12pt;
54    margin-left: 20pt;
55    margin-right: 20pt;
56    padding: 3pt;
57}
58
59p.term {
60    margin-left: 40pt;
61    margin-right: 40pt;
62}
63
64pre.so {
65    margin-left: 40pt;
66    margin-right: 40pt;
67}
68
69pre.se {
70    margin-left: 40pt;
71    margin-right: 40pt;
72}
73
74table.summary {
75    border-collapse: collapse;
76    border-color: black;
77    border-style: solid;
78    border-width: 1pt;
79    margin-left: auto;
80    margin-right: auto;
81}
82
83table.summary th {
84    background: #aaaadd;
85    border-style: solid;
86    border-width: 1pt;
87    padding: 3pt 6pt 3pt 6pt;
88}
89
90table.summary td {
91    border-style: solid;
92    border-width: 1pt;
93    padding: 3pt 6pt 3pt 6pt;
94}
95
96table.summary td.numeric p {
97    text-align: right;
98}
99
100table.summary td.numeric-error p {
101    text-align: right;
102    color: red;
103}
104
105table.summary td.numeric-warning p {
106    text-align: right;
107    color: #aaaa00;
108}
109
110table.summary tr.group {
111    background: #dddddd;
112}
113
114table.summary tr.entry td p {
115    margin-left: 10pt;
116}
117
118table.tcs-summary {
119    border-collapse: collapse;
120    border-color: black;
121    border-style: solid;
122    border-width: 1pt;
123    margin-left: auto;
124    margin-right: auto;
125    width: 80%;
126}
127
128table.tcs-summary td {
129    border-style: solid;
130    border-width: 1pt;
131    padding: 3pt 6pt 3pt 6pt;
132}
133
134table.tcs-summary th {
135    background: #aaaadd;
136    border-style: solid;
137    border-width: 1pt;
138    padding: 3pt 6pt 3pt 6pt;
139}
140
141table.tcs-summary td.tp-id {
142    background: #dddddd;
143    font-weight: bold;
144}
145
146table.tcs-summary td.tc-id p {
147    margin-left: 10pt;
148}
149
150table.tcs-summary td.tcr-passed {
151    background: #aaffaa;
152}
153
154table.tcs-summary td.tcr-failed {
155    background: #ffaaaa;
156}
157
158table.tcs-summary td.tcr-skipped {
159    background: #ffffaa;
160}
161
162table.tcs-summary td.tcr-xfail {
163    background: #ffaaff;
164}
165