Skip to content

BlurRobux for Roblox by christiankek

Mirrored from https://christiankek.github.io/RobloxThemes/BlurRobux/BlurRobux.user.css

Screenshot of BlurRobux for Roblox

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

A simple theme for Roblox that blurs your Robux amount until you hover over it.

Notes

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;
}
}

Reviews

No reviews yet.