diff options
| -rw-r--r-- | .config/firefox/userContent.css | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/.config/firefox/userContent.css b/.config/firefox/userContent.css index 83f124a..5b69ef1 100644 --- a/.config/firefox/userContent.css +++ b/.config/firefox/userContent.css @@ -67,6 +67,13 @@ } } +@-moz-document domain(emacswiki.org) { + .content.browse { + max-width: 70ch; + margin: auto; + } +} + @-moz-document domain(en.wikipedia.org) { body { margin: auto !important; @@ -84,7 +91,7 @@ } @-moz-document domain(inbox.sourceware.org), domain(list.orgmode.org), - domain(lore.kernel.org) { + domain(lore.kernel.org), domain(yhetil.org) { body { margin: auto; max-width: fit-content; @@ -206,3 +213,23 @@ display: none !important; } } + +@-moz-document domain(undeadly.org) { + main { + display: grid; + grid-template-columns: 75% 25%; + } + + #primary { + min-width: unset; + width: unset !important; + float: unset !important; + max-width: 70ch; + margin: auto; + } + + #extras { + width: unset !important; + float: unset !important; + } +} |
