Skip to content

Instantly share code, notes, and snippets.

@alyssachanspace
Last active August 2, 2020 11:02
Show Gist options
  • Save alyssachanspace/a126ae9b979b37bfc2565709858b213f to your computer and use it in GitHub Desktop.
Save alyssachanspace/a126ae9b979b37bfc2565709858b213f to your computer and use it in GitHub Desktop.
Style of Back to Top Button
.back-to-top {
display:none;
position: fixed;
bottom: 2em;
right: 0px;
text-decoration: none;
color: #000000;
background-color: rgba(235, 235, 235, 0.80);
font-size: 12px;
padding: 1em;
}
.back-to-top:hover {
background-color: rgba(135, 135, 135, 0.50);
text-decoration:none;
color:#ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment