mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
58 lines
952 B
HTML
58 lines
952 B
HTML
<div class="container">
|
|
<div class="folder">
|
|
<div class="top"></div>
|
|
<div class="bottom"></div>
|
|
</div>
|
|
<div class="title">getting files ready...</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by TheAbieza - Tags: flat design, loading, loader, vscode, floating, box-shadow */
|
|
.container {
|
|
width: fit-content;
|
|
gap: 10px
|
|
}
|
|
|
|
.folder {
|
|
width: min-content;
|
|
margin: auto;
|
|
animation: float 2s infinite linear;
|
|
}
|
|
|
|
.folder .top {
|
|
background-color: #FF8F56;
|
|
width: 60px;
|
|
height: 12px;
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.folder .bottom {
|
|
background-color: #FFCE63;
|
|
width: 100px;
|
|
height: 70px;
|
|
box-shadow: 5px 5px 0 0 #283149;
|
|
border-top-right-radius: 8px;
|
|
}
|
|
|
|
.container .title {
|
|
font-size: .9em;
|
|
color: #283149;
|
|
text-align: center;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
@keyframes float {
|
|
0% {
|
|
transform: translatey(0px);
|
|
}
|
|
|
|
50% {
|
|
transform: translatey(-25px);
|
|
}
|
|
|
|
100% {
|
|
transform: translatey(0px);
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|