-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: loader shown on init, icon set is new
- Loading branch information
1 parent
77de97d
commit 6c38f8f
Showing
7 changed files
with
122 additions
and
28 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
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,58 @@ | ||
<div class="loader"></div> | ||
|
||
<style scoped> | ||
.loader { | ||
animation: l5 2s infinite; | ||
aspect-ratio: 1; | ||
background: radial-gradient(farthest-side, #ed303c 94%, #0000), | ||
radial-gradient(farthest-side, #3b8183 94%, #0000), | ||
radial-gradient(farthest-side, #fad089 94%, #0000), | ||
radial-gradient(farthest-side, #ff9c5b 94%, #0000), #ed303c; | ||
background-repeat: no-repeat; | ||
background-size: 105% 105%; | ||
border-radius: 50%; | ||
width: 40px; | ||
} | ||
@keyframes l5 { | ||
0% { | ||
background-position: | ||
50% -50px, | ||
-40px 50%, | ||
50% calc(100% + 50px), | ||
calc(100% + 50px) 50%; | ||
} | ||
20%, | ||
25% { | ||
background-position: | ||
50% -50px, | ||
-50px 50%, | ||
50% calc(100% + 50px), | ||
50% 50%; | ||
} | ||
45%, | ||
50% { | ||
background-position: | ||
50% -50px, | ||
-50px 50%, | ||
50% 50%, | ||
50% 50%; | ||
} | ||
75%, | ||
75% { | ||
background-position: | ||
50% -50px, | ||
50% 50%, | ||
50% 50%, | ||
50% 50%; | ||
} | ||
95%, | ||
100% { | ||
background-position: | ||
50% 50%, | ||
50% 50%, | ||
50% 50%, | ||
50% 50%; | ||
} | ||
} | ||
</style> |
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
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