display: none;
で消し、チェックボックス用のlabelにアイコンフォントを指定して、チェックボックスのオンオフでアイコンを切り替えています。
<li> <input type="checkbox" name="one" id="one" /> <label for="one">Create checkbox</label> </li>
label:before { content: '\f096'; /*unchecked*/ } label:after { content: '\f046'; /*checked*/ max-width: 0; overflow: hidden; opacity: 0.5; transition: all 0.35s; }