Created
August 13, 2012 12:13
-
-
Save vindia/3340088 to your computer and use it in GitHub Desktop.
CSS 3 Water Droplet
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
body { padding: 4em; } | |
#droplet { | |
background-color: lightblue; | |
width: 150px; | |
height: 150px; | |
-webkit-border-top-left-radius: 0; | |
-webkit-border-top-right-radius: 75px; | |
-webkit-border-bottom-right-radius: 75px; | |
-webkit-border-bottom-left-radius: 75px; | |
-webkit-transform:rotate(45deg); | |
box-shadow: 1px 1px 7px #1a1a1a; | |
} |
tnx,
Awesome!
Good job
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That was really helpful and I especially needed this animation to show-off skills rating on my resume :) Thank you! :)