1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- width: 100%;
- height: 100%;
- }
- body #unity-container {
- width: 100%;
- height: 100%;
- }
- body #unity-container #unity-canvas {
- width: 100%;
- height: 100%;
- }
- body #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;
- }
- .videoBox {
- position: absolute;
- z-index: 8000;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: black;
- }
- .videoBox video {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- max-width: 100%;
- max-height: 100%;
- }
- .videoBox .skipTxt {
- position: absolute;
- z-index: 10;
- right: 15px;
- top: 15px;
- width: 60px;
- height: 30px;
- background-color: rgba(0, 0, 0, 0.6);
- line-height: 30px;
- text-align: center;
- color: #fff;
- }
|