CSS3 Sticker

https://dribbble.com/shots/1631007-Muzak-Dashboard-Music-App/attachments/254361

by Jens Kühn

HTML

<div class="sticker">
    <p>01</p>
</div>
<div class="sticker">
    <p>02</p>
</div>

CSS

*, *:before, *:after{ 
    box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
}

.sticker{
    position: relative; 
    background: #fff;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.sticker p{
    position: absolute; 
    top:-16px;
    left:0;
    height: 50px; 
    width: 50px; 
    background-color: #ED6C44; 
    border-radius: 50px;
    padding: 15px;
    overflow: hidden;
    
    color: #fff;
    font-style: italic;
    font-weight; bold;
    text-align:center;
}

.sticker p:before,
.sticker:after{
    position: absolute;
    content: "";
    display: block;
    height: 50px;
    width: 50px;    
    border: 1px solid #F29578;
    background: #F29578;
    top: -33px;
    right: -20px;
}
.sticker p:before{
    border-radius: 0 0 50px 50px;
    
}
.sticker:after{
    border-color: #ED6C44;
    top: -36px;
    right: -25px;
    background: #fff; 
    -webkit-transform: rotate(33deg); 
    transform: rotate(33deg);
}