Back to battles
#52
Break the Chain
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<style>
body {
background: #6592cf;
display: flex;
justify-content: center;
align-items: center;
gap: 35px;
margin: 0;
}
div {
width: 10px;
height: 50px;
background: #243d83;
margin-top: 30px;
position: relative;
}
div::after {
content: '';
width: 20px;
height: 20px;
background: #243d83;
display: block;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
}
div:nth-child(3) {
margin-right: 30px;
}
div:nth-child(1)::after,
div:nth-child(3)::after {
box-shadow: 0 0 0 10px #eeb850;
z-index: -1;
}
div:nth-child(2)::before {
content: '';
width: 60px;
height: 60px;
background: #eeb850;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -66%);
border-radius: 50%;
z-index: -1;
}
</style>10
Block
6/6