We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9188e79 commit 6796ac1Copy full SHA for 6796ac1
talks.html
@@ -86,7 +86,20 @@
86
background-color: #fff;
87
max-width: 100%;
88
margin: 0 auto;
89
+ opacity: 0;
90
+ animation: fadeInMain 1.5s ease-in-out forwards;
91
}
92
+
93
+@keyframes fadeInMain {
94
+ from {
95
96
+ transform: translateY(20px);
97
+ }
98
+ to {
99
+ opacity: 1;
100
+ transform: translateY(0);
101
102
+}
103
.research-figure img {
104
border-radius: 0; /* Set border-radius to 0 or remove it to prevent circular appearance */
105
0 commit comments