<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    -ms-touch-action: none;
}

body,
canvas,
div {
    display: block;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* Remove spin of input type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; &lt;- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* &lt;-- Apparently some margin are still there even though it's hidden */
}

body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: default;
    color: rgb(180, 16, 82);
    background-color: rgb(180, 16, 82);
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    /* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
    /* overflow cannot be applied in Cocos2dGameContainer,
  otherwise child elements will be hidden when Cocos2dGameContainer rotated 90 deg */
    overflow: hidden;
}

#GameCanvas {
    background-color: rgb(180, 16, 82);
}

#Cocos2dGameContainer {
    position: absolute;
    margin: 0;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    background-color: rgb(180, 16, 82);
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}

canvas {
    background-color: rgb(180, 16, 82);
}

a:link,
a:visited {
    color: #00547c;
}

a:active,
a:hover {
    color: #00547c;
}

p.header {
    font-size: small;
}

p.footer {
    font-size: x-small;
}

#splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(180, 16, 82);
    /* background: #171717 url(./splash.9630c.png) no-repeat center; */
    /* background-size: 20%; */
}

#logo {
    position: relative;
    /* max-width: 250px;
    max-height: 100px;
    min-width: 100px;
    min-height: 40px; */
    margin-top: -72%;
    margin-left: -76%;
}

div.shadow {
    position: relative;
    /* max-width: 45%;
    max-height: 45%; */
    top: 48%;
    left: 38%;
    overflow: visible;
}

.progress-bar {
    background-color: rgb(170, 0, 82);
    position: relative;
    top: 50%;
    height: 1.25%;
    /* height: 15px; */
    padding: 5px;
    width: 100%;
    max-width: 110px;
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgb(200, 50, 150) inset, 0 1px 0 rgb(252, 144, 230);
}

.progress-bar span {
    display: block;
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgb(200, 50, 150) inset;
    transition: width 0.4s ease-in-out;
    background-color: rgb(252, 144, 230);
}

.stripes span {
    background-size: 30px 30px;
    background-image: linear-gradient( 135deg, rgb(200, 50, 150) 25%, transparent 25%, transparent 50%, rgb(200, 50, 150) 50%, rgba(200, 50, 150, 1) 75%, transparent 75%, transparent);
    animation: animate-stripes 0.4s linear infinite;
}

@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}</pre></body></html>