Last active
September 17, 2017 09:30
-
-
Save sbrl/76ca3e411ecd6470c177cd9d493eaf31 to your computer and use it in GitHub Desktop.
Displays the contents of the `data-badge-content` attribute as a badge on an icon. Built to loosely mimic what amazon used to do with their basket. #css
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
.badge-text:after | |
{ | |
content: attr(data-badge-content); | |
z-index: 10000; | |
position: absolute; | |
top: 60%; left: 50%; | |
width: 1em; height: 1em; | |
background: white; | |
border-radius: 50%; | |
text-align: center; | |
font-family: sans-serif; | |
font-size: 0.8em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment