Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Last active December 30, 2015 12:29
Show Gist options
  • Save blackfalcon/7829866 to your computer and use it in GitHub Desktop.
Save blackfalcon/7829866 to your computer and use it in GitHub Desktop.
Create UI badge using data attributes and CSS for content
<a href="#" rel="docs" data-notification="3">docs</a>
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$echo_primary: #FF6625;
[data-notification] {
&:after {
display: block;
text-align: center;
content: attr(data-notification);
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
background-color: $echo_primary;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment