arlo atomickk's profile picture

Published by

published

Privacy: Link-only
Category: Web, HTML, Tech

Old web scrollbars

<style>

::-webkit-scrollbar {

    width: 13px;

}


::-webkit-scrollbar-track {

    border-top: 3px ridge white;

    border-left: 3px ridge white;

    border-bottom: 3px ridge gray;

    border-right: 3px ridge gray;

    background: white radial-gradient(circle at 0px 0px, gray 1px, transparent 0);

    background-size: 2px 2px;

}


::-webkit-scrollbar-thumb {

    background: silver;

    border-top: 3px ridge white;

    border-left: 3px ridge white;

    border-bottom: 3px ridge gray;

    border-right: 3px ridge gray;

}

</style>

result:

 


Comments

Displaying 0 of 0 comments ( View all | Add Comment )