Any idea how to do this?

https://www.reddit.com/r/FirefoxCSS/comments/rxn93z/i_want_my_firefox_to_look_something_like_this/#lightbox

Make firefox look like this?

0 points · 1 comments · view on lemmy.world

1 Comments

bali10050@lemmy.world · 2 pts · 1y

You need first find out how do you want to style the website. You can use the devtools menu for that (F12). Then you need to create a userContent.css, and write your css there. I recommend writing your rules for given urls or url-prefixes like @-moz-document url-prefix(www.4chan.org){body{background: #111}} or @-moz-document url("www.4chan.org"){body{background: #111}} so it only has an effect on the websites you want to style.