diff --git a/scripts/style.css b/scripts/style.css index c5f200c..468c7cb 100644 --- a/scripts/style.css +++ b/scripts/style.css @@ -379,7 +379,20 @@ body.home .max-container a.home-button:visited:hover { } .home-card a.contributing:hover:after { color: var(--color-fg-muted); + animation: contributing-move 0.1s infinite; } +@keyframes contributing-move { + 0% { + transform: translate(0px, 0px); + } + 50% { + transform: translate(0px, -3px); + } + 100% { + transform: translate(0px, 0px); + } +} + .home-card a.tag::before { content: attr(data-lang); display: block;