index.css 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .save-image-block {
  2. position: fixed;
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. pointer-events: none;
  9. }
  10. .save-image-backgroup {
  11. opacity: 0;
  12. pointer-events: none;
  13. }
  14. #unity-loading {
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. height: 100%;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. #unity-loading-paper {
  25. position: absolute;
  26. }
  27. #unity-loading-bg {
  28. position: absolute;
  29. object-fit: cover;
  30. width: 100%;
  31. height: 100%;
  32. }
  33. #unity-loading-video {
  34. position: absolute;
  35. object-fit: contain;
  36. width: 100%;
  37. height: 100%;
  38. }
  39. #unity-loading-progress{
  40. position: absolute;
  41. width: 30vw;
  42. height: 30vw;
  43. }
  44. #unity-loading-progress-text{
  45. position: relative;
  46. left: 5px;
  47. top: -9px;
  48. z-index: 10;
  49. color: #fff;
  50. }