Created
January 26, 2015 02:12
-
-
Save rabidaudio/4ffdc2a81bd6811c608a to your computer and use it in GitHub Desktop.
Round avatar 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
| <style> | |
| .avatar { | |
| /* This is the size. TODO how to scale dynamically? */ | |
| width: 3em; | |
| padding-bottom: 3em; | |
| height: 0; | |
| overflow: hidden; | |
| border-radius: 9999px; | |
| position: relative; | |
| } | |
| .avatar img { | |
| width: 100%; | |
| bottom: 0px; | |
| position: absolute; | |
| } | |
| </style> | |
| <div class="avatar"><img src=""></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment