Add base files from AME

This commit is contained in:
cryptofyre 2021-11-19 17:02:28 -06:00
parent e8f3881513
commit e3c3bded3a
129 changed files with 19056 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/* Modern style overlay scrollbars */
::-webkit-scrollbar {
width: 16px;
height: 24px;
}
::-webkit-scrollbar-button {
display: none;
}
::-webkit-scrollbar-track-piece {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: transparent;
border: 6px solid transparent;
box-shadow: inset 0px 0px 10px 10px rgb(200 200 200 / 50%);
border-radius: 16px;
min-height: 64px;
transition: border 1s;
}
::-webkit-scrollbar-thumb:hover {
border: 5px solid transparent;
box-shadow: inset 0px 0px 10px 10px rgb(200 200 200 / 80%);
}