Created
May 30, 2013 19:57
-
-
Save sam3k/5680655 to your computer and use it in GitHub Desktop.
This file contains 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
.hi-icon-effect-6 .hi-icon { | |
box-shadow: 0 0 0 4px rgba(255,255,255,1); | |
transition: background 0.2s, color 0.2s; | |
} | |
.no-touch .hi-icon-effect-6 .hi-icon:hover { | |
background: rgba(255,255,255,1); | |
color: #64bb5d; | |
} | |
.no-touch .hi-icon-effect-6 .hi-icon:hover:before { | |
animation: spinAround 2s linear infinite; | |
} | |
@keyframes spinAround { | |
from { | |
transform: rotate(0deg) | |
} | |
to { | |
transform: rotate(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment