JSFiddle - React, Tailwind, and code Playground

by halirgb

HTML

<div class="blue-btn">some text here</div>

CSS

.blue-btn {
    background: #00ccff;
    background: -moz-linear-gradient(top, #00ccff 0%, #009afe 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00ccff), color-stop(100%, #009afe));
    background: -webkit-linear-gradient(top, #00ccff 0%, #009afe 100%);
    background: -o-linear-gradient(top, #00ccff 0%, #009afe 100%);
    background: -ms-linear-gradient(top, #00ccff 0%, #009afe 100%);
    background: linear-gradient(to bottom, #00ccff 0%, #009afe 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ccff', endColorstr='#009afe', GradientType=0);
    display:inline-block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding:10px 20px;
    color:#fff;
    font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
    text-shadow: -1px -1px 0px rgba(0, 163, 255, 1);
}