Created
September 3, 2015 13:24
-
-
Save asvny/8ae03135c8b527ae3b00 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$card_morph: ( | |
trans1: 200ms transform ease-in-out, | |
trans2: 400ms background ease-in, | |
trans3: 600ms color linear | |
); | |
.card { | |
transition: map-values($card_morph); | |
} |
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
.card { | |
transition: 200ms transform ease-in-out, 400ms background ease-in, 600ms color linear; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment