Skip to content

Commit ff501a4

Browse files
Update index.html
1 parent 4db5ad6 commit ff501a4

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,20 @@
8787
background-color: #fff;
8888
max-width: 100%;
8989
margin: 0 auto;
90+
opacity: 0;
91+
animation: fadeInMain 1.5s ease-in-out forwards;
9092
}
93+
94+
@keyframes fadeInMain {
95+
from {
96+
opacity: 0;
97+
transform: translateY(20px);
98+
}
99+
to {
100+
opacity: 1;
101+
transform: translateY(0);
102+
}
103+
}
91104
.research-figure img {
92105
border-radius: 0; /* Set border-radius to 0 or remove it to prevent circular appearance */
93106
}

0 commit comments

Comments
 (0)