diff --git a/_pages/publications.md b/_pages/publications.md index 2b53fcd..c0251ac 100644 --- a/_pages/publications.md +++ b/_pages/publications.md @@ -16,6 +16,9 @@ nav_order: 6 \ No newline at end of file diff --git a/_sass/_base.scss b/_sass/_base.scss index 185f59f..6423bb5 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -483,7 +483,9 @@ footer.sticky-bottom { .publications .item { display: none; - transition: opacity 2.5s ease-in-out; + animation: fadeInAnimation ease 0.5s; + animation-iteration-count: 1; + animation-fill-mode: forwards; } .publications .container { @@ -573,13 +575,26 @@ footer.sticky-bottom { color: #ffffff; background-color: var(--global-theme-color); box-shadow: none; + display: none; transition: background-color 0.3s ease; + animation: fadeInAnimation ease 0.5s; + animation-iteration-count: 1; + animation-fill-mode: forwards; } .publications .show-more:hover { background-color: var(--global-hover-color); } +@keyframes fadeInAnimation { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + // Rouge Color Customization figure.highlight { margin: 0 0 1rem;