Spaces:
Running
Running
Commit
·
3b2815a
1
Parent(s):
45aa5b6
init
Browse files- TemplateData/favicon.ico +0 -0
- TemplateData/fullscreen-button.png +0 -0
- TemplateData/style.css +105 -0
TemplateData/favicon.ico
ADDED
|
TemplateData/fullscreen-button.png
ADDED
![]() |
TemplateData/style.css
ADDED
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html {
|
2 |
+
box-sizing: border-box;
|
3 |
+
}
|
4 |
+
*, *:before, *:after {
|
5 |
+
box-sizing: inherit;
|
6 |
+
}
|
7 |
+
html, body {
|
8 |
+
height: 100%;
|
9 |
+
}
|
10 |
+
canvas {
|
11 |
+
display: block;
|
12 |
+
}
|
13 |
+
body {
|
14 |
+
margin: 0;
|
15 |
+
}
|
16 |
+
#unity-container {
|
17 |
+
width: 100%;
|
18 |
+
height: 100%;
|
19 |
+
}
|
20 |
+
#unity-canvas {
|
21 |
+
width: 100%;
|
22 |
+
height: 100%;
|
23 |
+
background: #231F20;
|
24 |
+
}
|
25 |
+
#loading-cover {
|
26 |
+
position: absolute;
|
27 |
+
top: 0;
|
28 |
+
left: 0;
|
29 |
+
width: 100%;
|
30 |
+
height: 100%;
|
31 |
+
display: flex;
|
32 |
+
justify-content: center;
|
33 |
+
align-items: center;
|
34 |
+
}
|
35 |
+
#unity-loading-bar {
|
36 |
+
flex: 1 1 auto;
|
37 |
+
display: flex;
|
38 |
+
flex-direction: column;
|
39 |
+
justify-content: center;
|
40 |
+
align-items: center;
|
41 |
+
}
|
42 |
+
#unity-logo {
|
43 |
+
text-align: center;
|
44 |
+
}
|
45 |
+
#unity-logo img {
|
46 |
+
max-width: 80%;
|
47 |
+
}
|
48 |
+
#unity-progress-bar-empty {
|
49 |
+
width: 80%;
|
50 |
+
height: 24px;
|
51 |
+
margin: 10px 20px 20px 10px;
|
52 |
+
text-align: left;
|
53 |
+
border: 1px solid white;
|
54 |
+
padding: 2px;
|
55 |
+
}
|
56 |
+
#unity-progress-bar-full {
|
57 |
+
width: 0%;
|
58 |
+
height: 100%;
|
59 |
+
background: #ffd21e;
|
60 |
+
}
|
61 |
+
.light #unity-progress-bar-empty {
|
62 |
+
border-color: black;
|
63 |
+
}
|
64 |
+
.light #unity-progress-bar-full {
|
65 |
+
background: black;
|
66 |
+
}
|
67 |
+
|
68 |
+
#unity-fullscreen-button {
|
69 |
+
position: absolute;
|
70 |
+
right: 10px;
|
71 |
+
bottom: 10px;
|
72 |
+
width: 38px;
|
73 |
+
height: 38px;
|
74 |
+
background: url('fullscreen-button.png') no-repeat center;
|
75 |
+
background-size: contain;
|
76 |
+
}
|
77 |
+
|
78 |
+
.spinner,
|
79 |
+
.spinner:after {
|
80 |
+
border-radius: 50%;
|
81 |
+
width: 5em;
|
82 |
+
height: 5em;
|
83 |
+
}
|
84 |
+
.spinner {
|
85 |
+
margin: 10px;
|
86 |
+
font-size: 10px;
|
87 |
+
position: relative;
|
88 |
+
text-indent: -9999em;
|
89 |
+
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
|
90 |
+
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
|
91 |
+
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
|
92 |
+
border-left: 1.1em solid #ffffff;
|
93 |
+
transform: translateZ(0);
|
94 |
+
animation: spinner-spin 1.1s infinite linear;
|
95 |
+
}
|
96 |
+
@keyframes spinner-spin {
|
97 |
+
0% {
|
98 |
+
transform: rotate(0deg);
|
99 |
+
}
|
100 |
+
100% {
|
101 |
+
transform: rotate(360deg);
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
|