Skip to content

Instantly share code, notes, and snippets.

@jonesmac
Last active December 12, 2015 08:49
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 jonesmac/4747173 to your computer and use it in GitHub Desktop.
Save jonesmac/4747173 to your computer and use it in GitHub Desktop.
CSS: Single Page Site Waypoint CSS
.sticky nav {
position:fixed;
top:0;
left:0;
width:100%;
z-index: 999;
}
.sticky nav ul {
margin:0 auto;
}
.top { /*Back to Top Button */
position:fixed;
right:15px;
bottom:15px;
width:50px;
height:25px;
padding-top:25px;
line-height:25px;
background:#333;
color:#888;
display:block;
text-transform:uppercase;
text-decoration:none;
text-align:center;
font-size:14px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
behavior:url(../PIE.htc);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment