mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
29 lines
534 B
HTML
29 lines
534 B
HTML
<div class="code-loader">
|
|
<span>{</span><span>}</span>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by Pradeepsaranbishnoi - Tags: loader */
|
|
.code-loader {
|
|
color: #fff;
|
|
font-family: Consolas, Menlo, Monaco, monospace;
|
|
font-weight: bold;
|
|
font-size: 100px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.code-loader span {
|
|
display: inline-block;
|
|
animation: pulse_414 0.4s alternate infinite ease-in-out;
|
|
}
|
|
|
|
.code-loader span:nth-child(odd) {
|
|
animation-delay: 0.4s;
|
|
}
|
|
|
|
@keyframes pulse_414 {
|
|
to {
|
|
transform: scale(0.8);
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
</style>
|