You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
149 B

svg {
border:1px solid black;
}
circle {
r: 5;
fill:black;
transition: r linear 0.25s, fill linear 0.25s;
}
circle:hover {
r: 20;
fill:blue;
}