JSFiddle - React, Tailwind, and code Playground
by orjan
HTML
<button class="standardbutton add" id="anything"><</button>
<button class="standardbutton delete" id="anything">></button>
CSS
body {
color: #333;
background-color: #000;
font-family:sans-serif;
padding: 20px 10px;
text-align: right;
}
button,
button:visited {
text-shadow: 0 1px 0 #fff;
border: 1px solid;
border-color: #ccc;
border-bottom-color: #aaa;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background-color: #ddd;
background-image: -webkit-linear-gradient(top,#f6f6f6 0,#ccc 100%);
background-image: -ms-linear-gradient(top,#f6f6f6 0,#ccc 100%);
background-image: -o-linear-gradient(top,#f6f6f6 0,#ccc 100%);
background-image: -moz-linear-gradient(top,#f6f6f6 0,#ccc 100%);
background-image: linear-gradient(to bottom,#f6f6f6 0,#ccc 100%);
-webkit-box-shadow: inset 0 0 1px #fff;
-moz-box-shadow: inset 0 0 1px #fff;
box-shadow: inset 0 0 1px #fff;
font-size: 45px;
line-height: 1;
color: #444;
text-transform: uppercase;
font-weight: bold;
text-decoration: none;
margin: 0 10px 0 0;
padding: 25px 27px;
position: relative;
display: inline-block;
text-align: center;
white-space: nowrap;
word-wrap: normal;
vertical-align: middle;
}
button:active {
text-shadow: 0 1px 0 #eee;
background-color: #ddd;
background-image: -webkit-linear-gradient(top,#ccc 0,#d3d3d3 100%);
background-image: -ms-linear-gradient(top,#ccc 0,#d3d3d3 100%);
background-image: -o-linear-gradient(top,#ccc 0,#d3d3d3 100%);
background-image: -moz-linear-gradient(top,#ccc 0,#d3d3d3 100%);
background-image: linear-gradient(to bottom,#ccc 0,#d3d3d3 100%);
color: #333;
border-color: #aaa;
border-bottom-color: #ccc;
border-top-color: #999;
-webkit-box-shadow: inset 0 1px 2px #aaa;
-moz-box-shadow: inset 0 1px 2px #aaa;
box-shadow: inset 0 1px 2px #aaa;
top:1px;
vertical-align: top;
}