JSFiddle - React, Tailwind, and code Playground

by moopet

HTML

<a href="#">download</a>

CSS

body {
    background: #870315;
    padding: 50%;
}

a {
    text-decoration: none;
    text-transform: uppercase;
    color: #f0e8e8;
    border-radius: 1em;
    height: 2em;
    line-height: 2em;
    border-top: 2px solid #ecc;
    border-bottom: 2px solid #a88;
    border-left: 2px solid #caa;
    border-right: 2px solid #caa;
    padding: 0 1em;
    width: 8em;
    font-weight: bold;
    font-family: sans-serif;
    font-size: small;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    text-align: center;
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E0041A), color-stop(100%,#B70315));
    box-shadow: 0 0 1em 1px rgba(0,0,0,0.4), 0 0 10px 1px rgba(0,0,0,0.8), 0 0 1px 1px rgba(255,255,255,0.5), 0.2em 0.2em 0.5em 0.1em rgba(255,255,255,0.3) inset, 0.2em 0.8em 0.1em -0.2em rgba(255, 255, 255, 0.2) inset;
}