Skip to content

Commit 6796ac1

Browse files
Update talks.html
1 parent 9188e79 commit 6796ac1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

talks.html

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

0 commit comments

Comments
 (0)