26 lines
349 B
SCSS
26 lines
349 B
SCSS
|
html {
|
||
|
text-align: center;
|
||
|
margin: 0;
|
||
|
height: 100vh;
|
||
|
width: 100vw;
|
||
|
background-color: navajowhite;
|
||
|
}
|
||
|
|
||
|
#tooltip{
|
||
|
opacity: 0;
|
||
|
height: 50px;
|
||
|
width: 250px;
|
||
|
border-radius: 5px;
|
||
|
padding: 10px;
|
||
|
z-index: 10;
|
||
|
position: absolute;
|
||
|
background-color: greenyellow;
|
||
|
}
|
||
|
|
||
|
#chart {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#legend svg{
|
||
|
border-radius: 5px;
|
||
|
}
|