-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
70 lines (60 loc) · 1.2 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
/* all map containers must be full height */
html, body, .container-fluid, .row { height: 100% }
.title, .filter_pane, .information_pane {
overflow-y: scroll;
}
.tract_cell {
fill: #FF9933;
fill-opacity: .1;
stroke: #FF9933;
stroke-width: 1.5px;
pointer-events:all;
}
.tract_cell:hover {
fill: #FF9933;
fill-opacity: .7;
}
.tract_links {
display: none;
stroke: #000;
}
.tract:hover .tract_links {
display: inline;
fill: red;
fill-opacity: .7;
pointer-events:none;
}
p {
<!--font-size: 10px;-->
<!--font-size: 1vw;-->
}
h1 {
<!--font-size: 35px;-->
<!--font-size: 3vw;-->
}
h4 {
<!--font-size: 18px;-->
<!--font-size: 1.8vw;-->
}
#geo_id .tooltip {
color: #222;
background: #fff;
padding: .5em;
text-shadow: #f5f5f5 0 1px 0;
border-radius: 2px;
font-family: "Helvetica Neue";
font-size: 14px;
/* box-shadow: 0px 0px 2px 0px #a6a6a6;
*/ opacity: 1;
/* position: absolute;
*/ }
#geo_details .tooltip {
color: #222;
background: #fff;
padding: .5em;
text-shadow: #f5f5f5 0 1px 0;
font-family: "Helvetica Neue";
border-radius: 2px;
font-size: 14px;
opacity: 1;
}