-
-
Save velopert/226d0ca4da4caebc6e397af35db11785 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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="avatar"></div> |
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
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
.avatar { | |
background-color: red; | |
height: 120px; | |
margin: 40px; | |
width: 120px; | |
@at-root { | |
@keyframes fade { | |
from { transform: scale(1.0); } | |
to { transform: scale(1.1); } | |
} | |
} | |
&:hover { | |
animation: fade .4s infinite ease-in alternate; | |
} | |
} |
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
.avatar { | |
background-color: red; | |
height: 120px; | |
margin: 40px; | |
width: 120px; | |
} | |
@keyframes fade { | |
from { | |
transform: scale(1); | |
} | |
to { | |
transform: scale(1.1); | |
} | |
} | |
.avatar:hover { | |
animation: fade .4s infinite ease-in alternate; | |
} |
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="avatar"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment