mirror of
https://github.com/jimeh/jimeh.me-v3.0.git
synced 2026-02-19 05:46:40 +00:00
51 lines
866 B
CSS
51 lines
866 B
CSS
html {
|
|
overflow-y: auto;
|
|
background-color: transparent;
|
|
}
|
|
|
|
body {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 10px;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* @group ::-webkit-scrollbar */
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-button:start:decrement,
|
|
::-webkit-scrollbar-button:end:increment {
|
|
height: 10px;
|
|
display: block;
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-button:vertical:increment {
|
|
background-color: #fff;
|
|
}
|
|
|
|
::-webkit-scrollbar-track-piece {
|
|
background-color: #eee;
|
|
-webkit-border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:vertical {
|
|
height: 50px;
|
|
background-color: #ccc;
|
|
-webkit-border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:horizontal {
|
|
width: 50px;
|
|
background-color: #ccc;
|
|
-webkit-border-radius: 3px;
|
|
}
|
|
|
|
/* @end */ |