-
Notifications
You must be signed in to change notification settings - Fork 0
/
bubble_chart.css
80 lines (66 loc) · 1.02 KB
/
bubble_chart.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
.button {
min-width: 130px;
padding: 10px 15px;
cursor: pointer;
text-align: center;
font-size: 13px;
border: 1px solid #e0e0e0;
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.h1 {
font-family: 'Bungee', cursive;
}
.maintitle {
font-family: 'Bungee Shade';
color: black;
}
.maintitle:hover {
color: navy;
/*cursive; color: black;*/
}
.button.active {
background: #000;
color: #fff;
}
.loc {
font-family: 'Bungee', cursive;
font-size: 21px;
/*fill: black;*/
cursor: default;
padding-top: 40px;
}
.loc:hover {
/*fill: navy;*/
}
.tooltip {
position: absolute;
top: 100px;
left: 100px;
-moz-border-radius:5px;
border-radius: 5px;
border: 2px solid #000;
background: #fff;
opacity: .9;
color: black;
padding: 10px;
width: 300px;
font-size: 12px;
z-index: 10;
}
.tooltip .title {
font-size: 13px;
}
.tooltip .name {
font-weight:bold;
}
.tooltip .et {
font-size: 18px;
font-weight:bold;
color: darkgreen;
}
.tooltip .ev {
color: darkgreen;
}