Blur's Private info and shows on hover
Blur Private info by Htbatmann
Details
AuthorHtbatmann
LicenseNo License
Categoryhttps://antcpt.com/score_detector/
Created
Updated
Size547 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Blur Elements on antcpt.com
@namespace http://userstyles.org
@version 1.0
@description Blur specific elements on https://antcpt.com/score_detector/ and show them on hover
==/UserStyle== */
@-moz-document domain("antcpt.com") {
.list-group .list-group-item,
.text-warning {
filter: blur(8px);
transition: filter 0.3s ease;
user-select: none;
}
.list-group .list-group-item:hover,
.text-warning:hover {
filter: blur(0);
user-select: text;
}
}