Forms
Simple styles for labels, inputs and text areas. Combine them with .form-group.
Live demo
Code
<div class="form-group">
<label class="form-label" for="name">Name</label>
<input class="form-control" id="name" type="text">
</div>
<div class="form-group">
<label class="form-label" for="msg">Message</label>
<textarea class="form-control" id="msg" rows="3"></textarea>
</div>
Tip: focused inputs get a blue ring; disabled and readonly fields turn grey.