Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Incognito-old
Path: blob/main/static/src/gs/public/friendlyfire/style.css
1324 views
1
html, body {
2
padding: 0;
3
margin: 0;
4
}
5
6
#background {
7
background-color: #202020;
8
position: fixed;
9
top: 0;
10
left: 0;
11
bottom: 0;
12
right: 0;
13
}
14
15
#gameCanvas {
16
position: absolute;
17
left: 0;
18
top: 0;
19
right: 0;
20
bottom: 0;
21
margin: auto;
22
display: block;
23
image-rendering: -moz-crisp-edges;
24
image-rendering: -webkit-crisp-edges;
25
image-rendering: pixelated;
26
image-rendering: crisp-edges;
27
}
28
29
#gameCanvas:focus {
30
outline: 0;
31
}
32
33