Check box

Radio box

Switch Control

    <label class="input-control checkbox">
        <input type="checkbox">
        <span class="helper">CheckBox Caption</span>
    </label>

    <label class="input-control radio">
        <input type="radio">
        <span class="helper">CheckBox Caption</span>
    </label>

    <label class="input-control switch">
        <input type="checkbox">
        <span class="helper">CheckBox Caption</span>
    </label>

Buttons

    <input type="button" value="Button"/>
    <input type="submit" value="Submit"/>
    <input type="reset"  value="Reset"/>
    <input type="button" disabled value="Button"/>

Text box

    <div class="input-control text">
        <input type="text" />
        <button class="helper"></button>
    </div>

Password box

    <div class="input-control password">
        <input type="password" />
        <button class="helper"></button>
    </div>
    <div class="input-control text">
        <input type="text" />
        <button class="btn-search"></button>
    </div>
    <div class="input-control text">
        <input type="phone" />
        <button class="helper"></button>
    </div>
    <div class="input-control text">
        <input type="email" />
        <button class="helper"></button>
    </div>
    <div class="input-control text">
        <input type="url" />
        <button class="helper"></button>
    </div>

Select

    <div class="input-control select">
        <select>
            <option>...</option>
        </select>
    </div>
    <div class="input-control select">
        <select multiple="">
            <option>...</option>
        </select>
    </div>

Textarea

    <div class="input-control textarea">
        <textarea>
        </textarea>
    </div>

Fieldset

Legend

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.


    <fieldset>
        <legend>...</legend>
        ...
    </fieldset>

Input with spanN class

    <div class="input-control text spanN">
        <input type="text" />
        <button class="helper"></button>
    </div>