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.
|
body {
|
|
padding: 0 2em;
|
|
}
|
|
svg {
|
|
overflow: visible;
|
|
}
|
|
#container {
|
|
overflow: hidden;
|
|
}
|
|
circle {
|
|
r: 5;
|
|
fill:black;
|
|
transition: r linear 0.25s, fill linear 0.25s;
|
|
}
|
|
circle:hover {
|
|
r: 20;
|
|
fill:blue;
|
|
}
|