ForbodingAngel

Untitled

Mar 21st, 2016
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // mixins
  2. @mixin transition($time) {
  3. -webkit-transition: all $time ease-in-out;
  4. -moz-transition: all $time ease-in-out;
  5. -ms-transition: all $time ease-in-out;
  6. -o-transition: all $time ease-in-out;
  7. transition: all $time ease-in-out;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment