-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
30 lines (27 loc) · 720 Bytes
/
style.css
File metadata and controls
30 lines (27 loc) · 720 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
body {
margin: 0;
}
canvas {
position: absolute;
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -webkit-crisp-edges; /* Webkit (Safari) */
image-rendering: pixelated; /* Chrome */
}
#background {
background-image: url(src/resources/gui/title/splash.png);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -webkit-crisp-edges; /* Webkit (Safari) */
image-rendering: pixelated; /* Chrome */
}
.fullscreen {
position: absolute;
float: left;
display: block;
width: 100%;
height: 100%;
white-space: nowrap;
overflow: hidden;
}