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

28 lines
368 B
CSS

.piePath {
fill: #354265;
}
.labelPath {
fill: var(--primary-background);
}
.pieText,
.labelText {
fill: white;
font-size: 20px;
font-weight: 800;
font-family: "Inconsolata", "sans-serif";
}
.pieText {
display: none;
}
.group:hover>.piePath {
fill: #EF839D;
filter: drop-shadow(0px 0px 6px #CC5773);
}
.group:hover>.pieText {
display: inline
}