blob: 9b7c44fe4de00169a0e76058d40457e211cbec7e [file] [log] [blame]
Stephen Warrend2015062016-01-15 11:15:24 -07001/*
2 * Copyright (c) 2015 Stephen Warren
3 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
4 *
5 * SPDX-License-Identifier: GPL-2.0
6 */
7
8/*
9 * This provides pretty formatting of the HTML log file, e.g.
10 * - colored bars beside/above log sections for easily parsed delineation.
11 * - color highlighting of various messages.
12 */
13
14body {
15 background-color: black;
16 color: #ffffff;
17}
18
19pre {
20 margin-top: 0px;
21 margin-bottom: 0px;
22}
23
24.implicit {
25 color: #808080;
26}
27
Stephen Warren83357fd2016-02-03 16:46:34 -070028.block {
Stephen Warrend2015062016-01-15 11:15:24 -070029 border-style: solid;
30 border-color: #303030;
31 border-width: 0px 0px 0px 5px;
32 padding-left: 5px
33}
34
Stephen Warren83357fd2016-02-03 16:46:34 -070035.block-header {
Stephen Warrend2015062016-01-15 11:15:24 -070036 background-color: #303030;
37 margin-left: -5px;
38 margin-top: 5px;
39}
40
Stephen Warren83357fd2016-02-03 16:46:34 -070041.block-header:hover {
42 text-decoration: underline;
Stephen Warrend2015062016-01-15 11:15:24 -070043}
44
Stephen Warren83357fd2016-02-03 16:46:34 -070045.block-trailer {
Stephen Warrend2015062016-01-15 11:15:24 -070046 display: none;
47}
48
49.error {
50 color: #ff0000
51}
52
53.warning {
54 color: #ffff00
55}
56
57.info {
58 color: #808080
59}
60
61.action {
62 color: #8080ff
63}
64
Stephen Warren9679d332017-10-27 11:04:08 -060065.timestamp {
66 color: #8080ff
67}
68
Stephen Warrend2015062016-01-15 11:15:24 -070069.status-pass {
70 color: #00ff00
71}
72
73.status-skipped {
74 color: #ffff00
75}
76
Stephen Warren78b39cc2016-01-27 23:57:51 -070077.status-xfail {
78 color: #ff7f00
79}
80
81.status-xpass {
82 color: #ff7f00
83}
84
Stephen Warrend2015062016-01-15 11:15:24 -070085.status-fail {
86 color: #ff0000
87}
Stephen Warren83357fd2016-02-03 16:46:34 -070088
89.hidden {
90 display: none;
91}
92
93a:link {
94 text-decoration: inherit;
95 color: inherit;
96}
97
98a:visited {
99 text-decoration: inherit;
100 color: inherit;
101}
102
103a:hover {
104 text-decoration: underline;
105}