initial commit
This commit is contained in:
33
styles/scrollbar.css
Normal file
33
styles/scrollbar.css
Normal file
@@ -0,0 +1,33 @@
|
||||
/* 滚动槽 */
|
||||
.flat-scrollbar::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
}
|
||||
.flat-scrollbar::-webkit-scrollbar-track {
|
||||
border-radius: 3px;
|
||||
background: rgba(0, 0, 0, 0.06);
|
||||
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
/* 滚动条滑块 */
|
||||
.flat-scrollbar::-webkit-scrollbar-thumb {
|
||||
border-radius: 3px;
|
||||
background: gray;
|
||||
-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
/* 滚动槽 */
|
||||
.flat-scrollbar-thin::-webkit-scrollbar {
|
||||
width: 3px;
|
||||
height: 3px;
|
||||
}
|
||||
.flat-scrollbar-thin::-webkit-scrollbar-track {
|
||||
border-radius: 3px;
|
||||
background: rgba(0, 0, 0, 0.06);
|
||||
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
/* 滚动条滑块 */
|
||||
.flat-scrollbar-thin::-webkit-scrollbar-thumb {
|
||||
border-radius: 3px;
|
||||
background: gray;
|
||||
-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
Reference in New Issue
Block a user