Skip to content

Instantly share code, notes, and snippets.

@alyssachk
Created September 11, 2016 06:28
Show Gist options
  • Save alyssachk/3b7d46210c3c9ab159e55ed1b31b8043 to your computer and use it in GitHub Desktop.
Save alyssachk/3b7d46210c3c9ab159e55ed1b31b8043 to your computer and use it in GitHub Desktop.
Back to Top Button CSS
.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