Skip to content

Instantly share code, notes, and snippets.

@brandonratz
Created June 16, 2014 20:40
Show Gist options
  • Select an option

  • Save brandonratz/c842467850ae81b06ae9 to your computer and use it in GitHub Desktop.

Select an option

Save brandonratz/c842467850ae81b06ae9 to your computer and use it in GitHub Desktop.
A Pen by Brandon Ratzloff.
<div class="rid-conference"><div class="icon"></div><div class="hide">conference</div></div>
<div class="rid-member"><div class="icon"></div><div class="hide">member</div></div>
.hide {
display: none;
}
.icon {
display: block;
text-align: center;
padding: 2px;
text-transform: uppercase;
border-radius: 12px;
float: left;
margin: 2px;
height: 20px;
width: 21px;
position: relative;
}
.icon:before {
color: #FFF;
font-weight: bold;
}
.rid-member .icon {
background: #ff7e00;
}
.rid-member .icon:before {
content: "M";
}
.rid-conference .icon {
background: #0083f5;
}
.rid-conference .icon:before {
content: "C";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment