Created
August 29, 2016 11:34
-
-
Save aavrug/63283d7b6416281755b592b660b782a7 to your computer and use it in GitHub Desktop.
Scrollbar styling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Markup | |
<div class="scrollbar" id="style-1"> | |
<div class="force-overflow"></div> | |
</div> | |
//CSS | |
#style-1::-webkit-scrollbar-track | |
{ | |
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); | |
border-radius: 10px; | |
background-color: #F5F5F5; | |
} | |
#style-1::-webkit-scrollbar | |
{ | |
width: 12px; | |
background-color: #F5F5F5; | |
} | |
#style-1::-webkit-scrollbar-thumb | |
{ | |
border-radius: 10px; | |
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); | |
background-color: #555; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment