Last active
December 12, 2015 08:49
-
-
Save jonesmac/4747173 to your computer and use it in GitHub Desktop.
CSS: Single Page Site Waypoint 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
.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