scrollbars.css
ASCII text
1::-webkit-scrollbar, 2::-webkit-scrollbar-corner { 3width: 17px; 4height: 17px; 5border: 0 solid rgba(255, 255, 255, 0.12); 6background-color: rgba(46, 46, 46, 0.9); 7} 8 9::-webkit-scrollbar:horizontal, 10::-webkit-scrollbar-corner { 11border-top-width: 1px; 12} 13 14::-webkit-scrollbar:vertical, 15::-webkit-scrollbar-corner { 16border-left-width: 1px; 17} 18 19::-webkit-scrollbar { 20background-clip: padding-box; 21} 22 23::-webkit-scrollbar-thumb { 24width: 32px; 25height: 32px; 26border: 4px solid transparent; 27border-radius: 8px; 28background-color: rgba(255, 255, 255, 0.38); 29background-clip: padding-box; 30} 31::-webkit-scrollbar-thumb:horizontal { 32border-top-width: 5px; 33border-top-left-radius: 8px 9px; 34border-top-right-radius: 8px 9px; 35} 36::-webkit-scrollbar-thumb:vertical { 37border-left-width: 5px; 38border-top-left-radius: 9px 8px; 39border-bottom-left-radius: 9px 8px; 40} 41::-webkit-scrollbar-thumb:hover { 42background-color: rgba(255, 255, 255, 0.48); 43} 44::-webkit-scrollbar-thumb:active { 45background-color: rgba(255, 255, 255, 0.6); 46} 47::-webkit-scrollbar-thumb:disabled { 48background-color: rgba(255, 255, 255, 0.26); 49} 50 51::selection { 52background-color: rgba(25, 103, 210, 0.24); 53} 54