OILS / web / wild.css View on Github | oilshell.org

47 lines, 38 significant
1/* For files generated by wild_report.py */
2
3#status {
4 text-align: center;
5 font-size: x-large;
6 color: darkred;
7}
8
9tbody .name {
10 font-family: monospace;
11}
12
13/* Most cells are numbers or OK/FAIL, align left */
14td {
15 text-align: right;
16}
17/* Except for the paths */
18.name {
19 text-align: left;
20}
21
22/* Adapted from spec-tests.css */
23.ok { color: darkgreen; }
24.fail { color: darkred; }
25
26#stderr td {
27 vertical-align: top; /* so the #anchor goes to top of cell */
28 text-align: left;
29 border-top: solid 1px;
30 border-color: lightgrey;
31}
32
33/* different hover color than the files/dirs tables */
34#stderr tr:hover {
35 background-color: #eee;
36}
37
38#nav {
39 font-size: large;
40 font-family: monospace;
41}
42
43#summary {
44 background-color: #DEE; /* like blog .attention */
45 padding: 5px;
46}
47