FA - Yellow star with border
by Yuval Bar-On
HTML
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css">
<span>
<i class="superstar"></i>
</span>
CSS
span { position: relative; }
.superstar:after {
content: "\f005";
font-family: FontAwesome;
font-style: normal;
color: yellow;
font-size: 23px;
position: absolute;
right: 6px;
top: -11px;
}
.superstar:before {
content: "\f005";
font-family: FontAwesome;
font-style: normal;
font-size: 36px;
}