--- layout: page title: Forms --- Style individual form controls and utilize common layouts.
Heads up! Forms need some reworking to clean up the specificity and required markup. We'll get to that soon!
## Contents * Will be replaced with the ToC, excluding the "Contents" header {:toc} ## Overview - We reset several elements' default styles for cross browser consistency and easier manipulation later. This includes `
`s, WebKit validation bubbles, and most textual ``s. - Specific types of textual ``s are styled automatically, but `.form-control` is available should you need it. - Always declare a `type` on your ` {% endexample %} ## Form contrast Textual form controls have a white background by default. You can change this to a light gray with `.input-contrast`. {% example html %}
{% endexample %} ## Sizing Make inputs smaller, larger, or full-width with an additional class. ### Mini {% example html %}
{% endexample %} ### Large {% example html %}
{% endexample %} ### Block {% example html %}
{% endexample %} ## Form groups {% example html %}
{% endexample %} ## Notes ## Checkboxes and radios Utilities to spice up the alignment and styling of checkbox and radio controls. {% example html %}

This will do insanely awesome and amazing things!

{% endexample %} You may also add emphasis to the label: {% example html %}
{% endexample %} ## Input group Attached an input and button to one another. {% example html %}
{% endexample %} ## Form actions Align buttons to the right—via `float: right` on the buttons—in forms with `.form-actions`. The floats are automatically cleared for you. {% example html %}
{% endexample %}