cs-2022-class-profile/components/StackedBarGraph.module.css

23 lines
330 B
CSS

.container {
position: relative;
}
.barStack {
transition: filter 0.5s ease-out;
}
.barStack:hover {
filter: drop-shadow(0 0 calc(4rem / 16) var(--label));
transition: filter 0.5s ease-out;
}
.legend {
display: flex;
font-size: calc(16rem / 16);
top: 0;
justify-content: center;
}
.key {
font-weight: bold;
}