Guest User

Untitled

a guest
May 25th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. /* Small Devices, Tablets */
  2. @media only screen and (max-width : 768px) {
  3. .animated {
  4. /*CSS transitions*/
  5. -o-transition-property: none !important;
  6. -moz-transition-property: none !important;
  7. -ms-transition-property: none !important;
  8. -webkit-transition-property: none !important;
  9. transition-property: none !important;
  10. /*CSS transforms*/
  11. -o-transform: none !important;
  12. -moz-transform: none !important;
  13. -ms-transform: none !important;
  14. -webkit-transform: none !important;
  15. transform: none !important;
  16. /*CSS animations*/
  17. -webkit-animation: none !important;
  18. -moz-animation: none !important;
  19. -o-animation: none !important;
  20. -ms-animation: none !important;
  21. animation: none !important;
  22. }
  23. }
Add Comment
Please, Sign In to add comment