JSFiddle - React, Tailwind, and code Playground
by genelocklin
HTML
<div class="container">
<a href="http://www.twitter.com/saintlylunar" class="button">Follow me on Twitter</a>
<a href="http://www.forrst.com/people/sunnyratilal" class="button">Find me on Forrst</a>
</div>
CSS
body {
background: #c4c9cd;
}
.container {
margin: 20px;
}
.button {
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #3e3e3e;
-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(255, 255, 255, 0.6);
-moz-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(255, 255, 255, 0.6);
-o-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(255, 255, 255, 0.6);
box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(255, 255, 255, 0.6);
text-shadow: 0 1px 0 #fff;
text-decoration: none;
font-size: 12px;
line-height: 18px;
padding: 4px 7px;
display: inline-block;
border: 1px solid #757575;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radiues: 3px;
background-color: #f5f5f5;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#dedede));
background-image: -webkit-linear-gradient(top, #f5f5f5, #dedede);
background-image: -moz-linear-gradient(top, #f5f5f5, #dedede);
background-image: -ms-linear-gradient(top, #f5f5f5, #dedede);
background-image: -o-linear-gradient(top, #f5f5f5, #dedede);
background-image: linear-gradient(top, #f5f5f5, #dedede);
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
.button:hover {
background-color: #f5f5f5;
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#d5d5d5));
background-image: -webkit-linear-gradient(top, #f5f5f5, #d5d5d5);
background-image: -moz-linear-gradient(top, #f5f5f5, #d5d5d5);
background-image: -ms-linear-gradient(top, #f5f5f5, #d5d5d5);
background-image: -o-linear-gradient(top, #f5f5f5, #d5d5d5);
background-image: linear-gradient(top, #f5f5f5, #d5d5d5);
box-shadow: inset 0 1px 0 #fff, 0 0 8px rgba(0, 0, 0, 0.15);
}
.button:active {
background-image: -webkit-gradient(linear,...