forked from michaljaz/webmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (51 loc) · 882 Bytes
/
main.css
File metadata and controls
52 lines (51 loc) · 882 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
49
50
51
52
body { margin: 0; }
canvas {
display: block;
width:100%;
height:100%;
position:fixed;
top:0px;
left:0px
}
.cross{
z-index:9;
position:fixed;
top:50%;
left:50%;
margin-top:-15px;
margin-left:-15px;
}
.gameMenu{
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width:800px;
height:400px;
background:#303030;
z-index:10;
color:white;
}
.initLoading{
z-index:11;
position:fixed;
top:0px;
left:0px;
width:100%;
height:100%;
background-size: 100px;
background-repeat: repeat;
background-image:
url(../../assets/images/dirt.jpg);
box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .7);
}
.loadingBar{
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}