forked from SchoolHACKr/1v1lolol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (77 loc) · 1.67 KB
/
style.css
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
background: #002876db;
}
.unityarea * {
border: 0;
margin: 0;
padding: 0
}
.unityarea {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.unityarea .logo, .progress {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.unityarea .logo {
background: url('../images/progressLogo.Light.png') no-repeat center / contain;
width: 154px;
height: 130px;
}
.unityarea .progress {
height: 18px;
width: 141px;
margin-top: 90px;
}
.unityarea .progress .empty {
background: url('../images/progressEmpty.Light.png') no-repeat right / cover;
float: right;
width: 100%;
height: 100%;
display: inline-block;
}
.unityarea .progress .full {
background: url('../images/progressFull.Light.png') no-repeat left / cover;
float: left;
width: 0%;
height: 100%;
display: inline-block;
}
.unityarea .footer {
margin-top: 5px;
height: 38px;
line-height: 38px;
font-family: Helvetica, Verdana, Arial, sans-serif;
font-size: 18px;
}
.unityarea .footer .webgl-logo, .title, .fullscreen {
height: 100%;
display: inline-block;
background: transparent center no-repeat;
}
.unityarea .footer .webgl-logo {
width: 204px;
float: left;
}
.unityarea .footer .title {
margin-right: 10px;
float: right;
}
.unityarea .footer .fullscreen {
background-image: url('../images/fullscreen.png');
width: 38px;
float: right;
}
#unityarea {
width: 100vw;
height: 100vh;
margin: auto;
overflow: hidden;
}