Advertisement
oohcamila

Customize your scrollbar

Apr 19th, 2013
5,543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ::-webkit-scrollbar-thumb:vertical {
  2. background-color:#323232; /*scrollbar's slider color*/
  3. background-image:url('URL HERE'); /*optional background image*/
  4. height:100px;
  5. -moz-border-radius: 5px; /*these make bar rounded*/
  6. border-radius: 5px;
  7. border: 1px solid #cecece; /*border's color*/
  8. }
  9.  
  10. ::-webkit-scrollbar-thumb:horizontal {
  11. background-color:#323232; /*scrollbar's slider color*/
  12. height:100px !important;
  13. }
  14.  
  15. ::-webkit-scrollbar {
  16. background-color:#969696; /*scrollbar's main color*/
  17. background-image:url('URL HERE'); /*optional background image*/
  18. height:10px;
  19. width:10px; /*width of slider*/
  20. border: 1px solid #cecece; /*border's color*/
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement