JSFiddle - React, Tailwind, and code Playground

HTML

<a class="button" role="button">Типа кнопка</a>

CSS

.button {
    background-image: -webkit-linear-gradient(top, #eee 0%, #dcdcdc 50%, #bbb 74%, #b0b0b0 82%, #d5d5d5 100%);
    border: 1px solid rgba(0,0,0, .12);
    border-radius: 3px;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255, .2),
        0 5px 12px -4px rgba(0,0,0, .85), 
        0 3px 10px rgba(0,0,0,.05);
    cursor: default;
    display: inline-block;
    font-family: arial, sans-serif;
    font-size: 14px;
    padding: 8px 15px 7px;
    position: relative;
    text-shadow: 0 1px 0 rgba(255,255,255, .35);
    -webkit-user-select: none;
    }

.button:active {
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255, .2),
        0 1px 0 0 rgba(0,0,0, .35),
        0 0 1px rgba(0,0,0, .1);
    top: 1px;
    }