-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.css
45 lines (39 loc) · 866 Bytes
/
app.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
body {
background-color: #222;
margin: 0;
height: 100vh;
width: 100vw;
overflow: hidden;
}
#RotatePhoneIcon {
top: -180px;
left: -180px;
}
#PlayButtonStyledInAppCSS {
/* Play button is an 80 pixel square that we want to center. */
top: -40px;
left: -40px;
}
#PlayButtonStyledInAppCSS:active {
/* When clicked, we nudge the play button down for visual feedback. */
top: -38px;
left: -40px;
}
#AddToHomeScreenStyledInAppCSS:active {
background-color: #222 !important;
color: white !important;
}
canvas {
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor;
}
html,
body {
touch-action: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}