JSFiddle - React, Tailwind, and code Playground

by parkji

HTML

<a href="#">Create a new Fiddle</a>

CSS

a {
    background: -webkit-linear-gradient(#79B63C, #5d912a);
    border: 1px solid #000000;
    color: #FFFFFF;
    display: inline-block;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    margin: 20px;
    padding: 12px 12px 12px 30px;
    position: relative;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    line-height: 10px;
}
a:hover {
    background: -webkit-linear-gradient(#5d912a, #79B63C);
}
a:before {
    content: "+";
    background: #3c5222;
    border: 1px solid #000;
    -webkit-border-radius: 3px;
    padding: 0 1px 3px 2px;
    position: absolute;
    left: 10px;
    line-height: 8px;
    top: 11px;
}