JSFiddle - React, Tailwind, and code Playground

by Exceeder

HTML

<a class="bordered-button" href="#">Delete</a> 


<div style="background:#fff; border:#fff 1em solid; height:12em;">
<a class="bordered-button" href="#">New</a>
<div> </div>
<a class="bordered-button" href="#">View</a>
<div> </div>
<a class="bordered-button" href="#">Edit</a>
<div> </div>
<a class="bordered-button" href="#">Delete</a> 
<div> </div>
</div>

CSS

body {
   margin:2em; font-family:Corbel, sans-serif; 
}
div {height:1em; }
a {text-decoration:none; font-weight:bold; margin-top:5em; }
* {
    box-sizing: border-box; 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}       
a.bordered-button,
span.bordered-button {
background: #91A9B8;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #91A9B8), color-stop(100%, #58697B));
background-image: -webkit-linear-gradient(#91A9B8,#58697B);
background-image: -moz-linear-gradient(#91A9B8,#58697B);
background-image: -o-linear-gradient(#91A9B8,#58697B);
background-image: -ms-linear-gradient(#91A9B8,#58697B);
background-image: linear-gradient(#91A9B8,#58697B);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3),inset 0 1px 0 rgba(255, 255, 255, 0.3);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.3);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3),inset 0 1px 0 rgba(255, 255, 255, 0.3);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
border: 1px solid #3D4853;
color: white;
display: block;
margin: 0 auto;
min-height: 24px;
padding: 3px 0 5px 0;
position: relative;
text-align: center;
text-indent: 0;
width: 118px;
}

a.bordered-button::before, span.bordered-button::before {
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #AAAAAA), color-stop(100%, rgba(180, 180, 180, 0)));
background-image: -webkit-linear-gradient(#AAAAAA,rgba(234, 234, 234, 0));
background-image: -moz-linear-gradient(#AAAAAA,rgba(234, 234, 234, 0));
background-image: -o-linear-gradient(#AAAAAA,rgba(234, 234, 234, 0));
background-image: -ms-linear-gradient(#AAAAAA,rgba(234, 234, 234, 0));
background-image: linear-gradient(#AAAAAA,rgba(234, 234, 234, 0));
bottom: -8px;
left: -8px;
right: -8px;
top: -8px;
z-index: -100;
}

a.bordered-button::after, a.bordered-button::before, span.bordered-button::after,...