12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- *{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- width: 100%;
- height: 100%;
- #unity-container {
- width: 100%;
- height: 100%;
- #unity-canvas {
- width: 100%;
- height: 100%;
- }
- }
- #lodingTxt {
- position: absolute;
- z-index: 10;
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- color: #fff;
- font-size: 14px;
- }
- }
- #unity-loading-bar {
- position: fixed;
- z-index: 999;
- top: 0;
- left: 0;
- transform: translate(0, 0);
- width: 100%;
- height: 100%;
- background-color: black;
- }
- #unity-logo {
- display: none !important;
- }
- #unity-progress-bar-empty {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: url('./loding.gif') black center center no-repeat;
- background-size: contain;
- }
- #unity-progress-bar-full {
- display: none !important;
- }
|