File size: 1,241 Bytes
ca81e93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
*{
padding: 0;
margin: 0;
border: none;
user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box;
}
body{
background-color:#000000;
}
canvas{
margin: 0 auto;
}
#orientation {
margin: 0 auto;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(../assets/Loading/orientation.png);
background-repeat: no-repeat;
background-position: center;
background-color: rgb(0, 0, 0);
z-index: 999;
display: none;
pointer-events:none;
}
#msg {
margin: 0 auto;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(0, 0, 0);
z-index: 999;
display: none;
pointer-events:none;
color:#fff;
font-size: 1.25em;
text-align: center;
padding: 15px;
}
#msg > p{
padding-top:50px;
font-family: verdana;
width:300px;
margin:auto;
}
#preload-font {
font-family: 'king_cool_kc', sans-serif;
text-indent: -9999px;
font-size: 0;
}
.ppat-text {
position: absolute;
left: 0;
top: 0;
margin: 0;
font: 16px/1 monospace;
}
|