This style simply changes the font on linustechtips.com. Fonts can be selected from a drop down list. If selected font is not supported by the browser sans-serif will be used instead.
LTT Forum Font Changer by shadow_ray
Details
Authorshadow_ray
LicenseNo License
Categorylinustechtips
Created
Updated
Size480 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 LTT Font - 4/1/2022, 11:03:22 AM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
@preprocessor stylus
@var select fontName "Font name" ["Arial", "Comic Sans MS", "Consolas", "Impact", "Georgia", "American Typewriter"]
==/UserStyle== */
@-moz-document domain("linustechtips.com") {
:not(i) {
font-family: fontName, sans-serif !important;
}
}