Skip to content

Instantly share code, notes, and snippets.

@georgesb
Last active May 23, 2020 00:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgesb/5acc474b49e9a7435072b75322bf173f to your computer and use it in GitHub Desktop.
Save georgesb/5acc474b49e9a7435072b75322bf173f to your computer and use it in GitHub Desktop.
Floating Button
<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