-
-
Save briandailey/72e4cbed397e81979bf65d455f32409a to your computer and use it in GitHub Desktop.
Revisions
-
lomteslie revised this gist
Feb 10, 2016 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,12 @@ .class { transition: color $transition-speed-easing; // preferred method } .class { transition: opacity ($transition-speed * 2) $transition-easing; // For a slower animation } .class { transition: color $transition-speed-easing, // multiple properties border $transition-speed-easing; } -
lomteslie created this gist
Feb 10, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ .class { transition: property ($transition-speed * 2) $transition-easing; }