A simple theme for Roblox that blurs your Robux amount until you hover over it.
BlurRobux for Roblox by christiankek
Mirrored from https://christiankek.github.io/RobloxThemes/BlurRobux/BlurRobux.user.css
Details
Authorchristiankek
LicenseCreative Commons Attribution-NonCommercial 4.0 International
Categoryroblox
Created
Updated
Size873 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Put issues on the github issues page: https://github.com/christiankek/RobloxThemes/issues
V1.3
• Fixed Robux not blurred in the buy confirmation page.
Source code
@-moz-document domain("roblox.com") {
/* ==UserStyle==
@name BlurRobux
@description A simple theme that blurs your Robux amount until you hover over it.
@author Overimagine/christiankek
@namespace github.com/christiankek/RobloxThemes/tree/main/BlurRobux
@version 1.4
==/UserStyle== */
/* blur robux amount in the top right */
#nav-robux-amount {
--props: 0.1s linear;
filter: blur(6px);
clip-path: circle(100% at center);
transition: clip-path var(--props), filter var(--props);
}
#nav-robux-amount:hover {
filter: none;
clip-path: none;
}
.modal-footer-center {
--props: 0.1s linear;
filter: blur(6px);
clip-path: circle(100% at center);
transition: clip-path var(--props), filter var(--props);
}
.modal-footer-center:hover {
filter: none;
clip-path: none;
}
}