Skip to content

marugoto-online.jp romaji blur by kamnxt

Details

Authorkamnxt

LicenseCC0

Categorymarugoto-online.p

Created

Updated

Size497 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Blurs romaji, revealing it when clicked and held.

Notes

Was annoyed at either having to enable or disable all romaji (and it enabling itself by default after logging in sometimes...) so I wrote this tiny userstyle to blur it enough to make it unreadable, and allow for showing it by activating the element (clicking and holding)

Source code

/* ==UserStyle==
@name         marugoto-online.jp romaji blur
@version      20221130.09.02
@namespace    userstyles.world/user/kamnxt
@description  Blurs romaji, revealing it when clicked and held.
@author       kamnxt
@license      CC0
==/UserStyle== */

@-moz-document domain("marugoto-online.jp") {
.js-text-roma-ji,
.text-roman,
.js-text-roman {
    filter: blur(0.25em);
    transition: filter 0.5s;
}
.js-text-roma-ji:active,
.text-roman:active,
.js-text-roman:active {
    filter: none;
}
}

Reviews

No reviews yet.