This is just a WiP to test a new website template. Taken online from source referenced in the sidebar footer. Very nice and clean look, have not had the time to add all features yet and is only used to demonstrate it.
22 lines
399 B
CSS
22 lines
399 B
CSS
/* Custom checkboxes */
|
|
input[type=checkbox] {
|
|
display:none;
|
|
}
|
|
|
|
input[type=checkbox] + label
|
|
{
|
|
background: url('../images/icn_alert_error.png');
|
|
height: 16px;
|
|
width: 16px;
|
|
display:inline-block;
|
|
padding: 0 0 0 0px;
|
|
}
|
|
|
|
input[type=checkbox]:checked + label
|
|
{
|
|
background: url('../images/icn_alert_success.png');
|
|
height: 16px;
|
|
width: 16px;
|
|
display:inline-block;
|
|
padding: 0 0 0 0px;
|