Last active
May 16, 2025 20:21
-
-
Save spemer/a0e218bbb45433bd611e68446523a00b to your computer and use it in GitHub Desktop.
Revisions
-
spemer revised this gist
Jul 22, 2021 . No changes.There are no files selected for viewing
-
spemer revised this gist
Aug 25, 2020 . 1 changed file with 9 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,21 +3,23 @@ Not supports in Firefox and IE */ /* total width */ body::-webkit-scrollbar { background-color: #fff; width: 16px; } /* background of the scrollbar except button or resizer */ body::-webkit-scrollbar-track { background-color: #fff; } /* scrollbar itself */ body::-webkit-scrollbar-thumb { background-color: #babac0; border-radius: 16px; border: 4px solid #fff; } /* set button(top and bottom of the scrollbar) */ body::-webkit-scrollbar-button { display:none; } -
spemer revised this gist
Jan 5, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ body::-webkit-scrollbar { width:16px } /* background of the scrollbar except button or resizer */ body::-webkit-scrollbar-track { background-color:#fff } -
spemer revised this gist
Jan 5, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ /* Customize website's scrollbar like Mac OS Not supports in Firefox and IE */ /* total width */ body::-webkit-scrollbar { background-color:#fff; -
spemer revised this gist
Jan 5, 2018 . 1 changed file with 14 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,20 @@ /* total width */ body::-webkit-scrollbar { background-color:#fff; width:16px } /* background of the scrollbar */ body::-webkit-scrollbar-track { background-color:#fff } /* scrollbar itself */ body::-webkit-scrollbar-thumb { background-color:#babac0; border-radius:16px; border:4px solid #fff } /* set button(top and bottom of the scrollbar) */ body::-webkit-scrollbar-button {display:none} -
spemer created this gist
Jan 5, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ body::-webkit-scrollbar { background-color:#fff;width:16px } body::-webkit-scrollbar-track { background-color:#fff } body::-webkit-scrollbar-thumb { background-color:#babac0;border-radius:16px;border:4px solid #fff; }