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

20 lines
351 B
CSS
Raw Normal View History

2022-08-10 21:00:29 -04:00
.lineText {
visibility: hidden;
font-family: "Inconsolata", monospace;
font-weight: 800;
fill: var(--label);
}
2022-08-17 18:38:39 -04:00
.lineSeries {
/* fill: var(--label); */
2022-08-10 21:00:29 -04:00
}
2022-08-17 18:38:39 -04:00
.lineSeries:hover {
filter: drop-shadow(0 0 calc(4rem / 16) var(--primary-accent));
2022-08-10 21:00:29 -04:00
}
.axisLabel {
font-family: "Inconsolata", monospace;
font-weight: 800;
fill: var(--label);
2022-08-17 12:28:40 -04:00
}