summaryrefslogtreecommitdiff
path: root/.config/firefox/userContent.css
blob: ecece67f5e2e4156979620ccc81d81ec05b79223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* To enable:
 * - set toolkit.legacyUserProfileCustomizations.stylesheets
 * - move this file to $profiledir/chrome
 *
 * References:
 * https://web.archive.org/web/20211023121642/https://kb.mozillazine.org/UserContent.css
 * https://developer.mozilla.org/en-US/docs/Web/CSS/@document
 */

@-moz-document domain(danluu.com) {
    body {
        max-width: 40em;
        margin: auto;
    }
}

@-moz-document domain(martinfowler.com) {
    body {
        max-width: fit-content;
        margin: auto !important;
    }
}