12 lines
194 B
CSS
Raw Normal View History

2023-02-27 09:31:09 +00:00
.thingtime-hover {
animation: thingtime-hover 1.5s ease-in-out infinite alternate;
2023-02-27 08:55:07 +00:00
}
2023-02-27 09:31:09 +00:00
@keyframes thingtime-hover {
from {
transform: scale(1);
2023-02-27 08:55:07 +00:00
}
2023-02-27 09:31:09 +00:00
to {
transform: scale(1.1);
2023-02-27 08:55:07 +00:00
}
2023-02-27 09:31:09 +00:00
}