/* ==UserStyle==
@name           網頁XY卷軸美化
@namespace      1
@version        1.3
@description    XY卷軸美化
@author         Leadra
@license MIT
@var color      scroll_border               "卷軸框色"                            rgba(7, 5, 255, .5)
@var color      scroll_background    "卷軸背景色"                            rgba(200, 200, 250)
@var color      scroll_move                  "卷軸移入背景色"                            rgb(68, 136, 238,1)
@var range     scroll_radius                "卷軸圓滑度"                           [5, 0, 20, 1, "px"]

@downloadURL none
==/UserStyle== */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0);
}
/*背景*/
  ::-webkit-scrollbar-track {    
      box-shadow: inset 0 0 0 5px rgba(0, 0, 0, 0.3);
}

/*卷軸*/
::-webkit-scrollbar-thumb {
    border: 3px solid scroll_border;//#48e
    background-color: scroll_background !important;
    border-radius: scroll_radius;
}

/*卷軸移入*/
::-webkit-scrollbar-thumb:hover {
    background-color: scroll_move !important;
}

::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
}