-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualization.css
66 lines (60 loc) · 879 Bytes
/
visualization.css
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
div.proj_content {
border: #000 solid 2px;
clear: left;
padding: 1em;
}
input {
border-top: 0;
border-left: 0;
border-right: 0;
text-align: center;
font: 14px;
width: 60px;
}
.axis path,
.axis line {
fill: none;
stroke-width: 2px;
stroke: #000;
shape-rendering: crispEdges;
}
.btn-halo{
color: #333;
background-color:#66c2a5;
border-color: #ccc;
}
.btn-disk{
color: #333;
background-color:#fc8d62;
border-color: #ccc;
}
.btn-bulge{
color: #333;
background-color:#8da0cb;
border-color: #ccc;
}
.line {
fill: none;
stroke-width: 3px;
}
.line.disk{
stroke:#fc8d62;
}
.line.halo{
stroke:#66c2a5;
}
.line.bulge{
stroke:#8da0cb;
}
.line.total{
stroke-dashoffset: 4px;
stroke-dasharray: 4 4;
stroke:black;
}
.line.modes{
stroke:black;
}
.legend rect {
fill:white;
stroke:black;
opacity:0.8;}