<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Aspect des checkboxes */
/* :before sert Ã&nbsp; crÃ©er la case Ã&nbsp; cocher */

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

input[type=checkbox] {
    border-radius: 4px;
    height: 30px;
    width: 30px;
    background: #fff;
    border: 1px solid #ccc;
    cursor:pointer;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
  background: #0CBC2B;
  position: relative;  
}

input[type="checkbox"]:checked:before {    
    content: '\1F5F8';
    display: block;
    color: #FFFFFF;
    font-size: 32px;
    position: absolute;
    top:-3px;
  }</pre></body></html>