revolution.addon.particles.css 632 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * @author ThemePunch <info@themepunch.com>
  3. * @link http://www.themepunch.com/
  4. * @copyright 2017 ThemePunch
  5. */
  6. .rs-particles-canvas {
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. width: 100%;
  11. height: 100%;
  12. opacity: 0;
  13. pointer-events: none;
  14. transition: opacity 0.5s linear;
  15. -webkit-user-select: none;
  16. -moz-user-select: none;
  17. -ms-user-select: none;
  18. user-select: none;
  19. }
  20. /* interactive, no slidelink */
  21. .rs-particles-interactive .rs-particles-canvas {
  22. pointer-events: auto;
  23. }
  24. /* interactive + slidelink */
  25. .rs-particles-slidelink .rs-particles-canvas {
  26. cursor: pointer;
  27. pointer-events: auto;
  28. }