NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name boards.straightdope.com serif font
// @version 1.2.0
// @license 0BSD
// @namespace http://tampermonkey.net/
// @description Change the SDMB font to serif
// @author Chris Barts
// @match https://boards.straightdope.com/*
// @grant none
// @run-at document-start
// @require https://openuserjs.org/src/libs/BigTSDMB/setStyle.js
// ==/UserScript==
/* jshint esversion: 6 *//* global setStyle */
setStyle(`
/* Change font to Serif */
:root {
--font-family: serif;
--heading-font-family: serif;
}
`);