CSS.css
547 Bytes
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
*{
text-align: center;
}
.table0, tr,th, td{
border: 1px solid black;
padding: 10px;
background-color: rgba(150, 0, 5, 0.1);
}
form{
display: inline-block;
width: 40%;
}
.radio{
text-align: left;
margin: 10px;
}
.ct-line.ct-threshold-above {
stroke: #03a45a;
}
.ct-point.ct-threshold-above{
stroke: rgba(0,0,0,0);
}
.ct-line.ct-threshold-below, .ct-point.ct-threshold-below, .ct-bar.ct-threshold-below {
stroke: #ce0461;
}
.ct-area.ct-threshold-above {
fill: #03a45a;
}
.ct-area.ct-threshold-below {
fill: #ce0461;
}