hadadrjt's picture
SearchGPT: Initial stable release (RS1).
4359d28
raw
history blame contribute delete
582 Bytes
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
def spinner():
return """
<style>
.spinner {
display:inline-block;
width:9px;
height:9px;
border:2px solid #ccc;
border-top:2px solid #333;
border-radius:50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
<div class="spinner"></div>
"""