We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6796ac1 commit 898b02aCopy full SHA for 898b02a
publications.html
@@ -79,8 +79,21 @@
79
background-color: #fff;
80
max-width: 100%;
81
margin: 0 auto;
82
+ opacity: 0;
83
+ animation: fadeInMain 1.5s ease-in-out forwards;
84
}
85
86
+@keyframes fadeInMain {
87
+ from {
88
89
+ transform: translateY(20px);
90
+ }
91
+ to {
92
+ opacity: 1;
93
+ transform: translateY(0);
94
95
+}
96
+
97
section {
98
margin-bottom: 20px; /* Adjust this value to control the gap between sections */
99
0 commit comments