hero animations

This commit is contained in:
gurusabarish
2022-03-23 06:04:01 +05:30
parent b611c5f102
commit e3fb3dc6be
4 changed files with 63 additions and 3 deletions
+15
View File
@@ -1,3 +1,18 @@
@keyframes fade-up {
0% {
transform: translateY(-10px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
header .navbar {
animation: fade-up 0.5s ease-in;
}
header .navbar .navbar-nav a {
color: var(--text-color) !important;
}