Created
May 6, 2014 13:19
-
-
Save matt-west/506396e74cc25af6b01e to your computer and use it in GitHub Desktop.
Postach.io Categoires Nav Styling
This file contains 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
<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