Skip to content

Instantly share code, notes, and snippets.

@trenkwill
Created September 28, 2012 08:14
Show Gist options
  • Save trenkwill/3798592 to your computer and use it in GitHub Desktop.
Save trenkwill/3798592 to your computer and use it in GitHub Desktop.
SCSS : notification number
span {
$size: 25px;
$color:$green;
float:right;
font-size:$size/1.8;
line-height:$size;
font-weight:bold;
color:lighten($color, 60);
text-align:center;
display:inline-block;
background:$color;
border:solid 2px lighten($color, 60);
padding:0 7px;
height:$size;
@include box-shadow(0 0 4px rgba(0, 0, 0, .3));
@include border-radius($size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment