Make all things rotate :D
Rotate Everything by tuomashatakka
Details
Authortuomashatakka
LicenseFFA
Category*
Created
Updated
Size603 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Active when a dark theme is enabled. To disable, enable a light theme.
Source code
/* ==UserStyle==
@name Rotate Everything
@version 20240814.08.18
@namespace https://userstyles.world/user/Tuomas Hatakka
@description Make all things rotate!!!!! :D
@author Tuomas Hatakka
@license FFA
==/UserStyle== */
@-moz-document regexp(".*") {
@keyframes rot {
from { transform: scaleX(100%) rotate(0deg) }
to { transform: scaleX(100%) rotate(360deg) }
}
html, body {
animation: none !important
}
* {
animation: rot reverse 20s infinite linear;
transform-origin: 50px center;
overflow: visible !important;
}
}