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.
|
svg {
|
|
margin:40px;
|
|
overflow:visible;
|
|
}
|
|
|
|
svg circle {
|
|
r:5;
|
|
transition: r 0.5s ease-in-out, fill 0.5s linear;
|
|
transform-origin: 50% 50%;
|
|
}
|
|
|
|
circle:hover {
|
|
fill:blue;
|
|
r:15;
|
|
}
|