I want to make a yellow line like in the image using css, but I don't have an idea how to make it, now I can only make line holes, but not vertical straight lines yet.
here is my code example
#holes {
-webkit-mask: radial-gradient(circle at 120px 100%, transparent 0, transparent 62px, black 62px, black 100%);
mask: radial-gradient(circle at 120px 100%, transparent 0, transparent 62px, black 62px, black 100%);
background-color: #1D3962;
background-image: radial-gradient(circle at 120px 100%, transparent 0, transparent 65px, yellow 65px, yellow 68px, transparent 68px, transparent 100%);
width: 100%;
height: 100vh;
margin: 0;
padding: 0;
}
