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