JSFiddle - React, Tailwind, and code Playground

HTML

<div class="corners">
    <input type="submit" value="Search" class="button1" />
</div>

CSS

body {
    background:#cc0000;
}
.corners {
    border:1px solid #000;
    border-radius:5px;
    margin:2px;
    overflow:hidden;
    float:left;
}
.button1 {
    height:26px;
    cursor:pointer;
    padding:0 10px;
    font:12px verdana, arial, helvetica, sans-serif;
    font-weight:bold;
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(254, 255, 232, 1) 0%, rgba(214, 219, 191, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(254, 255, 232, 1)), color-stop(100%, rgba(214, 219, 191, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(254, 255, 232, 1) 0%, rgba(214, 219, 191, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(254, 255, 232, 1) 0%, rgba(214, 219, 191, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(254, 255, 232, 1) 0%, rgba(214, 219, 191, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(254, 255, 232, 1) 0%, rgba(214, 219, 191, 1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feffe8', endColorstr='#d6dbbf', GradientType=0);
    /* IE6-9 */
}