update to add widget section

This commit is contained in:
MCHost
2025-07-03 02:51:10 -04:00
parent 827799b7cb
commit c464f3b3b5
5 changed files with 180 additions and 34 deletions

View File

@ -59,7 +59,32 @@
animation: spin 1s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Add fade-out animation for the banner alert */
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
#copyAlert {
transition: opacity 0.3s ease-out;
}
#copyAlert.hidden {
opacity: 0;
}