I want a custome scrollbar for my website, I found this for chrome, but not for firefox. I dont want to use heavy jQuery plugins, Is that possible to do this with css only? CSS I found for Chrome:
::-webkit-scrollbar {
        width: 12px;
    }
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
    }
 
     
     
     
    