Created
July 2, 2014 10:37
-
-
Save lgoldstien/0b14f4b9d8ca33b47333 to your computer and use it in GitHub Desktop.
Facebook Style Counters on Bootstrap and Fontawesome Icons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.icon_counter_red { | |
background-color : #f00; | |
} | |
.icon_counter_blue { | |
background-color : #39f; | |
} | |
.icon_counter_green { | |
background-color : #3c3; | |
} | |
.icon_counter { | |
color : #fff; | |
font-family : "Arial"; | |
font-size : 14px; | |
font-weight : 600; | |
position : absolute; | |
padding : 0px 2px; | |
margin-top : 6px; | |
margin-left : -3px; | |
-webkit-border-radius : 3px; | |
-moz-border-radius : 3px; | |
border-radius : 3px; | |
-webkit-box-shadow : inset 0px 0px 2px 0px rgba(50, 50, 50, 0.75); | |
-moz-box-shadow : inset 0px 0px 2px 0px rgba(50, 50, 50, 0.75); | |
box-shadow : inset 0px 0px 2px 0px rgba(50, 50, 50, 0.75); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment