en: style_guide: bootstrap_base: button_disabled_anchor: > Make <a> buttons look unclickable by adding the .disabled class button_disabled_element: > Make <button> buttons look unclickable by adding the .disabled class button_sizes: > Fancy larger or smaller buttons? Add .btn-large, .btn-small, or .btn-mini for additional sizes. button_types: > Need different buttons for different occasions? Add a class! code_inline: > Use <code> for inline snippets of code. code_blocks: > Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering. forms_default_styles: > Individual form controls receive styling, but without any required base class on the <form> or large changes in markup. Results in stacked, left-aligned labels on top of form controls. forms_search: > Add .form-search to the form and .search-query to the <input> for an extra-rounded text input. forms_inline: > Add .form-inline for left-aligned labels and inline-block controls for a compact layout. forms_horizontal: > Right align labels and float them to the left to make them appear on the same line as controls. Requires the most markup changes from a default form: form_controls_input: > Most common form control, text-based input fields. Includes support for all HTML5 types: text, password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and color. Requires the use of a specified type at all times. form_controls_textarea: > Form control which supports multiple lines of text. Change rows attribute as necessary. form_controls_checkbox_and_radio: > Checkboxes are for selecting one or several options in a list while radios are for selecting one option from many. Add the .inline class to a series of checkboxes or radios for controls to appear on the same line. form_controls_select: > Use the default option or specify a multiple="multiple" to show multiple options at once.