upload files

This commit is contained in:
sbinsalman
2025-11-25 11:11:42 -07:00
commit 36f9a5e69b
41 changed files with 1971 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/* Classic Loader */
.classic-loader {
width: 65px;
height: 65px;
border-radius: 50%;
display: inline-block;
border-top: 3px solid #FFF;
border-right: 3px solid transparent;
box-sizing: border-box;
animation: classicRotation 0.9s linear infinite;
}
@keyframes classicRotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}