mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
18 lines
339 B
HTML
18 lines
339 B
HTML
<div class="loader"></div>
|
|
<style>
|
|
/* From Uiverse.io by Cornerstone-04 - Tags: loader */
|
|
.loader {
|
|
width: 60px;
|
|
height: 60px;
|
|
border: 10px solid #1cd42550;
|
|
border-top-color: #1cd425;
|
|
animation: spin013151 1s linear infinite;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
@keyframes spin013151 {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|