Skip to content

Instantly share code, notes, and snippets.

@mariofink
Created February 18, 2014 13:58
Show Gist options
  • Save mariofink/9071490 to your computer and use it in GitHub Desktop.
Save mariofink/9071490 to your computer and use it in GitHub Desktop.
A Pen by Mario Fink.
<span class="badge primary">1</span>
<span class="badge secondary">2</span>
<span class="badge">3</span>
<span class="badge primary">some longer text</span>
body {
font-family: sans-serif;
margin: 2em;
}
.badge {
border: 0.2em solid teal;
border-radius: 2em;
display: inline-block;
padding: 0.5em;
min-width: 1em;
text-align: center;
}
.badge.primary {
color: #fff;
background: teal;
}
.badge.secondary {
color: #333;
background: transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment