_base.css 490 B

12345678910111213141516171819202122232425262728293031
  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. animation-duration: 1s;
  9. animation-fill-mode: both;
  10. }
  11. .animated.infinite {
  12. animation-iteration-count: infinite;
  13. }
  14. .animated.hinge {
  15. animation-duration: 2s;
  16. }
  17. .animated.bounceIn,
  18. .animated.bounceOut {
  19. animation-duration: .75s;
  20. }
  21. .animated.flipOutX,
  22. .animated.flipOutY {
  23. animation-duration: .75s;
  24. }