style.less 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. width: 100%;
  8. height: 100%;
  9. #unity-container {
  10. width: 100%;
  11. height: 100%;
  12. #unity-canvas {
  13. width: 100%;
  14. height: 100%;
  15. }
  16. }
  17. #lodingTxt {
  18. position: absolute;
  19. z-index: 10;
  20. bottom: 20px;
  21. left: 50%;
  22. transform: translateX(-50%);
  23. color: #fff;
  24. font-size: 14px;
  25. }
  26. }
  27. #unity-loading-bar {
  28. position: fixed;
  29. z-index: 999;
  30. top: 0;
  31. left: 0;
  32. transform: translate(0, 0);
  33. width: 100%;
  34. height: 100%;
  35. background-color: black;
  36. }
  37. #unity-logo {
  38. display: none !important;
  39. }
  40. #unity-progress-bar-empty {
  41. position: absolute;
  42. top: 0;
  43. left: 0;
  44. width: 100%;
  45. height: 100%;
  46. background: url('./loding.gif') black center center no-repeat;
  47. background-size: contain;
  48. }
  49. #unity-progress-bar-full {
  50. display: none !important;
  51. }