UNPKG

789 BCSSView Raw
1
2/* Reset */
3* {
4 margin: 0px;
5 padding: 0px;
6 overflow: hidden;
7 position: relative;
8}
9
10body {
11 font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
12
13}
14
15/* Testcases listing */
16.suite-header {
17 margin-top: 10px;
18}
19
20.suite-header label {
21 margin-left: 5px;
22}
23
24.testcase {
25 width: 300px;
26 margin-left: 10px;
27}
28.testcase label {
29 width: 300px;
30 float: right;
31}
32.testcase label span {
33 margin-right: 5px;
34}
35
36#listing {
37 top: 20px;
38 height: 95%; /* force overflow to test */
39 width: 100%;
40 overflow-y: scroll;
41 overflow-x: auto;
42}
43
44/* Overall status */
45.test-status {
46 position: fixed;
47 border-style: groove;
48 width: 100px;
49 right: 0px;
50 top: 0px;
51}
52
53.test-status li {
54 float: left;
55 width: 20px;
56}
57
58.pass {
59 color: #33D633;
60}
61
62.fail {
63 color: #D11919;
64}
65