123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .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-brush {
- 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: 30vh;
- height: 30vh;
- }
- #unity-loading-progress-text{
- position: relative;
- left: 5px;
- top: -9px;
- z-index: 10;
- color: #fff;
- }
|