Created
July 16, 2011 17:37
-
-
Save zachbrowne/1086576 to your computer and use it in GitHub Desktop.
Add RSS Icons to a List of Feeds
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
.feed-list { | |
margin: 0 0 15px 15px; | |
padding: 0; | |
list-style-type: none; | |
} | |
.feed-list li { | |
margin: 0 0 10px 0; | |
padding: 0; | |
list-style-type: none; | |
} | |
.feed-list li a { | |
padding: 0 0 0 19px; | |
background: url("../images/feed-icon-14x14.png") no-repeat 0 50%; | |
list-style-type: none; | |
} |
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
<ul class="feed-list"> | |
<li><a href="#">All Posts</a></li> | |
<li><a href="#">Category 1</a></li> | |
<li><a href="#">Category 2</a></li> | |
<li><a href="#">Comments</a></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment