mirror of
https://github.com/photonstorm/phaser
synced 2024-12-04 18:40:59 +00:00
20 lines
438 B
CSS
20 lines
438 B
CSS
|
body {
|
||
|
margin: 0px 0px 1px 0px; /* the extra 1px allows the iOS inner/outer check to work */
|
||
|
background: #000;
|
||
|
}
|
||
|
|
||
|
#orientation {
|
||
|
margin: 0 auto;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-image: url(../images/orientation.jpg);
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
background-color: rgb(0, 0, 0);
|
||
|
z-index: 999;
|
||
|
display: none;
|
||
|
}
|