added terminal design and tech stack

This commit is contained in:
fgrreloaded
2025-02-16 14:56:18 +05:30
parent e5badb108c
commit d31b03bf77
8 changed files with 358 additions and 8 deletions

View File

@@ -36,3 +36,19 @@
.shiny-text.disabled {
animation: none;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeIn {
opacity: 0;
animation: fadeInUp 0.5s ease-out forwards;
}