I want to design a unique navigation for my website without using images, so I thought using shapes would be a cool idea.
Specifically, I am trying to create a crescent moon shape with a border.
My goal is to have a border around the red part of the crescent moon shape, with the rest of the circle surrounding it.
.bottom_line {
position: absolute;
height: 500px;
width: 500px;
border: 10px solid black;
border-radius: 500px;
box-shadow: 100px 100px 0px 0px red inset;
}
.top_line {
position: absolute;
top: 110px;
left: 110px;
height: 500px;
width: 500px;
border: 10px solid black;
border-radius: 500px;
}
<div class="top_line"></div>
<div class="bottom_line"></div>