-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.css
More file actions
47 lines (42 loc) · 880 Bytes
/
main.css
File metadata and controls
47 lines (42 loc) · 880 Bytes
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
* {
-webkit-user-select: none;
user-select: none;
}
html {
background-color: #000;
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
text-align: center;
}
body {
margin: 0px 0px 1px 0px; /* the extra 1px allows the iOS inner/outer check to work */
background: #000;
}
canvas {
image-rendering: optimizeSpeed;
-webkit-interpolation-mode: nearest-neighbor;
margin: 0px;
padding: 0px;
border: 2px solid #fff;
margin:auto;
}
:-webkit-full-screen #canvas {
width: 100%;
height: 100%;
}
#orientation {
margin: 0 auto;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(../assets/images/orientation.jpg);
background-repeat: no-repeat;
background-position: center;
background-color: #808c8d;
z-index: 999;
display: none;
}