melhorias no design

This commit is contained in:
2025-06-10 13:19:00 -03:00
parent 83ff2131f7
commit b141218adf
17 changed files with 506 additions and 293 deletions

View File

@@ -26,6 +26,51 @@ body, html {
animation: fadeIn 0.3s ease-in-out forwards;
}
/* New animations for DataStatsPage */
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slide-up {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-left {
from { opacity: 0; transform: translateX(-20px); }
to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in {
animation: fade-in 0.8s ease-out forwards;
}
.animate-slide-up {
animation: slide-up 0.6s ease-out forwards;
}
.animate-fade-in-up {
animation: fade-in-up 0.8s ease-out forwards;
}
.animate-slide-in-left {
animation: slide-in-left 0.6s ease-out forwards;
}
.delay-100 {
animation-delay: 0.1s;
}
.delay-200 {
animation-delay: 0.2s;
}
/* Custom scrollbar for search results */
.custom-scrollbar::-webkit-scrollbar {
width: 6px;