animate.less 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @charset "UTF-8";
  2. /*!
  3. Animate.css - http://daneden.me/animate
  4. Licensed under the MIT license - http://opensource.org/licenses/MIT
  5. Copyright (c) 2015 Daniel Eden
  6. */
  7. .animated {
  8. -webkit-animation-duration: 1s;
  9. animation-duration: 1s;
  10. -webkit-animation-fill-mode: both;
  11. animation-fill-mode: both;
  12. }
  13. .animated.infinite {
  14. -webkit-animation-iteration-count: infinite;
  15. animation-iteration-count: infinite;
  16. }
  17. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  18. @-webkit-keyframes fadeIn {
  19. 0% {
  20. opacity: 0;
  21. }
  22. 100% {
  23. opacity: 1;
  24. }
  25. }
  26. @keyframes fadeIn {
  27. 0% {
  28. opacity: 0;
  29. }
  30. 100% {
  31. opacity: 1;
  32. }
  33. }
  34. .fadeIn {
  35. -webkit-animation-name: fadeIn;
  36. animation-name: fadeIn;
  37. }