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.
SED-Stack/public/css/app.css

15 lines
172 B

svg {
border: 1px solid black;
}
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;
}