aboutsummaryrefslogtreecommitdiffstats
path: root/css/angular-scenario.css
blob: 3960c3575faa87da3e878116dcf762f532c3dc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@charset "UTF-8";
/* CSS Document */

#runner {
  position: absolute;
  top:5px;
  left:10px;
  right:10px;
  height: 200px;
}

.console {
  display: block;
  overflow: scroll;
  height: 200px;
  border: 1px solid black;
}

#testView {
  position: absolute;
  bottom:10px;
  top:230px;
  left:10px;
  right:10px;
}

#testView iframe {
  width: 100%;
  height: 100%;
}

li.running > span {
  background-color: yellow;
}

#runner span {
  background-color: green;
}

#runner .fail > span {
  background-color: red;
}

.collapsed > ul {
  display: none;
}

//////

.run, .info, .error {
  display: block;
  padding: 0 1em;
  font-family: monospace;
  white-space: pre;
}

.run {
  background-color: lightgrey;
  padding: 0 .2em;
}

.run.pass {
  background-color: lightgreen;
}

.run.fail {
  background-color: lightred;
}

.name, .time, .state {
  padding-right: 2em;
}

error {
  color: red;
}