Mabasej_Team/website/colt.css

11 lines
188 B
CSS
Raw Normal View History

2021-05-10 22:29:01 +02:00
.circle{
width: 300px;
height: 300px;
background-color: magenta;
transition: background-color 1s 1s;
}
.circle:hover{
background-color: cyan;
border-radius: 50%;
}