aboutsummaryrefslogtreecommitdiffstats
path: root/stylus
diff options
context:
space:
mode:
Diffstat (limited to 'stylus')
-rw-r--r--stylus/manganato_sepia.css8
-rw-r--r--stylus/realpython_wide.css15
2 files changed, 21 insertions, 2 deletions
diff --git a/stylus/manganato_sepia.css b/stylus/manganato_sepia.css
index cb094ff..b72db94 100644
--- a/stylus/manganato_sepia.css
+++ b/stylus/manganato_sepia.css
@@ -1,5 +1,9 @@
-@-moz-document domain("readmanganato.com") {
- .container-chapter-reader {
+@-moz-document domain("readmanganato.com"), domain("chapmanganato.com") {
+ img {
filter: sepia(1) brightness(0.7) contrast(0.9) saturate(0.9);
}
+
+ img:hover {
+ filter: none;
+ }
}
diff --git a/stylus/realpython_wide.css b/stylus/realpython_wide.css
new file mode 100644
index 0000000..a94d573
--- /dev/null
+++ b/stylus/realpython_wide.css
@@ -0,0 +1,15 @@
+@-moz-document domain("realpython.com") {
+ div.container:nth-child(2) {
+ max-width: 90%;
+ width: 90%;
+ }
+
+ img {
+ filter: sepia(1) brightness(0.7) contrast(0.9) saturate(0.9);
+ }
+
+ img:hover {
+ filter: none;
+ filter: sepia(0);
+ }
+}