Guest User

Untitled

a guest
Aug 12th, 2020
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.48 KB | None | 0 0
  1.   // This will cut down on CSS we have to write!
  2.   // Don't bother understainding it, just trust the process...
  3.  boat-root(selector)
  4.    #{selector}
  5.      animation selector $speed ease-in-out alternate infinite
  6.    @keyframes {selector}
  7.      from
  8.        transform translateX(0px)
  9.      to
  10.        {block}
  11.  boat(selector)
  12.    +boat-root(selector)
  13.      from
  14.        transform translateX(0px)
  15.      to
  16.        {block}
  17.  
  18.  +boat(sea-Shadow)
  19.    transform translateX(-6px)
  20.  
Advertisement
Add Comment
Please, Sign In to add comment