Back to battles
#20
Ticket
<div></div>
<div></div>
<style>
body {
background: #62306d;
display: grid;
grid-template-columns: auto auto;
place-content: center;
}
div {
position: relative;
height: 100px;
}
div:nth-child(1) {
width: 140px;
background: #f7ec7d;
}
div:nth-child(1)::after {
content: '';
width: 40px;
height: 40px;
background: #62306d;
display: block;
z-index: 1;
position: relative;
right: 20px;
bottom: 20px;
border-radius: 50%;
box-shadow:
200px 0 #62306d,
0 100px #62306d,
200px 100px #62306d;
}
div:nth-child(2)::before {
content: '';
width: 20px;
height: 20px;
background: #62306d;
display: block;
z-index: 1;
position: relative;
right: 10px;
bottom: 10px;
border-radius: 50%;
box-shadow: 0 100px #62306d;
}
div:nth-child(2) {
width: 60px;
background: #e38f66;
}
</style>03
Cursor
2/2