JSFiddle - React, Tailwind, and code Playground

by Max Sinev

HTML

<div class="emptycard">
    <div class="emptycard_text">StretchPay</div>
</div>

CSS

.emptycard
{
    width: 222px;
    border-radius: 14px;
    height: 81px;
    font-size: 11px;
    box-shadow: 0px 1px 0 #FFF, inset 0 1px 5px rgba(0,0,0,0.03);
    margin-right: 19px;
    margin-bottom: 15px;
    border: 1px solid #E9E9E9;
    background: #F2F2F2;
    display: inline-block;
    position: relative;
}

.emptycard_text
{
    text-align: center;
    position: absolute;
    width: 100%;
    top: 31px;
    font: 18px 'europedemicdemic';
    color: #E2E2E2;
    text-shadow: 0 1px 0 #FFF;
}