scrollhunt

How to make your own Scrollbar

Step One:
Copy the code below and change the colours, thickness, etc

::-webkit-scrollbar {
width: 10px;
}

::-webkit-scrollbar-track {
background-color: #fbf6f0;
border-radius: 5px;
}


::-webkit-scrollbar-thumb {
background: #ec5858;
}


::-webkit-scrollbar-thumb:hover {
background: #f05454;
cursor: pointer;
}

Learn More here

Step Two
Upload your code here!