Last active
May 23, 2020 00:15
-
-
Save georgesb/5acc474b49e9a7435072b75322bf173f to your computer and use it in GitHub Desktop.
Floating Button
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> | |
<head> | |
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | |
<style> | |
.lower-right{ | |
position: fixed; | |
bottom: 45px; | |
right:40px; | |
} | |
.material-button{ | |
font-size: 34px; | |
padding: 3px; | |
color:white; | |
background-color:#e51c23; | |
opacity:0.9; | |
border-radius: 50%; | |
-webkit-box-shadow: 0.5px 1px 3px 0px rgba(80,80,80,0.75); | |
</style> | |
</head> | |
<body> | |
<a href="#" ><i class="material-icons material-button lower-right">chevron_left</i></a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment