dataviz-explorer / style.css
Zaman111111's picture
Row Labels Female Male Grand Total
e403481 verified
Raw
History Blame Contribute Delete
450 Bytes
/* Custom styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.container {
flex: 1;
}
.chart-container {
position: relative;
height: 100%;
width: 100%;
}
/* Smooth animations */
.transition-all {
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}