mirror of
https://github.com/certd/certd.git
synced 2026-04-15 05:00:52 +08:00
29 lines
560 B
Plaintext
29 lines
560 B
Plaintext
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
width: 8px;
|
|
background: rgba(#101F1C, 0.1);
|
|
-webkit-border-radius: 2em;
|
|
-moz-border-radius: 2em;
|
|
border-radius: 2em;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
// background-color: rgba(#101F1C, 0.5);
|
|
background-clip: padding-box;
|
|
min-height: 28px;
|
|
-webkit-border-radius: 2em;
|
|
-moz-border-radius: 2em;
|
|
border-radius: 2em;
|
|
background-color: #b3b3b3;
|
|
box-shadow: 0px 1px 1px #eee inset;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
//background-color: rgba(#101F1C, 1);
|
|
}
|