Created
August 31, 2012 21:44
-
-
Save BaylorRae/3559560 to your computer and use it in GitHub Desktop.
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
<ol> | |
<li> | |
<a data-notifications="10" class="button" href="#">New Comments on Your Posts</a> | |
</li> | |
<li> | |
<a class="button" href="#">Number of Post Likes :)</a> | |
</li> | |
<ol> |
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
/* make sure the element has position: relative */ | |
[data-notifications] { | |
position: relative; | |
} | |
/* append the notification badge after it */ | |
[data-notifications]:after { | |
/* the burger */ | |
content: attr(data-notifications); | |
/* the fries */ | |
position: absolute; | |
background: red; | |
border-radius: 50%; | |
display: inline-block; | |
padding: 0.3em; | |
color: #f2f2f2; | |
right: -15px; | |
top: -15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment