تغییر سایز CheckBox

برای اینکار باید به صورت زیر استایل بدیم:

<style>
    input[type=checkbox] {
        /* Double-sized Checkboxes */
        -ms-transform: scale(2); /* IE */
        -moz-transform: scale(2); /* FF */
        -webkit-transform: scale(2); /* Safari and Chrome */
        -o-transform: scale(2); /* Opera */
        padding: 10px;
    }
    /* Might want to wrap a span around your checkbox text */
    .checkboxtext {
        /* Checkbox text */
        font-size: 110%;
        display: inline;
    }
</style>

بعدشم میای کلاس رو میدی به اون چک باکست:

 <label style="margin-right: 20px;    margin-top: 10px" title="وضعیت نمایش" class="toggle checkboxtext">
                                <input  name="checkbox-toggle-1" type="checkbox">
                            </label>

خلاص برین حالشو ببرین.