diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/index.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html index 06d00dec9..b059e69e9 100644 --- a/web/index.html +++ b/web/index.html @@ -239,6 +239,16 @@ inset:0; animation: rotate 500ms linear infinite; } + + @keyframes avatarHoverFadeIn { + from { opacity: 0; } + to { opacity: 1; } + } + + @keyframes avatarHoverFadeOut { + from { opacity: 1; } + to { opacity: 0; } + } </style> </head> |