JSFiddle - React, Tailwind, and code Playground

by Luis Manuel

HTML

<div class="counters2">
    <div class="one_fourth"> Item 1 <h4> 99$ </h4> </div>
    <div class="one_fourth last"> Item 2 <h4> 139$ </h4> </div>
</div>

CSS

.counters2 h4 {
    font-size: 18px;
    color: #999;
    font-weight: 400;
    margin: 20px 0px 0px 0px;
}
.counters2 .one_fourth {
    background-color: #f3f3f3;
    padding: 30px 0px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    color: #393939;
    font-weight: bold;
}

.counters2 h4.active, .counters2 h4:hover {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    margin: 20px 0px 0px 0px;
}
.counters2 .one_fourth.active, .counters2 .one_fourth:hover {
    background-color: #9eca45;
    padding: 30px 0px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    color: #fff;
    font-weight: bold;
}

.counters2 .one_fourth:hover h4 {
    color: #fff;
}