2019-06-08 09:21:40 +08:00

33 lines
587 B
CSS

:root {
--theme-blue: #3399FF;
--theme-green: #64CF40;
--theme-orange: #F6A623;
--theme-black: #FFFFFF;
}
:focus {
outline: none;
}
::-webkit-scrollbar {
width: 0.2em;
}
::-webkit-scrollbar:horizontal {
height: 0.5em;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgba(169, 169, 169, 0.4);
}