Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Incognito-old
Path: blob/main/static/src/gs/public/flappybird/styles.css
1324 views
1
html {
2
height: 100%;
3
background-color: #1d292c;
4
}
5
body {
6
margin: 0;
7
max-height: 100%;
8
height: 100%;
9
overflow: hidden;
10
background-color: #1d292c;
11
font-family: Helvetica, arial, sans-serif;
12
position: relative;
13
width: 100%;
14
15
-webkit-tap-highlight-color: transparent;
16
}
17
18
#application-canvas {
19
display: block;
20
position: absolute;
21
top: 0;
22
left: 0;
23
right: 0;
24
bottom: 0;
25
}
26
#application-canvas.fill-mode-NONE {
27
margin: auto;
28
}
29
#application-canvas.fill-mode-KEEP_ASPECT {
30
width: 100%;
31
height: auto;
32
margin: 0;
33
}
34
#application-canvas.fill-mode-FILL_WINDOW {
35
width: 100%;
36
height: 100%;
37
margin: 0;
38
}
39
40
canvas:focus {
41
outline: none;
42
}
43
44