I am trying to achieve a yellow line effect similar to the image shown using CSS. I have managed to create line holes so far, but I'm struggling with creating vertical straight lines. Here is an example of my current code:
https://i.sstatic.net/MqRUE.png
Below is my code snippet:
#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;
}