mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
30 lines
515 B
HTML
30 lines
515 B
HTML
<div class="loader">
|
|
<div></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Cornerstone-04 - Tags: loader */
|
|
.loader {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 7px double;
|
|
border-color: #43cec7 transparent;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
animation: spin13213 2s linear infinite;
|
|
}
|
|
|
|
.loader div {
|
|
width: 50%;
|
|
height: 50%;
|
|
background-color: #43cec7;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
@keyframes spin13213 {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|