make it spin again
You Spin Me Right Round BYOBby Right Round by simplyzalp
Details
Authorsimplyzalp
LicenseNo License
Categorysomethingawful
Created
Updated
Size720 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
this applies to all forums when active! there's no way to fix that with just css, sorry :(
Source code
/* ==UserStyle==
@name You Spin Me Right Round BYOBby Right Round
@version 20210825.23.54
@namespace userstyles.world/user/simplyzalp
@description make it spin again
@author simplyzalp
@license No License
==/UserStyle== */
@-moz-document domain("forums.somethingawful.com") {
dd.title img,
p.signature img,
p.signature video {
-webkit-animation:spin 6000s linear infinite;
-moz-animation:spin 6000s linear infinite;
animation:spin 6000s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
}