Merge pull request #869 from majick/chat-delete-spin
Proposed: Spinning cute skull when hovering PastChat_cross
This commit is contained in:
commit
e5a678fb2d
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue