-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
54 lines (49 loc) · 1.03 KB
/
style.css
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
html, body
{
margin: 0;
padding: 0;
font-family: Arial;
font-size: 12px;
color: white;
background: black;
-webkit-text-size-adjust: none; /* important, or your text resizes randomly on rotation! */
-webkit-tap-highlight-color: transparent;
}
#game_canvas
{
z-index: 1;
overflow: hidden;
image-rendering: optimizeSpeed;
-webkit-tap-highlight-color: transparent;
-moz-tap-highlight-color: transparent;
-webkit-user-select: none;
-webkit-transform: translateZ(0);
-ms-touch-action: none;
}
canvas
{
z-index: 1;
overflow: hidden;
image-rendering: optimizeSpeed;
-webkit-tap-highlight-color: transparent;
-moz-tap-highlight-color: transparent;
-webkit-user-select: none;
-webkit-transform: translateZ(0);
}
#wrong_orientation
{
background: black;
position: absolute;
top: 0px;
left: 0px;
z-index: 2;
width: 100%;
height: 100%;
display: none;
}
#wrong_orientation img
{
display: block;
margin: 0 auto;
width: 80%;
}