-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
147 lines (118 loc) · 2.16 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
* {
padding: 0;
margin: 0;
}
body {
height: 100vh;
width: 100vw;
text-align: center;
overflow: hidden;
}
#unity-loading-bar {
width: 30%;
top: 35%;
height: 1.5%;
background-color: #00000000;
border: 1px solid #ffffff;
border-radius: 10px;
overflow: hidden;
/* esto es importante para esconder la parte de la bola que sobrepasa el ancho de la barra */
}
#unity-canvas {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color: #000000;
}
#unity-progress-bar {
position: absolute;
left: 0;
width: 0%;
/* debe ser igual al height */
height: 100%;
/* debe ser igual al width */
background-color: #ffffff;
border-radius: 0%;
/* para hacerlo redondo */
}
.footer__container {
position: absolute;
display: flex;
justify-content: center;
bottom: 0;
width: 100%;
}
#footer__copyright img {
bottom: 0;
width: 35%;
opacity: 0.5;
}
#ilumine-AI-tittle-logo,
#bottom-image {
position: absolute;
bottom: 0px;
width: 100%;
max-width: 150px;
}
#ilumine-AI-tittle-logo {
left: 10px;
}
#bottom-image {
right: 10px;
}
#ilumine-AI-tittle-logo img {
width: 100%;
}
#bottom-image img {
width: 100%;
}
small {
color: rgba(255, 255, 255, 0.411);
}
.container {
max-width: 800px;
max-height: 800px;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#unity-loading-bar {
position: absolute;
z-index: 1000;
}
#instaVerse-logo {
display: flex;
width: 40%;
margin: auto;
margin-bottom: 15%;
}
#cache-error-panel {
width: 50%;
}
#cache-error-panel img {
display: flex;
width: 100%;
}
#pc-version {
position: fixed;
bottom: -65%;
width: 10%;
display: flex;
justify-content: center;
align-items: center;
transform: scale(0.5);
/* puedes ajustar el valor de la escala como lo necesites */
}
#instaVerse-logo img {
display: flex;
width: 100%;
}