Skip to content

Instantly share code, notes, and snippets.

@matt-west
Created May 6, 2014 13:19
Show Gist options
  • Save matt-west/506396e74cc25af6b01e to your computer and use it in GitHub Desktop.
Save matt-west/506396e74cc25af6b01e to your computer and use it in GitHub Desktop.
Postach.io Categoires Nav Styling
<style>
.categories ul {
list-style: none;
margin: 0;
}
.categories li {
padding-bottom: 0.5em;
}
.categories a,
.categories a:visited {
display: block;
background: #2eb18d;
color: #FFF;
padding: 0.5em 0.75em;
border-radius: 3px;
}
.categories a:hover,
.categories a:focus,
.categories a.active {
text-decoration: none;
background: #d84c30;
}
.categories a:active {
background: #b33a22;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment