修改input的默认样式

让你的input变好看!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }