-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (66 loc) · 1.22 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
h1 {
font-family: "Trebuchet MS", Helvetica, sans-serif;
}
p {
font-family: "Trebuchet MS", Helvetica, sans-serif;
}
button {
background-color: white;
border:2px solid #4d6ddb;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 4px;
}
button:hover {
background-color: rgba(77, 109, 219, 0.4);
color: black;
}
button:focus {
outline: none;
}
button.pressed {
background-color: #4d6ddb;
color: white;
}
#tooltip {
position: absolute;
width: auto;
height: auto;
padding: 6px;
background-color: white;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
pointer-events: none;
-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}
#tooltip.hidden {
display: none;
}
#tooltip p {
margin: 0;
font-family: sans-serif;
font-size: 14px;
line-height: 20px;
}
.tag {
pointer-events: none;
}
path.line {
stroke-width: 2;
fill: none
}
#area1 {
float: left;
}
#area2 {
float: right;
}
.legend {
font-size: 14px;
font-weight: bold;
text-anchor: left;
}