blob: b77ecb385b1b1fe4de2c4c666263926ee3597e35 (
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
|
/* CSS Document */
div.disaster{
background-color: #FF0000;
width: 100%;
height: 100%;
margin-right: 5px;
}
div.high{
background-color: #FF8888;
width: 100%;
height: 100%;
margin-right: 5px;
}
div.average{
background-color: #DDAAAA;
width: 100%;
height: 100%;
margin-right: 5px;
}
div.warning{
background-color: #EFEFCC;
width: 100%;
height: 100%;
margin-right: 5px;
}
span.footer_sign{
padding-right: 5px;
padding-left: 5px;
}
span.divider{
color: #000000;
font-family: Verdana, Arial, sans-serif;
font-size: 10px;
font-weight: normal;
}
/********** REQUIREMENTS TABLE *************/
span.ok{
color: #00AA00;
font-weight: bold;
}
span.fail{
color: #AA0000;
font-weight: bold;
}
span.green{
color: #00AA00;
}
span.red{
color: #AA0000;
}
|