JSFiddle - React, Tailwind, and code Playground

by learner001

HTML

<a href='#' class='press-btn'>Click me</a>

CSS

.press-btn {
    background-color: #54adea;
    border-radius: 50px;
    box-shadow: 0 0 0 1px #54adea inset, 0 0 0 2px rgba(255,255,255, 0.15) inset, 0 8px 0 0 #3b81b2,0 8px 0 1px rgba(0,0,0, 0.4), 0 8px 8px 1px rgba(0,0,0, 0.5);
    color: #fff;
    display: inline-block;
    font-family: verdana, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    height: 60px;
    line-height: 60px;
    margin: 30px 0 10px;
    position: relative;
    text-align: center;
    text-shadow: 0 -1px 1px rgba(175, 49, 95, .7);
    text-decoration: none !important;
    top: 0;
    width: 200px;
    transition:.20s;
}
.press-btn:hover, .press-btn:focus {
    background-color: #54adea;
    text-shadow: 0 -1px 1px rgba(2, 2, 2, .9), 0 0 5px rgba(255, 255, 255, .8);
    color:#fff;
}
.press-btn:active {
    box-shadow: 0 0 0 1px #444 inset, 0 0 0 2px rgba(255,255,255, 0.15) inset, 0 0 0 1px rgba(0,0,0, 0.4);
    transform:translate(0,8px);
    -ms-transform: translate(0,8px); 
    -webkit-transform: translate(0,8px); 
}