Mabasej_Team/website/colt.css
JustSteel 9c1f8a973d _
2021-05-10 22:29:01 +02:00

11 lines
188 B
CSS

.circle{
width: 300px;
height: 300px;
background-color: magenta;
transition: background-color 1s 1s;
}
.circle:hover{
background-color: cyan;
border-radius: 50%;
}