Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. .sfx-from-top {
  2.   opacity: 0;
  3.   @include transform(translate(0px,-80px));
  4. }
  5.  
  6. .sfx-from-bottom {
  7.   opacity: 0;
  8.   @include transform(translate(0px,30px));
  9. }
  10.  
  11. .sfx-opacity {
  12.   opacity: 0;
  13. }
  14.  
  15. .sfx-top-slide {
  16.   @include transform(scale(1.1) translateY(-10px));
  17.   opacity: 0;
  18. }
  19.  
  20. .sfx-table {
  21.   @include transform(scale(1.2) rotate(-5deg));
  22.   opacity: 0;
  23. }
  24.  
  25. .sfx-catalog {
  26.   opacity: 0;
  27.   &:nth-of-type(1) { @include transform(scale(1.2) translate(-50px,-50px)); }
  28.   &:nth-of-type(2) { @include transform(scale(1.1) translate(0px,-50px)); }
  29.   &:nth-of-type(3) { @include transform(scale(1.1) translate(50px,-50px)); }
  30.   &:nth-of-type(4) { @include transform(scale(1.2) translate(-50px,50px)); }
  31.   &:nth-of-type(5) { @include transform(scale(1.1) translate(0px,50px)); }
  32.   &:nth-of-type(6) { @include transform(scale(1.1) translate(50px,50px)); }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement