Files

41 lines
657 B
CSS

html {
box-sizing: border-box;
}
body {
margin: 0;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
*:focus,
*:active {
outline: none !important;
box-shadow:none ;
}
a,
a:focus,
a:hover {
cursor: pointer;
color: inherit;
text-decoration: none;
}
.heat-map-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 5px auto;
}