Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Balance

  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

  body {
    background:;
    color:;
    font-size:;
    font-family: 'Roboto', Arial, Helvetica, Sans-serif, Verdana;
}

ul {
    list-style-type: none;
}

a {
    color: green;
    text-decoration: none;
}

.pricing-table-title {
    text-transform:;
    font-weight: 200;
    font-size: 12px;
    color: black;
    margin-top: 15px;
    text-align: left;
    margin-bottom: 25px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.pricing-table-title a {
    font-size: 0.6em;
}

.clearfix:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    clear: both;
}
/** ========================
 * Contenedor
 ============================*/
.pricing-wrapper {
    width: 479x;
    margin: 40px auto 0;
}

.pricing-table {
    margin: 0 10px;
    text-align: center;
    width: 150px;
    float: left;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.4);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.pricing-table:hover {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.pricing-title {
    color: #FFF;
    background: #e95846;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.pricing-table.recommended .pricing-title {
    background: #2db3cb;
}

.pricing-table.recommended .pricing-action {
    background: #2db3cb;
}

.pricing-table .price {
    background: #403e3d;
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.pricing-table .price sup {
    font-size: 12px;
    position: relative;
    left: 5px;
}

.table-list {
    background: #FFF;
    color: #403d3a;
}

.table-list li {
    font-size: 12px;
    font-weight: 700;
    padding: 12px 8px;
}

.table-list li:before {
    content: "f00c";
    font-family: 'FontAwesome';
    color: #3fab91;
    display: inline-block;
    position: relative;
    right: 5px;
    font-size: 16px;
} 

.table-list li span {
    font-weight: 400;
}

.table-list li span.unlimited {
    color: #FFF;
    background: #e95846;
    font-size: 0.9em;
    padding: 5px 7px;
    display: inline-block;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    border-radius: 38px;
}


.table-list li:nth-child(2n) {
    background: #F0F0F0;
}

.table-buy {
    background: #FFF;
    padding: 15px;
    text-align: left;
    overflow: hidden;
}

.table-buy p {
    float: left;
    color: #37353a;
    font-weight: 700;
    font-size: 2.4em;
}

.table-buy p sup {
    font-size: 0.5em;
    position: relative;
    left: 5px;
}

.table-buy .pricing-action {
    float: right;
    color: #FFF;
    background: #e95846;
    padding: 10px 16px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 15px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.table-buy .pricing-action:hover {
    background: #cf4f3e;
}

.recommended .table-buy .pricing-action:hover {
    background: #228799;    
}

<!-- Contenedor -->
    <div class="pricing-wrapper clearfix">
        <!-- Titulo -->
        <h1 class="pricing-table-title">Note: Minimum withdrawal for activity earnings is N5000, while referral is N1,000</h1>

        
        
        <div class="pricing-table recommended">
            <h2 class="pricing-title">Earnings</h2>
            <div class="price"><sup>Total /</sup>[mycred_my_balance type="earning"]</div>
            <!-- Lista de Caracteristicas / Propiedades -->
            <ul class="table-list">
                <li>N5,000 <span>Min Withdrawal</span></li>
            </ul>
            <!-- Contratar / Comprar -->
            <div class="table-buy">
                <a href="#" class="pricing-action">Withdraw</a>
            </div>
        </div>

        <div class="pricing-table">
            <h2 class="pricing-title">Referral</h2>
            <div class="price"><sup>Total /</sup>[mycred_my_balance type="referral"]</div>
            <!-- Lista de Caracteristicas / Propiedades -->
            <ul class="table-list">
               <li>N1,000 <span>Min Withdrawal</span></li>
            </ul>
            <!-- Contratar / Comprar -->
            <div class="table-buy">
                <a href="#" class="pricing-action">Withdraw</a>
            </div>
        </div>
    </div>

</br>
</br>