cssبرای textbox

cssبرای textbox

برنامه نویسی • 1392/12/14 @shahramm
cssبرای textbox


inputs:-webkit-input-placeholder {
color: #b5b5b5;
}

inputs-moz-placeholder {
color: #b5b5b5;
}

.inputs {
background: #fff;
font-size: 0.8rem;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: none;
padding: 10px 7px;
width:250px;
margin-bottom: 13px;
box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.1 );
clear: both;
text-align:left;
}
.inputs:focus {
background: #fff;
box-shadow: 0px 0px 0px 3px #fff38e, inset 0px 2px 3px rgba( 0,0,0,0.2 ), 0px 5px 5px rgba( 0,0,0,0.15 );
outline: none;
}