Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mamayaya1
GitHub Repository: mamayaya1/game
Path: blob/main/projects/madalin-stunt-cars-2/style.css
7457 views
1
.webgl-content * {
2
border: 0;
3
margin: 0;
4
padding: 0;
5
}
6
.webgl-content {
7
position: absolute;
8
top: 50%;
9
left: 50%;
10
-webkit-transform: translate(-50%, -50%);
11
transform: translate(-50%, -50%);
12
width: 100%;
13
height: 100%;
14
}
15
.webgl-content .logo,
16
.progress {
17
position: absolute;
18
left: 50%;
19
top: 50%;
20
-webkit-transform: translate(-50%, -50%);
21
transform: translate(-50%, -50%);
22
}
23
.webgl-content .logo {
24
background: url("progressLogo.Light.png") no-repeat center/contain;
25
width: 154px;
26
height: 130px;
27
}
28
.webgl-content .progress {
29
height: 18px;
30
width: 141px;
31
margin-top: 90px;
32
}
33
.webgl-content .progress .empty {
34
background: url("progressEmpty.Light.png") no-repeat right/cover;
35
float: right;
36
width: 100%;
37
height: 100%;
38
display: inline-block;
39
}
40
.webgl-content .progress .full {
41
background: url("progressFull.Light.png") no-repeat left/cover;
42
float: left;
43
width: 0%;
44
height: 100%;
45
display: inline-block;
46
}
47
.webgl-content .logo.Dark {
48
background-image: url(progressLogo.Dark.png);
49
}
50
.webgl-content .progress.Dark .empty {
51
background-image: url(progressEmpty.Dark.png);
52
}
53
.webgl-content .progress.Dark .full {
54
background-image: url(progressFull.Dark.png);
55
}
56
.webgl-content .footer {
57
margin-top: 1px;
58
height: 38px;
59
line-height: 38px;
60
font-family: Helvetica, Verdana, Arial, sans-serif;
61
font-size: 18px;
62
}
63
.webgl-content .footer .webgl-logo,
64
.title,
65
.fullscreen {
66
height: 100%;
67
display: inline-block;
68
background: transparent center no-repeat;
69
}
70
.webgl-content .footer .webgl-logo {
71
background-image: url(webgl-logo.png);
72
width: 204px;
73
float: left;
74
}
75
.webgl-content .footer .title {
76
margin-right: 10px;
77
color: #333;
78
line-height: 20px;
79
float: right;
80
}
81
.webgl-content .footer .fullscreen {
82
background-image: url(fullscreen.png);
83
width: 38px;
84
float: right;
85
}
86
.webgl-content .footer .madalingames {
87
height: 38px;
88
line-height: 20px;
89
padding: 0 10px;
90
margin: 0 1px 0 0;
91
float: left;
92
color: #333;
93
text-align: left;
94
font-size: 18px;
95
position: relative;
96
z-index: 10;
97
}
98