You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
382 B
CSS
32 lines
382 B
CSS
.rel {
|
|
position: relative
|
|
}
|
|
|
|
#plot {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
left: 10px;
|
|
}
|
|
|
|
.bar {
|
|
pointer-events: auto;
|
|
fill: #AFAFB9;
|
|
}
|
|
|
|
.bar.selected {
|
|
fill: green;
|
|
}
|
|
|
|
.tip {
|
|
position: absolute;
|
|
background: black;
|
|
color: white;
|
|
padding: 6px;
|
|
font-size: 12px;
|
|
border-radius: 4px;
|
|
margin-bottom: 10px;
|
|
display: none;
|
|
opacity: 0;
|
|
}
|