-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
2,816 additions
and
1,888 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.webp filter=lfs diff=lfs merge=lfs -text | ||
.avif filter=lfs diff=lfs merge=lfs -text | ||
.gif filter=lfs diff=lfs merge=lfs -text | ||
*.otf filter=lfs diff=lfs merge=lfs -text | ||
*.png filter=lfs diff=lfs merge=lfs -text | ||
*.pdf filter=lfs diff=lfs merge=lfs -text | ||
*.woff2 filter=lfs diff=lfs merge=lfs -text | ||
*.woff filter=lfs diff=lfs merge=lfs -text | ||
*.ttf filter=lfs diff=lfs merge=lfs -text | ||
*.zip filter=lfs diff=lfs merge=lfs -text | ||
*.psd filter=lfs diff=lfs merge=lfs -text | ||
*.jpg filter=lfs diff=lfs merge=lfs -text | ||
*.jpeg filter=lfs diff=lfs merge=lfs -text | ||
*.splinecode filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export type ClientState = | ||
export type ClientStatus = | ||
| "idle" | ||
| "initializing" | ||
| "downloadStarted" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<div class="absolute inset-x-0 h-svh flex items-center justify-center overflow-hidden"> | ||
<div class="ball border-union-accent-500"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</div> | ||
</div> | ||
|
||
<style> | ||
@keyframes rotate { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
.ball span{ | ||
width: 0; | ||
height: 0; | ||
border-radius: 50%; | ||
display: block; | ||
transition: all 2s ease-in-out; | ||
transform:translate(-50%,-50%); | ||
position:absolute; | ||
border: 1px solid transparent; | ||
animation: ballsAnimationBigger 6s infinite linear; | ||
} | ||
@keyframes ballsAnimationBigger { | ||
0% { | ||
border-color: transparent; | ||
opacity:0; | ||
} | ||
10% { | ||
border-color: inherit; | ||
} | ||
80%{ | ||
border-color: transparent; | ||
opacity:1; | ||
} | ||
100% { | ||
width: 250vh; | ||
height: 250vh; | ||
} | ||
} | ||
.ball span:nth-child(2){ | ||
animation-delay: 1s; | ||
} | ||
.ball span:nth-child(3){ | ||
animation-delay: 2s; | ||
} | ||
.ball span:nth-child(4){ | ||
animation-delay: 3s; | ||
} | ||
.ball span:nth-child(5){ | ||
animation-delay: 4s; | ||
} | ||
.ball span:nth-child(6){ | ||
animation-delay: 5s; | ||
} | ||
</style> |
Oops, something went wrong.