-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 706 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (37 loc) · 706 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
43
body {
background-color: grey;
}
.background {
fill: none;
pointer-events: all;
}
#regionSelector{
color: blue;
font-size:200%;
font-family:Georgia;
}
#r2map .active {
fill: orange;
}
.st0{fill:none;stroke:#A9A9A9;stroke-width:2;}
.st1{fill:#D3D3D3;stroke:#FFFFFF;stroke-width:0.75;}
.svg { height: 50vw; }
.region .regiontext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 10px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.region { fill: #d3d3d3; transition: .6s fill; stroke:white; }
.region:hover {
fill: blue;
}
div.mapInfo {
border: 3px solid blue;
}