- Joined
- Nov 7, 2024
Let's create a custom CSS style one post at a time.
You'll need something like Stylus to use custom CSS on the site, I won't explain how to set it up because if you understand this thread you should be able to.
Firefox: https://addons.mozilla.org/en-US/firefox/addon/styl-us/
Chromium: https://chromewebstore.google.com/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne
Rules:
Now avatars are constantly rotating!
You'll need something like Stylus to use custom CSS on the site, I won't explain how to set it up because if you understand this thread you should be able to.
Firefox: https://addons.mozilla.org/en-US/firefox/addon/styl-us/
Chromium: https://chromewebstore.google.com/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne
Rules:
- You can add one new CSS rule per post
- ...and anything that rule depends on, like keyframes.
- You can alter rules created by other users before you.
- Nothing that fundamentally renders the site unusable. Ugly is fine, difficult to use is fine, but don't like black out the whole page.
- Describe the change/if possible include a screenshot.
CSS:
.message-avatar-wrapper {
animation-name: spin;
animation-duration: 4000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(359deg);}
}
Now avatars are constantly rotating!