mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
479 B
HTML
23 lines
479 B
HTML
<div class="loader">loading...</div>
|
|
<style>
|
|
/* From Uiverse.io by omar-alghaish - Tags: loader */
|
|
@keyframes animate8345 {
|
|
0%,100% {
|
|
filter: hue-rotate(0deg);
|
|
}
|
|
|
|
50% {
|
|
filter: hue-rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.loader {
|
|
color: rgb(0, 0, 0);
|
|
background: linear-gradient(to right, #2d60ec, #3ccfda);
|
|
font-size: 30px;
|
|
-webkit-text-fill-color: transparent;
|
|
-webkit-background-clip: text;
|
|
animation: animate8345 9s linear infinite;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|