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

14 lines
185 B

svg {
border: 1px solid black;
}
svg circle {
transition: transform 1s ease-in-out, fill 1s linear;
transform-origin: 50% 50%;
}
circle:hover {
fill:blue;
transform: scale(2);
}