Sets the font for all elements of the website to JetBrains Mono. Useful for some Android devices where the monospaced font has no bold variant.
Plain Text Sports: use JetBrains Mono font by hazardaj_nombroj

Details
Authorhazardaj_nombroj
LicenseCC0
Categoryplaintextsports
Created
Updated
Code size619 B
Code checksum83af8406
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Uses Google Fonts to import the JetBrains Mono variable font.
Source code
/* ==UserStyle==
@name Plain Text Sports: use JetBrains Mono font
@version 20240227.10.53
@namespace ?
@description Sets the font for all elements of the website to JetBrains Mono. Useful for some Android devices where the monospaced font has no bold variant (and bolded letters end up wider than normal ones).
@license CC0
==/UserStyle== */
@-moz-document domain("plaintextsports.com") {
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
body {
font-family: "JetBrains Mono", monospace !important;
}
}