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.

16 lines
170 B

body {
padding: 0 2em;
}
svg {
overflow: visible;
}
circle {
r: 5;
fill:black;
transition: r linear 0.25s, fill linear 0.25s;
}
circle:hover {
r: 20;
fill:blue;
}