Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #menu-home > li {
  2. top: 0;
  3. transition-duration: 0.8s;
  4. transition-property: top;
  5. }
  6.  
  7. #menu-home.menu-animate > li {
  8. top: 50px;
  9. }
  10.  
  11. #menu-home > li:nth-child(1) {
  12. transition-delay: 0s;
  13. }
  14.  
  15. #menu-home > li:nth-child(2) {
  16. transition-delay: 0.2s;
  17. }
  18.  
  19. #menu-home > li:nth-child(3) {
  20. transition-delay: 0.4s;
  21. }
  22.  
  23. #menu-home > li:nth-child(4) {
  24. transition-delay: 0.6s;
  25. }
  26.  
  27. #menu-home > li:nth-child(5) {
  28. transition-delay: 0.8s;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement