1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .save-image-block {
- position: fixed;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- pointer-events: none;
- }
- .save-image-backgroup {
- opacity: 0;
- pointer-events: none;
- }
- #unity-loading {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- #unity-loading-paper {
- position: absolute;
- }
- #unity-loading-bg {
- position: absolute;
- object-fit: cover;
- width: 100%;
- height: 100%;
- }
- #unity-loading-video {
- position: absolute;
- object-fit: contain;
- width: 100%;
- height: 100%;
- }
- #unity-loading-progress{
- position: absolute;
- width: 30vw;
- height: 30vw;
- }
- #unity-loading-progress-text{
- position: relative;
- left: 5px;
- top: -9px;
- z-index: 10;
- color: #fff;
- }
|