diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2022-11-20 18:28:53 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2022-11-20 18:29:26 +0100 |
| commit | 39abcf51578e3014b1e0b9be88f54b925d85536b (patch) | |
| tree | 9c3d74c25f81deeee5d6176b92561c7a55c203d5 | |
| parent | 9516643986f40a9423a437592aa58c04aa50b3b3 (diff) | |
| download | dotfiles-39abcf51578e3014b1e0b9be88f54b925d85536b.tar.xz | |
Tweak CSS for a couple more sites
| -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; + } +} |
