Skip to content

Instantly share code, notes, and snippets.

@Oversan
Created April 13, 2016 12:19
Show Gist options
  • Save Oversan/d38117cc70966e9ae6664cc36d408573 to your computer and use it in GitHub Desktop.
Save Oversan/d38117cc70966e9ae6664cc36d408573 to your computer and use it in GitHub Desktop.
checkbox_css
  label {
    width: 20px;
    height: 18px;
    display: inline-block;
    position: relative;
    input[type="checkbox"] + span {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
      background: url(image_path('buttons/checkbox.png')) no-repeat;
    }
    input[type="checkbox"]:checked + span {
      background-position: 0 -20px;
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment