JSFiddle - React, Tailwind, and code Playground

by anothernick

HTML

<div id="helpText">HOW CAN WE HELP YOU?</div>

CSS

#helpText{
		height: 35px;
		margin: 4px 0;
		width: 90%;
		font-size: 15px;
		padding: 8px;
		color: #FFF;
		box-sizing: border-box;
		resize: none;
		background-image: -ms-linear-gradient(top, #908D88 0%, #404140 100%);
		background-image: -moz-linear-gradient(top, #908D88 0%, #404140 100%);
		background-image: -o-linear-gradient(top, #908D88 0%, #404140 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #908D88), color-stop(1, #404140));
		background-image: -webkit-linear-gradient(top, #908D88 0%, #404140 100%);
		background-image: linear-gradient(to bottom, #908D88 0%, #404140 100%);
		border-radius: 1px;
		box-shadow: 1px 1px 2px #000;
	}