JSFiddle - React, Tailwind, and code Playground

by Thoriq Firdaus

HTML

<!DOCTYPE html>
<html>
<head>
    <title>Button Alt.</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <ul>
        <li class="red"><a href="#">Download it</a></li>
        <li class="pink"><a href="#">Download it</a></li>
        <li class="blue"><a href="#">Download it</a></li>
        <li class="green"><a href="#">Download it</a></li>
        <li class="yellow"><a href="#">Download it</a></li>
        <li class="grey"><a href="#">Download it</a></li>
    </ul>
</body>
</html>

CSS

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* Styles */
body {
    background: url('furley_bg.png');
}
ul {
    width: 120px;
    margin: 50px auto 0;
}
li a {
    display: inline-block;
    width: 110px;
    height: 30px;
    color: #fff;
    text-align: center;
    font: bold 10pt Arial, sans-serif;
    text-decoration: none;
    border-radius: 2px;
    text-shadow:0px 1px 1px rgba(0,0,0,.5);
    line-height: 30px;
    margin: 5px;
    box-shadow: inset 0px 1px 0px rgba(250,250,250,.3), 0px 1px 1px rgba(0,0,0,.1) ;
}
/* Red Button */
li.red a {
    border: 1px solid #af2e32;
    background: #ed535b;
    background: -moz-linear-gradient(top,  #ed535b 0%, #dd3439 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ed535b), color-stop(100%,#dd3439));
    background: -webkit-linear-gradient(top,  #ed535b 0%,#dd3439 100%); 
    background:...