sillyspace/docs/skin-examples/spinning-round-profile-photo.html

19 lines
354 B
HTML
Raw Normal View History

2026-06-04 02:59:03 +00:00
<!--
Original SpaceHey layout credit:
fini hoover :3
https://layouts.spacehey.com/layout?id=31074
-->
<style>
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(-360deg); }
}
[data-skin-part="photo"] img,
[data-skin-part="photo"] .profile-placeholder {
animation: spin 7s infinite linear;
border-radius: 50%;
}
</style>