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

28 lines
368 B
CSS
Raw Normal View History

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