mirror of
https://github.com/illian64/llm-translate.git
synced 2026-07-16 20:58:41 +00:00
* book translate * files processing * files processing * files processing * files processing --------- Co-authored-by: APodoinikov <APodoynikov@detmir.ru>
21 lines
No EOL
364 B
CSS
21 lines
No EOL
364 B
CSS
.loader {
|
|
border: 4px solid #f3f3f3; /* Light grey */
|
|
border-top: 4px solid #2a82b6; /* Blue */
|
|
border-radius: 50%;
|
|
width: 16px;
|
|
height: 16px;
|
|
animation: spin 2s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.text-bold {
|
|
font-weight: bold;
|
|
} |