
   /*
     gamecube unreleased demo disc web browser scrollbar remake by TheWiiArchivist.
    credit to https://stackoverflow.com/a/52361343 for the arrow buttons tutorial
     */

        ::-webkit-scrollbar {
      width: 25px; 
    }
    
    ::-webkit-scrollbar-track {
      background-color:#838582;
    }
    
    ::-webkit-scrollbar-thumb {
     background-color:#6b6b6b;
      background-size:cover;
    }
     ::-webkit-scrollbar-thumb:active {
     background-color:#585858;
      background-size:cover;
    }
    
    
  /* Buttons */
    ::-webkit-scrollbar-button:single-button {
    background-image: url("/img/arrow/arrowup.jpg");
    border:0px;
    border:none;
    display:block;
     height:28px;
    width:25px;
    }
    

    ::-webkit-scrollbar-button:single-button:active {
    background-image: url("/img/arrow/arrowupactive.png");
    border:0px;
    border:none;
    display:block;
     height:28px;
    width:25px;
      }

    
    /* Down */
    ::-webkit-scrollbar-button:single-button:vertical:increment {
    background-image: url("/img/arrow/arrowdown.png");
    border:0px;
    border:none;
    display:block;

    height:28px;
    width:25px;
    }
    
    /* Down */
    ::-webkit-scrollbar-button:single-button:vertical:increment:active {
    background-image: url("/img/arrow/arrowdownactive.png");
      }


