Files
jimeh.me-v3.0/source/site/stylesheets/webkit-scrollbar.css
Jim Myhrberg f94d902589 webkit-scrollbar for blog only, and removed it for
MobileSafari as you can't scroll the page properly
with it enabled.
2010-04-06 01:07:14 +03:00

51 lines
848 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 */