Makes the cheezit in the corner spin (or whatever image is in its place)
A similar style I made: https://userstyles.org/styles/177167/spinning-loading-animation-for-roblox
Imported and mirrored from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/177168.user.css
Authorcrax
LicenseCC-BY-NC-SA-4.0
Categoryroblox
Created
Updated
Size685 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Makes the cheezit in the corner spin (or whatever image is in its place)
A similar style I made: https://userstyles.org/styles/177167/spinning-loading-animation-for-roblox
Should work on both themes, and with all image replacement styles.
/* ==UserStyle==
@name Spinning icon for Roblox
@namespace USO Archive
@author CraX_e621
@description `Makes the cheezit in the corner spin (or whatever image is in its place)A similar style I made: https://userstyles.org/styles/177167/spinning-loading-animation-for-roblox`
@version 20191112.12.30
@license CC-BY-NC-SA-4.0
@preprocessor uso
==/UserStyle== */
@-moz-document domain("roblox.com") {
@keyframes spin {
from {
transform: rotate(0deg)
}
to {
transform: rotate(360deg)
}
}
.icon-logo-r,
.light-theme .icon-logo-r,
.dark-theme .icon-logo-r {
animation: spin 4s linear infinite;
}
}