index.css 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-brush {
  28. position: absolute;
  29. }
  30. #unity-loading-bg {
  31. position: absolute;
  32. object-fit: cover;
  33. width: 100%;
  34. height: 100%;
  35. }
  36. #unity-loading-video {
  37. position: absolute;
  38. object-fit: contain;
  39. width: 100%;
  40. height: 100%;
  41. }
  42. #unity-loading-progress{
  43. position: absolute;
  44. width: 30vh;
  45. height: 30vh;
  46. }
  47. #unity-loading-progress-text{
  48. position: relative;
  49. left: 5px;
  50. top: -9px;
  51. z-index: 10;
  52. color: #fff;
  53. }