-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSampleCss.css
More file actions
48 lines (41 loc) · 803 Bytes
/
Copy pathSampleCss.css
File metadata and controls
48 lines (41 loc) · 803 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
html {
width: 100%;
height: 100%;
background-color: black;
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
div {
margin: 0;
padding: 0;
}
#phaser-div {
height: 100%;
width: 100%;
}
canvas {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
/*width:100% !important;*/
/*height:100% !important;*/
border-style: dotted;
border-color: darkslategrey;
}
#font-acme {
font-family: 'Acme', sans-serif;
}
#font-berkshire {
font-family: 'Berkshire Swash', cursive;
border-radius: 5%;
}