Created
May 2, 2014 14:17
-
-
Save gingerrific/76f759627e7f0efcfae4 to your computer and use it in GitHub Desktop.
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
.sonic{ | |
width:5em; | |
height:5em; | |
background:#5B5BD9; | |
transition:all 0.6s ease; | |
} | |
.speedy { | |
height: 30em; | |
width: 30em; | |
} | |
.speedy:hover { | |
-webkit-transform: rotate(90deg); | |
border-radius: 100%; | |
} | |
.speedy:hover .one { | |
transition:all 0.9s ease; | |
margin-left: 22em; | |
} |
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
<div class="speedy"> | |
<div class="sonic one"></div> | |
<div class="sonic two"></div> | |
<div class="sonic three"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment