Replace the default font on F-List with a local font of your choosing.
F-List Custom Font by sierramontana
Details
Authorsierramontana
LicenseWTFPL
Categoryf-list
Created
Updated
Size859 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Replaces the font on F-list with a local font of the user's choosing. Just specify the family in the setting. Includes a setting for new font sizes. Font family names don't need quotes, even if they have spaces. Will default to your browser's fallback font if it doesn't recognize the name of the font, or the font may not actually be installed.
Note: This is not set up to work with Google Fonts. Install the font on your computer like your grandpa had to.
Source code
/* ==UserStyle==
@name F-list Custom Font
@namespace sierramontana
@version 1
@description Replace the default font on F-List with a local font of your choosing
@author Sierra Montana
@license WTFPL
@var text replacementFont "Custom font-family:" "Inter"
@var number sizeList "Override F-List font size:" [12,0,180,1,'px']
@var number sizeChat "Override F-Chat font size:" [14,0,180,1,'px']
==/UserStyle== */
@-moz-document url-prefix("https://www.f-list.net/") {
body,
td,
.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-family: var(--replacementFont);
}
body,td,.ui-widget{
font-size: var(--sizeList);
}
#chatView, .btn, .form-control, .custom-select {
font-size: var(--sizeChat);
}
}