All info on the picture. My code for a second solution:
<div class="content">
<div class="circle">
</div>
</div>
.content {
width: 300px;
padding: 50px;
background: #3f63d3;
}
.circle {
width: 200px;
height: 200px;
border-radius: 50%;
border: 10px solid #fff;
border-top-color: transparent;
transform: rotate(45deg);
}
Here is a JSFiddle example. Any ideas?
Image Example:
P.S.: Red circles on image - is not a part of issue, it's just a sample what I'm talking about :)