Use ocaml-bisect to compute coverage of tests.
[ocaml-bitstring.git] / coverage-report / style.css
1 body {
2     background: white;
3     white-space: nowrap;
4 }
5
6 .footer {
7     font-size: smaller;
8     text-align: center;
9 }
10
11 .codeSep {
12     border: none 0;
13     border-top: 1px solid gray;
14     height: 1px;
15 }
16
17 .indexSep {
18     border: none 0;
19     border-top: 1px solid gray;
20     height: 1px;
21     width: 75%;
22 }
23
24 .lineNone { white-space: nowrap; background: white; }
25 .lineAllVisited { white-space: nowrap; background: green; }
26 .lineAllUnvisited { white-space: nowrap; background: red; }
27 .lineMixed { white-space: nowrap; background: yellow; }
28
29 table.simple {
30     border-width: 1px;
31     border-spacing: 0px;
32     border-top-style: solid;
33     border-bottom-style: solid;
34     border-color: black;
35 }
36
37 table.simple th {
38     border-width: 1px;
39     border-spacing: 0px;
40     border-bottom-style: solid;
41     border-color: black;
42     text-align: center;
43     font-weight: bold;
44 }
45
46 table.simple td {
47     border-width: 1px;
48     border-spacing: 0px;
49     border-style: none;
50 }
51
52 table.gauge {
53     border-width: 0px;
54     border-spacing: 0px;
55     padding: 0px;
56     border-style: none;
57     border-collapse: collapse;
58 }
59
60 table.gauge td {
61     border-width: 0px;
62     border-spacing: 0px;
63     padding: 0px;
64     border-style: none;
65     border-collapse: collapse;
66 }
67
68 .gaugeOK { background: green; }
69 .gaugeKO { background: red; }
70