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/3-heat-map/index.scss

22 lines
295 B
SCSS
Raw Normal View History

2022-10-31 14:31:56 +00:00
html {
text-align: center;
margin: 0;
height: 100vh;
width: 100vw;
background-color: navajowhite;
}
#tooltip{
display: none;
height: 100px;
width: 100px;
opacity: 0.8;
border-radius: 5px;
padding: 10px;
position: fixed;
z-index: 10;
}
#chart {
text-align: center;
}