Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/09/2015, 18:56
Avatar de AngelKrak
AngelKrak
 
Fecha de Ingreso: noviembre-2014
Mensajes: 917
Antigüedad: 9 años, 5 meses
Puntos: 91
Respuesta: Formato a un barra overflow

ahi te dejare 2 Scrollbar Custom para que uses la que quieras ;)

By AngelKrak:
Código CSS:
Ver original
  1. ::-webkit-scrollbar{
  2.   width:10px;
  3.   height:10px;
  4.   background-color:#eee;
  5. }
  6. ::-webkit-scrollbar-thumb{
  7.   background-color:#2BA4D6;
  8.   border-radius: 10px;
  9.   -webkit-box-shadow: inset 0 0 8px rgba(0,0,0,0.);
  10. }

Demo:
http://codepen.io/AngelKrak/pen/xFDwi


By KaoruMishimaru:
Código CSS:
Ver original
  1. ::-webkit-scrollbar-track
  2. {
  3.     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  4.     background-color: #000;
  5. }
  6.  
  7. ::-webkit-scrollbar
  8. {
  9.     width: 5px;
  10.     background-color: #000;
  11. }
  12.  
  13. ::-webkit-scrollbar-thumb
  14. {
  15.     background: rgba(255, 255, 255, .5);
  16.     border-radius: 5px;
  17. }

Demo:
http://codepen.io/KaoruMishimaru/pen/QjbGoK