From e84c69f8b94c16420342a85974ddc3da5801b7b7 Mon Sep 17 00:00:00 2001 From: jaywcjlove <398188662@qq.com> Date: Thu, 3 Nov 2022 01:20:38 +0800 Subject: [PATCH] website: update style. --- scripts/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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;