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