-
Notifications
You must be signed in to change notification settings - Fork 6
/
styles.css
57 lines (49 loc) · 1.08 KB
/
styles.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
55
56
57
.inner-cover {
color: white;
text-align: center
}
.noselect {
cursor: default;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
/* immitate webkit fullscreen in firefox */
.container:-moz-full-screen {
display: table;
height: 100%;
position: absolute;
overflow: hidden;
width: 100%;
}
.container:-moz-full-screen .helper {
#position: absolute;
#top: 50%;
display: table-cell;
vertical-align: middle;
}
.container:-moz-full-screen .canvas {
#position: relative;
#top: -50%;
margin: 0 auto;
width: 500px;
}
body {
margin: 0;
background-color: rgb(51, 51, 51);
}
#fscontainer {
padding: 0;
}
#rygameCanvas {
outline: none;
display: block;
margin: 0 auto;
}
.screensize-buttons {
text-align: center;
margin: 1em;
}