Skip to content

Instantly share code, notes, and snippets.

View vinoddalvi's full-sized avatar

Vinod Dalvi vinoddalvi

View GitHub Profile
@vinoddalvi
vinoddalvi / dabblet.css
Created June 9, 2014 13:40 — forked from chriscoyier/dabblet.css
Checkbox Hack
/* Checkbox Hack */
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
}
label {
-webkit-appearance: push-button;
-moz-appearance: button;
@vinoddalvi
vinoddalvi / dabblet.css
Created June 12, 2014 08:07
Default State
a.click-button {
-webkit-appearance: push-button;
-moz-appearance: button;
margin: 0 2px;
padding: 0 5px;
cursor: pointer;
text-decoration: none;
}
/* Default State */