JSFiddle - React, Tailwind, and code Playground

by derekstory

HTML

<div id="search_controls">
    <input type="number" class="search-box" placeholder="Number" />
</div>

CSS

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #424242;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color: #424242;
}
#search_controls input.ui-input-text {
    background: url("../../images/search.jpg") 1% no-repeat !important;
    background-color: #2ECCFA !important;
    outline: 0;
}
.search-box {
    background: #222;
    color: #fff;
}