Question:
I want to put four divs in a circle with slight margin in between them
I want it to look something like this but without the words in the middle
Repl link:
https://replit.com/@JohnnySuriano/Simon-Says#simon.css
.yellow {
width: 100px;
height: 100px;
background-color: yellow;
border-radius: 50% 0 0 0;
display: inline-block;
margin: 50px;
transition: transform 0.5s ease-in-out;
}
.blue {
width: 100px;
height: 100px;
background-color: blue;
border-radius: 0 50% 0 0;
display: inline-block;
margin: 50px;
transition: transform 0.5s ease-in-out;
}
.red {
width: 100px;
height: 100px;
background-color: red;
border-radius: 0 0 0 50%;
display: inline-block;
margin: 50px;
transition: transform 0.5s ease-in-out;
}
.green {
width: 100px;
height: 100px;
background-color: green;
border-radius: 0 0 50% 0;
display: inline-block;
margin: 50px;
transition: transform 0.5s ease-in-out;
}