]>
Commit | Line | Data |
---|---|---|
d201506c SW |
1 | /* |
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 | ||
14 | body { | |
15 | background-color: black; | |
16 | color: #ffffff; | |
17 | } | |
18 | ||
19 | pre { | |
20 | margin-top: 0px; | |
21 | margin-bottom: 0px; | |
22 | } | |
23 | ||
24 | .implicit { | |
25 | color: #808080; | |
26 | } | |
27 | ||
28 | .section { | |
29 | border-style: solid; | |
30 | border-color: #303030; | |
31 | border-width: 0px 0px 0px 5px; | |
32 | padding-left: 5px | |
33 | } | |
34 | ||
35 | .section-header { | |
36 | background-color: #303030; | |
37 | margin-left: -5px; | |
38 | margin-top: 5px; | |
39 | } | |
40 | ||
41 | .section-trailer { | |
42 | display: none; | |
43 | } | |
44 | ||
45 | .stream { | |
46 | border-style: solid; | |
47 | border-color: #303030; | |
48 | border-width: 0px 0px 0px 5px; | |
49 | padding-left: 5px | |
50 | } | |
51 | ||
52 | .stream-header { | |
53 | background-color: #303030; | |
54 | margin-left: -5px; | |
55 | margin-top: 5px; | |
56 | } | |
57 | ||
58 | .stream-trailer { | |
59 | display: none; | |
60 | } | |
61 | ||
62 | .error { | |
63 | color: #ff0000 | |
64 | } | |
65 | ||
66 | .warning { | |
67 | color: #ffff00 | |
68 | } | |
69 | ||
70 | .info { | |
71 | color: #808080 | |
72 | } | |
73 | ||
74 | .action { | |
75 | color: #8080ff | |
76 | } | |
77 | ||
78 | .status-pass { | |
79 | color: #00ff00 | |
80 | } | |
81 | ||
82 | .status-skipped { | |
83 | color: #ffff00 | |
84 | } | |
85 | ||
78b39cc3 SW |
86 | .status-xfail { |
87 | color: #ff7f00 | |
88 | } | |
89 | ||
90 | .status-xpass { | |
91 | color: #ff7f00 | |
92 | } | |
93 | ||
d201506c SW |
94 | .status-fail { |
95 | color: #ff0000 | |
96 | } |