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

28 lines
401 B
CSS

.piePath {
fill: var(--tertiary-background);
}
.labelPath {
fill: var(--primary-background);
fill-opacity: 0;
}
.pieText,
.labelText {
fill: var(--label);
font-size: 40px;
font-weight: 800;
}
.pieText {
display: none;
}
.group:hover > .piePath {
fill: var(--primary-accent);
filter: drop-shadow(0px 0px 6px var(--primary-accent));
}
.group:hover > .pieText {
display: inline
}