Skip to content

π–₯π–₯π–₯↔𝙁𝙁𝙁 Font-synthesis revealer by myfonj

Details

Authormyfonj

LicenseCC0

Categoryglobal

Created

Updated

Code size569 B

Code checksumc4c261f8

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Periodically forces font-synthesis: none for you to spot any "blinking" offenders.

Notes

Try on this tester

⚠ do NOT KEEP this ENABLED 24/7 ⚠

While it normally should not have any visible effect, it aggressively animates all elements (texts) so it replaces possible original animation and possibly creates considerable load, even when "invisible".

Source code

/* ==UserStyle==
@name           Font-synthesis revealer π–₯𝙁
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Peraodically turns it off, for you to see "blinking" offenders.
@author         myf
@license        CC0
==/UserStyle== */

@-moz-document url-prefix("http") {
 html:not(#a#b#c#d) {
  *,
  *::before,
  *::after,
  *::marker {
   animation: FSTN-FFS 200ms infinite alternate linear !important;
  }
 }
 @keyframes FSTN-FFS {
  from { /* whatever mess we are in */ }
  to { font-synthesis: none; }
 }
}

Reviews

No reviews yet.