This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/4-data-visualization/5-treemap/index.css

29 lines
391 B
CSS
Raw Normal View History

2022-11-05 21:27:36 +00:00
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;
}
/*# sourceMappingURL=index.css.map */