update some build/telemetry stuff
This commit is contained in:
parent
51f9f820d8
commit
0a67ccb040
25 changed files with 336 additions and 217 deletions
|
@ -11,6 +11,54 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
#loading {
|
||||
display: none;
|
||||
z-index: 110;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
font-family: 'Fira Code', 'Fira Mono', monospace;
|
||||
|
||||
&.loading-active {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
& #loading-text {
|
||||
background-color: black;
|
||||
padding: 1em;
|
||||
border-radius: 8px;
|
||||
max-width: 80vw;
|
||||
word-wrap: break-word;
|
||||
|
||||
& #stage1-error {
|
||||
opacity: 0;
|
||||
animation: opacity_0_1 1ms 5s forwards 1;
|
||||
color: orange;
|
||||
}
|
||||
|
||||
& #stage1-error2 {
|
||||
opacity: 0;
|
||||
animation: opacity_0_1 1ms 10s forwards 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes opacity_0_1 {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
nav {
|
||||
position: fixed;
|
||||
z-index: 10;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue