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; } :-ms-input-placeholder { color: #ccc; } input:-moz-placeholder { color: #ccc; }
|