<div id="wing"></div>
<div id="body"><i></i><i></i><i></i></div>
<a href="https://www.uiuxtek.in/posts/collection-of-pure-css3-only-illustrations" class="anchor" target="_blank">More on UIUXTEK.in</a>
body {
background: #998235;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
margin-top: 20%;
}
#wing,
#body {
width: 150px;
height: 75px;
position: relative;
}
#wing:after,
#wing:before {
content: "";
background: #fff;
width: 75px;
height: 75px;
position: absolute;
border-radius: 50%;
}
#wing:after {
border-bottom-right-radius: 0;
}
#wing:before {
border-bottom-left-radius: 0;
right: 0;
}
#body {
background: #eff33c;
border-radius: 50px;
overflow: hidden;
}
#body i {
display: inline-block;
width: 25px;
height: 100%;
background: #191919;
margin-right: 10px;
}
#body:after {
content: "";
position: absolute;
background: #191919;
width: 15px;
height: 15px;
border-radius: 50%;
top: 20px;
right: 20px;
}
/* Ignore*/
.anchor {
position: fixed;
top: 0;
right: 0;
font-weight: bold;
padding: 12px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.