-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
100 lines (86 loc) · 1.58 KB
/
style.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<style>
/*//--------- Chart1 begins ------*/
.background {
fill: none;
pointer-events: all;
}
.feature {
fill: #ccc;
cursor: pointer;
}
.feature.active {
fill: orange;
}
.mesh {
fill: none;
stroke: #fff;
stroke-linecap: round;
stroke-linejoin: round;
}
/*#countries path{
fill: #99ccff;
}*/
h2 {
position: absolute;
top: 50px;
left: 100px;
font-size: 1.3em;
font-weight: 100;
}
.met path{
fill: #900;
/*stroke: #282828;*/
}
.met path:hover{
fill: black;
}
.countries {
fill: none;
stroke: #fff;
stroke-linejoin: round;
}
/*//----------Chart1 ends-------*/
/*//----------Chart2 begins-----*/
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
.zoom {
cursor: move;
fill: none;
pointer-events: all;
}
/*//---------Chart2 ends--------*/
/*body{
width:1080px;
margin:50px auto;
}*/
.Linechart path { stroke: #fff; }
path:hover { opacity:0.9; }
.rectHover:hover { fill:blue; }
.axis { font: 10px sans-serif; }
.legend tr{ border-bottom:1px solid grey; }
.legend tr:first-child{ border-top:1px solid grey; }
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path { display: none; }
.legend{
margin-bottom:76px;
display:inline-block;
border-collapse: collapse;
border-spacing: 0px;
}
.legend td{
padding:4px 5px;
vertical-align:bottom;
}
.legendFreq, .legendPerc{
align:right;
width:50px;
}
</style>