mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
40 lines
706 B
HTML
40 lines
706 B
HTML
<div class="container">
|
|
<div class="loader"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by NlghtM4re - Tags: green, progress, progress bar, loader, shadow, download, neon, bars */
|
|
.loader {
|
|
width: 60%;
|
|
height: 10px;
|
|
border-radius: 2px;
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
position: absolute;
|
|
}
|
|
|
|
.loader::before {
|
|
content: "";
|
|
position: absolute;
|
|
background-color: rgb(9, 188, 9);
|
|
width: 0%;
|
|
height: 100%;
|
|
border-radius: 2px;
|
|
animation: load 3.5s ease-in-out infinite;
|
|
box-shadow: rgb(9, 188, 9) 0px 2px 29px 0px;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
@keyframes load {
|
|
50% {
|
|
width: 100%;
|
|
}
|
|
|
|
100% {
|
|
right: 0;
|
|
left: unset;
|
|
}
|
|
}
|
|
</style>
|