delete

by Vladislav Altyncev

HTML

<div id="search">
      <form>
        <input type="search" placeholder="Search" > 
        <input type="submit" value="GO">
      </form>
    </div>

CSS

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
form {
	 /*width: 200px; Ширина поля с кнопкой */
	float: left;
	/*height: 32px;*/
	padding: 20px;
	display: block;
}
input[type="search"] {
	vertical-align: middle; /* Выравнивание по середине */
	float: left;
	font-family: 'Tahoma', regular;
	font-size: 12px;
	padding: 0;
	outline: 0;
	background: #F3F3F3;
	border-color:  #000;
	border-style: solid;
	border-width: 1px 0 1px 1px;
	line-height: 32px;
	position:relative;
	width:158px;
	height: 32px;
}
input[type="submit"] {
	width: 42px; /* Ширина кнопки */
	height: 32px; /* Высота кнопки */
	background: #29C5E6;
	color: #FFF;
    text-decoration: none;
	position: relative;
	float: right;
	font-family: 'Oswald', regular, light;
	font-size: 14px;
	font-weight: normal;
	padding: 0;
    border-color:  #29C5E6;
	border-style: solid;
	border-width: 1px;
	outline: none; /* Убираем свечение в Chrome и Safari */
	-webkit-appearance: none; /* Убираем рамку в Chrome и Safari */
	text-align:center;
}