commit 39abcf51578e3014b1e0b9be88f54b925d85536b
parent 9516643986f40a9423a437592aa58c04aa50b3b3
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sun, 20 Nov 2022 18:28:53 +0100
Tweak CSS for a couple more sites
Diffstat:
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git 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;
+ }
+}