19 lines
354 B
HTML
19 lines
354 B
HTML
|
|
<!--
|
||
|
|
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>
|