_animations.scss 547 B

1234567891011121314151617181920212223242526272829303132
  1. // Notes:
  2. /** Utilize JS getStyle to read width of spritesheet
  3. ** Calculate amount of steps from that
  4. ** Profit
  5. **/
  6. @import "compass/utilities/sprites";
  7. $anims-layout:vertical;
  8. $anims-sprite-dimensions: true;
  9. @import "anims/*/**.png";
  10. @include all-anims-sprites;
  11. @import "_animationsBG";
  12. #sceneAnimation {
  13. display: block;
  14. position: fixed;
  15. bottom: 0px;
  16. left: 50%;
  17. z-index: 1;
  18. pointer-events: none;
  19. opacity: 0;
  20. }
  21. .sceneAnimation {
  22. display: block;
  23. position: absolute;
  24. top: 50%;
  25. left: 50%;
  26. image-rendering: pixelated;
  27. }