JSFiddle - React, Tailwind, and code Playground

by kougiland

HTML

<div></div>

CSS

div {
    width: 150px;
    height:150px;
    display: block;
    border-radius: 50%;
    background-color: #EC5F51;
    border: 2px solid #EC5F51;
    margin: 50px auto;
    position:relative;
    background-image:
        linear-gradient(180deg, transparent 50%, #ccc 50%),
        linear-gradient(90deg, #ccc 50%, transparent 50%);
}
div:before{
    content: "";
    position: absolute;
    width: 114px;
    height: 114px;
    background: white;
    z-index: 1;
    border-radius: 50%;
    left: 18px;
    top: 18px;
}