-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
62 lines (57 loc) · 976 Bytes
/
main.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
.section {
margin-bottom: 200px;
}
.chart {
display: inline-block;
margin-right: 0;
transition: all 0.3s ease;
}
.showOnHover {
display: none;
}
.box {
background-color: #eee;
padding: 20px;
cursor: pointer;
}
.box:hover .chart,
.box:focus .chart {
/* -webkit-transform: scale(6) translate(7px, -20px);
transform: scale(6) translate(7px, -20px); */
}
.popOverBox {
background: pink;
position: absolute;
left: 20%;
width: 60%;
margin-top: 76px;
display: none;
}
.thumbChartInTable {
cursor: progress;
}
.thumbChartInTable:hover .popOverBox {
border: 1px solid black;
display: block;
}
.bar {
position: relative;
fill: #c79a00;
/* height: 21px; */
transition: fill 0.3s ease;
cursor: pointer;
font-family: Helvetica, sans-serif;
display: inline-block;
}
.chart:hover .bar,
.chart:focus .bar {
fill: #c79a00;
}
.bar:hover,
.bar:focus {
fill: #9a7700 !important;
}
.bar:hover text,
.bar:focus text {
fill: #ff4136;
}