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
68 lines (61 loc) · 1.14 KB
/
main.css
File metadata and controls
68 lines (61 loc) · 1.14 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
body { margin: 0; background:black;}
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-image: url("../../assets/images/back.png");
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: cover; /* Resize the background image to cover the entire container */
}
.loadingBar{
margin: 0;
position: absolute;
top: 30%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.loadingText{
margin-top:200px;
}
.inv_box{
border:1px solid black;
width:60px;
height:60px;
}
.githubRibbon{
position: absolute; top: 0; right: 0; border: 0;
}