Created
April 8, 2016 19:31
-
-
Save impressivewebs/8dcddb413c6dd33a601ba4d3168fc8fc to your computer and use it in GitHub Desktop.
SVG2CSS : output files
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
@keyframes dropball { | |
} |
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
/* Add Your CSS */ | |
.ball { | |
left: 100px; | |
bottom: 100px; | |
height: 200px; | |
width: 200px; | |
background: white; | |
border-radius: 50%; | |
position: absolute; | |
animation: dropball 2s infinite; | |
} |
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
<!-- Add Your HTML --> | |
<div class="ball"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment