I am looking to create a unique design with a half arch surrounding a full circle, similar to the image below. Can anyone provide guidance on how to achieve this effect using CSS? I have successfully created the circle using the code below, but I am uncertain on how to proceed with the arch.
https://i.sstatic.net/5cteC.png
.circle {
width: 45px;
height: 45px;
border-radius: 50%;
font-size: 20px;
color: #fff;
line-height: 45px;
text-align: center;
position: relative;
background: #BDBDBD;
}
<div class="circle">1</div>