Style Input Placeholders
If you want to style input placeholders, you can use this css snippet:
/* webkit */
::-webkit-input-placeholder { color:#BBB; font-weight: 300; }
/* firefox */
::-moz-placeholder { color:#BBB; font-weight: 300; }
input:-moz-placeholder { color:#BBB; font-weight: 300; }
/* ie */
:-ms-input-placeholder { color:#BBB; font-weight: 300; }