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

19 lines
460 B
CSS
Raw Normal View History

2022-07-21 00:25:48 -04:00
.word:hover {
2022-07-21 00:33:12 -04:00
text-shadow: var(--primary-accent) 0 0 calc(20rem / 16);
2022-07-21 00:25:48 -04:00
text-anchor: "middle";
}
#tooltip {
2022-07-21 00:33:12 -04:00
font-family: "Inconsolata", monospace;
2022-07-21 00:25:48 -04:00
font-weight: bold;
2022-07-21 00:33:12 -04:00
top: 0;
left: 0;
2022-07-21 00:25:48 -04:00
position: absolute;
background-color: white;
color: var(--navy);
2022-07-21 00:33:12 -04:00
box-shadow: var(--card-background) 0px calc(1rem / 16) calc(2rem / 16);
2022-07-21 00:25:48 -04:00
pointer-events: none;
2022-07-21 00:33:12 -04:00
padding: calc(10rem / 16);
font-size: calc(18rem / 16);
border-radius: calc(10rem / 16);
2022-07-21 00:25:48 -04:00
}