-
-
Save yomotsu/d5e7ba026e4b30fe08d6e71cd47e0e49 to your computer and use it in GitHub Desktop.
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 characters
html { | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
::-moz-selection { | |
background: #4a4a4a; | |
color: #aaa; | |
} | |
::selection { | |
background: #4a4a4a; | |
color: #aaa; | |
} | |
/* | |
FYI: for Edge | |
https://wpdev.uservoice.com/forums/257854-microsoft-edge-developer/suggestions/9081910-add-support-for-scrollbar-styling | |
*/ | |
::-webkit-scrollbar { | |
width: 12px; | |
} | |
::-webkit-scrollbar-track { | |
background: #fff; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #2d2d2d; | |
} | |
::-webkit-scrollbar-thumb:window-inactive { | |
background: #2d2d2d; | |
} | |
::-webkit-scrollbar-thumb:vertical:hover { | |
background: #2d2d2d; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment