Compare commits

..

No commits in common. "50e6b11b03a5ab4ade316bd4917a14430f615f28" and "da4c279c54da92e1996a81e4b2fee1d1736597a3" have entirely different histories.

2 changed files with 6 additions and 6 deletions

View file

@ -160,14 +160,14 @@ main {
.loading > p:first-child { .loading > p:first-child {
animation: 0.9s 1 linear appear; animation: 0.9s 1 linear appear;
animation-fill-mode: forwards; animation-fill-mode: forwards;
animation-delay: 0.3s; animation-delay: 0.2s;
visibility: hidden; visibility: hidden;
position: fixed position: fixed
} }
.loading > p:not(:first-child):not(:last-child) { .loading > p:not(:first-child):not(:last-child) {
animation: 0.9s 1 linear appear; animation: 0.9s 1 linear appear;
animation-delay: 1.2s; animation-delay: 1.1s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
visibility: hidden; visibility: hidden;
position: fixed position: fixed
@ -175,7 +175,7 @@ main {
.loading > p:last-child { .loading > p:last-child {
animation: 0.9s 1 linear appear; animation: 0.9s 1 linear appear;
animation-delay: 2.1s; animation-delay: 2s;
animation-fill-mode: forwards; animation-fill-mode: forwards;
visibility: hidden; visibility: hidden;
position: fixed position: fixed

View file

@ -38,7 +38,7 @@ function Load (text) {
const r = Math.floor(Math.random() * loadArray.length) const r = Math.floor(Math.random() * loadArray.length)
const loadText = loadArray[r] const loadText = loadArray[r]
loading.children[0].innerHTML = loadText + "." loading.chilren[0].innerHTML = loadText + "."
loading.children[1].innerHTML = loadText + ".." loading.chilren[1].innerHTML = loadText + ".."
loading.children[2].innerHTML = loadText + "..." loading.chilren[2].innerHTML = loadText + "..."
} }