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

27 lines
359 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-07-06 19:44:48 -04:00
fill: var(--label);
2022-06-18 22:50:08 -04:00
font-size: 40px;
2022-06-18 20:55:04 -04:00
font-weight: 800;
2022-06-18 22:35:39 -04:00
}
.pieText {
display: none;
2022-06-18 20:46:00 -04:00
}
2022-06-18 22:35:39 -04:00
.group:hover>.piePath {
2022-07-06 19:44:48 -04:00
fill: var(--primary-accent);
filter: drop-shadow(0px 0px 6px var(--primary-accent));
2022-06-18 20:46:00 -04:00
}
2022-06-18 22:35:39 -04:00
.group:hover>.pieText {
2022-06-18 20:46:00 -04:00
display: inline
}