Merge pull request #869 from majick/chat-delete-spin

Proposed: Spinning cute skull when hovering PastChat_cross
This commit is contained in:
Cohee 2023-08-03 18:17:23 +03:00 committed by GitHub
commit e5a678fb2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -3040,9 +3040,22 @@ h5 {
opacity: 0.4;
}
.PastChat_cross:hover {
color: red;
filter: drop-shadow(0 0 2px red);
-webkit-animation: infinite-spinning 1s ease-out 0s infinite normal;
animation: infinite-spinning 1s ease-out 0s infinite normal;
}
/* HEINOUS */
@keyframes infinite-spinning {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#export_character_div {