Skip to content

Instantly share code, notes, and snippets.

@tbremer
Created April 11, 2014 18:21
Show Gist options
  • Save tbremer/10489672 to your computer and use it in GitHub Desktop.
Save tbremer/10489672 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{
.prefixer{
@include prefixer(transition, (color 0.25s linear, background-color 0.25s linear), webkit moz spec);
}
.trans-documentation{
@include transition ((opacity, width), (1.0s, 2.0s), ease-in, (0, 2s));
}
.trans-working{
@include transition ((opacity 1.0s linear, width 2.0s linear));
}
}
body .prefixer {
-webkit-transition: color 0.25s linear, background-color 0.25s linear;
-moz-transition: color 0.25s linear, background-color 0.25s linear;
transition: color 0.25s linear, background-color 0.25s linear;
}
body .trans-documentation {
-webkit-transition: opacity, width, 1s, 2s, ease-in, 0, 2s;
-moz-transition: opacity, width, 1s, 2s, ease-in, 0, 2s;
transition: opacity, width, 1s, 2s, ease-in, 0, 2s;
}
body .trans-working {
-webkit-transition: opacity 1s linear, width 2s linear;
-moz-transition: opacity 1s linear, width 2s linear;
transition: opacity 1s linear, width 2s linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment