<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* demo */

* {
  font-family: monospace;
}

body {
  background: #000;
  color: #999;
  font-size: 17px;
}

a {
  color: #ccc;
  text-decoration: underline;
}

.info {
  width:100%;
  padding:12px;
  box-sizing: border-box;
}

/* webgl layout */

.webgl-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#unityContainer {
  width: 62vw; height: calc((9/16)*62vw);
}

.webgl-content * {
  border: 0;
  margin: 0;
  padding: 0;
}

.webgl-content {
  position: relative;
  width: 100%;
  background: #ccc;
}

#unityContainer canvas{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

/*.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}*/
/*.webgl-content .logo {background: url('../images/progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}*/
/*.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}*/
/*.webgl-content .progress .empty {background: url('../images/progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}*/
/*.webgl-content .progress .full {background: url('../images/progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}*/
/*.webgl-content .logo.Dark {background-image: url('../images/progressLogo.Dark.png');}*/
/*.webgl-content .progress.Dark .empty {background-image: url('../images/progressEmpty.Dark.png');}*/
/*.webgl-content .progress.Dark .full {background-image: url('../images/progressFull.Dark.png');}*/
/*.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;}*/
/*.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}*/
/*.webgl-content .footer .webgl-logo {background-image: url('../images/webgl-logo.png'); width: 204px; float: left;}*/
/*.webgl-content .footer .title {margin-right: 10px; float: right;}*/
/*.webgl-content .footer .fullscreen {background-image: url('../images/fullscreen.png'); width: 38px; float: right; cursor:pointer;}*/
.progress {
    margin: 1.5em;
    border: 1px solid #656565;
    width: 20vw;
    height: 18px;
    background: #000000;
    border: 1px outset #f09343;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.4);
    display: none;
    border-radius: 1.5em;
}
.progress .full {
    margin: 4px 2px 0px 2px;
    background: goldenrod;
    -webkit-box-shadow: goldenrod;
    -moz-box-shadow: gold;
    box-shadow: goldenrod;
    height: 8px;
    transform-origin: top left;
    border-radius: 2.5em;
    color: #000000;
    font-weight: 700;
}
#loader {
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    /*
        width: 100vw;
        height: 100vh;
    */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.spinner,
.spinner:after {
    border-radius: 50%;
    width: 5em;
    height: 5em;
}
.spinner {
    margin: 10px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    transform: translateZ(0);
    animation: spinner-spin 1.1s infinite linear;
    display: none;
}
.webgl-content {
    position: relative;
    z-index: 3;
    border: 3px outset #e2a236;
    top: auto;
    left: auto;
    transform: none;
}
@keyframes spinner-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
</pre></body></html>