JSFiddle - React, Tailwind, and code Playground

by Łukasz Bącik

HTML

<div id="fejsbuk"></div>

CSS

#fejsbuk { 
    background-color: #3b5998; 
    text-indent: -999em; 
    width: 100px; 
    height: 110px; 
    border-radius: 5px; 
    position: relative; 
    overflow: hidden; 
    border: 15px solid #3b5998; 
    border-bottom: 0; 
}
#fejsbuk::after { 
    content: "/20"; 
    position: absolute; 
    width: 55px; 
    top: 50px; 
    height: 20px; 
    background-color: #ffffff;
    right: 5px; 
}
#fejsbuk::before { 
    content: "/20"; 
    position: absolute; 
    background-color: #3b5998; 
    width: 40px; 
    height: 90px; 
    bottom: -30px; 
    right: -37px; 
    border: 20px solid #ffffff; 
    border-radius: 25px; 
}