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