Skip to content

Instantly share code, notes, and snippets.

@plapier
Created April 11, 2014 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plapier/10491295 to your computer and use it in GitHub Desktop.
Save plapier/10491295 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// Bourbon (v)
// ----
@import "bourbon/bourbon";
body{
@include transition (all 2.0s ease-in-out);
/**/
@include transition (opacity 1.0s ease-in 0s, width 2.0s ease-in 2s);
}
body {
-webkit-transition: all 2s ease-in-out;
-moz-transition: all 2s ease-in-out;
transition: all 2s ease-in-out;
/**/
-webkit-transition: opacity 1s ease-in 0s, width 2s ease-in 2s;
-moz-transition: opacity 1s ease-in 0s, width 2s ease-in 2s;
transition: opacity 1s ease-in 0s, width 2s ease-in 2s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment