Created
December 1, 2023 12:40
-
-
Save chrisynchen/72faf4c3f8bfb4e11339a8bf8976b1ec to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html style="background-color:#F6F7FC;"> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
/* width */ | |
::-webkit-scrollbar { | |
width: 10px; | |
} | |
/* Track */ | |
::-webkit-scrollbar-track { | |
background: #F6F7FC; | |
} | |
/* Handle */ | |
::-webkit-scrollbar-thumb { | |
background: #D0D0D0; | |
} | |
/* Handle on hover */ | |
::-webkit-scrollbar-thumb:hover { | |
background: #D0D0D0; | |
} | |
</style> | |
</head> | |
<body> | |
<p style="color:#666666;font-size:60px;"> | |
[Start] example here | |
</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment