Input Field Like Bootstrap

http://stackoverflow.com/questions/35953242/only-input-boxes-of-bootstrap

by fido3993

HTML

<input type="text" name="text" class="bootstrap">

CSS

.bootstrap{
  width:250px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ccc;
  outline:none;
  padding: 6px;
}

.bootstrap:focus{
  border:1px solid #56b4ef;
  box-shadow: 0px 0px 3px 1px #c8def0;
}