JSFiddle - React, Tailwind, and code Playground

by kidino

HTML

<div id="product-search-box">
    <h4>Saya mahu beli...</h4>
    <input type="text" id="search-field" placeholder="taipkan nama produk atau model">
</div>

CSS

h4 {
    margin: 0px; 
    font-family: Arial;
    font-size: 36px;
    color:#fff;
    text-shadow: 2px 0px 0px rgba(0,0,0,0.75);
    margin-bottom: 5px;
}
#product-search-box { 
    border-radius: 10px; 
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 550px; padding: 10px;
    padding-top: 5px;
    background-color: #3781bf;
}

#product-search-box input[type=text] { 
    box-shadow: inset 1px 2px 5px rgba(0,0,0,0.3); 
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
    color: #333;
    outline: none;
    font-size: 14px;
    width: 100%;
}