Struggling with creating a HUD for my server, I've hit a roadblock. CSS isn't my forte but I have some knowledge about it.
I'm aiming to design a circular element like this Check it out here
.circle {
position: relative;
border-radius: 50%;
width: 40px;
height: 40px;
box-sizing: border-box;
border-width: 22px;
border-style: solid;
border-color: #4a4a4c #4a4a4c00 #4a4a4c #4a4a4c;
transform: rotate(25deg);
}
.wide {
width: 200px;
height: 200px;
}
<div class="circle wide"></div>
I tried implementing the code above but couldn't quite nail it.