修改input的默认样式

538 阅读1分钟

让你的input变好看!

input {
  margin-top: 10px;
  outline: none;
  // border: 0px;
  border: 1px solid @iswhite;
  border-radius: 3px;
  padding: 5px 7px;
  width: 620px;
  font-size: 14px;
  background-color: transparent;
  color: @iswhite;
}
input:focus {
  // background-color: #66afe9;
  outline: 0;
}
/* 通用设置 */
::-webkit-input-placeholder { color: #ccc; }
::-moz-placeholder { color: #ccc; } /* firefox 19+ */
:-ms-input-placeholder { color: #ccc; } /* ie */
input:-moz-placeholder { color: #ccc; }