Skip to content

Instantly share code, notes, and snippets.

@phirefly
Last active December 20, 2015 00:49
Show Gist options
  • Save phirefly/6044769 to your computer and use it in GitHub Desktop.
Save phirefly/6044769 to your computer and use it in GitHub Desktop.
CSS topnav
ul#top-nav {
display: inline-block;
color: #fff;
margin: 0;
padding-left: 0;
padding-top: auto;
padding-bottom: auto;
}
ul#top-nav a {
color: #fff;
text-decoration: none;
text-shadow: 0 1px 0 black;
}
ul#top-nav li:hover {
background-color: #915d1c;
}
ul#top-nav li {
display: inline-block;
list-style: none;
}
ul#top-nav li a {
display: inline-block;
padding: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment