JSFiddle - React, Tailwind, and code Playground
by xdumaine
HTML
<div class="logo">
</div>
CSS
.logo {
position: relative;
left: 100px;
height: 30px;
width: 30px;
border: 10px solid #ff4f1f;
border-radius: 50%;
}
.logo:before {
position: absolute;
top: 50px;
left: -78px;
content: " ";
height: 50px;
width: 100px;
border: 10px solid #ff4f1f;
border-radius: 50px;
}
.logo:after {
position: absolute;
top: 130px;
left: -52px;
content: " ";
height: 50px;
width: 75px;
border: 10px solid #ff4f1f;
border-radius: 50px;
}