JSFiddle - React, Tailwind, and code Playground

by operatino

HTML

<input type="button" class="fbs" value="Пуш ме">

CSS

/* Style Buttons*/
.fbs {
    padding: 9px;
    text-align: center;
    border: 1px solid #8b9916;
    background: #9c3;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    *zoom: 1;
    -webkit-appearance: button;
    -webkit-border-radius: 0;
    _cursor: pointer;
    }

/* Form Button Styled*/
.fbs:hover, .fbs:focus {
    border-color: #75810c;
    background: #8ab213;
    }

.fbs:active {
    padding: 10px 8px 8px 10px;
    }