Edit in JSFiddle

<input type="text" value="enabled">
<input type="text" value="disabled" disabled>
input:enabled {
	background-color: blue;
}
input:disabled {
	background-color: gray;
}