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

27 lines
359 B
CSS

.piePath {
fill: #354265;
}
.labelPath {
fill: var(--primary-background);
}
.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
}