Stylebot for Firefox – Apply custom CSS on webpages
addons.mozilla.org
Stylebot for Firefox – Apply custom CSS on webpages
1–10 of 18 posts
Re: Stylebot for Firefox – Apply custom CSS on webpages
#2Re: Stylebot for Firefox – Apply custom CSS on webpages
#3 @-moz-document domain(https://news.ycombinator.com) {...}Re: Stylebot for Firefox – Apply custom CSS on webpages
#4Re: Stylebot for Firefox – Apply custom CSS on webpages
#5I don't think you need an add-on for this if you're already handy with CSS, just edit userContent.css and use a domain-specific query: @-moz-document domain(https://news.ycombinator.com) {...}
video { /* flip video horizontally */
transform: scaleX(-1) !important;
}
or /** scale videos that were originally 4:3, but
were encoded as 16:9 into proper 4:3 again */
video {
transform: scaleX(0.75) !important;
}
It's not extremely useful, but every time I toggle them on, I'm very happy that I added them both.Re: Stylebot for Firefox – Apply custom CSS on webpages
#6Just use Stylus. https://addons.mozilla.org/en-US/firefox/addon/styl-us/
My first impressions are that Stylus is nice for applying big site-wide styles like dark themes, but this is vastly superior for all the small customizations that you might want to make to sites you frequently visit. No need to go deep into the CSS; just right click a thing and open the sidebar and make it look how you want. Not even close to Stylus. Definitely something I'm going to keep, and makes for a very powerful combination paired with uBlock Origin's element picker/zapper.
Re: Stylebot for Firefox – Apply custom CSS on webpages
#7I don't think you need an add-on for this if you're already handy with CSS, just edit userContent.css and use a domain-specific query: @-moz-document domain(https://news.ycombinator.com) {...}
I find it incredibly useful to be able to toggle styles on and off in a simple GUI, especially for these two simple global styles: video { /* flip video horizontally */ transform: scaleX(-1) !important; } or /** scale videos that were originally 4:3, but were encoded as 16:9 into proper 4:3 again */ video { transform: scaleX(0.75) !important; } It's not extremely useful, but every time I toggle them on, I'm very happ…
Re: Stylebot for Firefox – Apply custom CSS on webpages
#8I don't think you need an add-on for this if you're already handy with CSS, just edit userContent.css and use a domain-specific query: @-moz-document domain(https://news.ycombinator.com) {...}
For more inspiration and help visit https://www.reddit.com/r/FirefoxCSS/
Re: Stylebot for Firefox – Apply custom CSS on webpages
#9Earlier quoted context omitted.
I find it incredibly useful to be able to toggle styles on and off in a simple GUI, especially for these two simple global styles: video { /* flip video horizontally */ transform: scaleX(-1) !important; } or /** scale videos that were originally 4:3, but were encoded as 16:9 into proper 4:3 again */ video { transform: scaleX(0.75) !important; } It's not extremely useful, but every time I toggle them on, I'm very happ…
Out of curiosity, what do you use the first flip horizontally style for?
Re: Stylebot for Firefox – Apply custom CSS on webpages
#10Earlier quoted context omitted.
I find it incredibly useful to be able to toggle styles on and off in a simple GUI, especially for these two simple global styles: video { /* flip video horizontally */ transform: scaleX(-1) !important; } or /** scale videos that were originally 4:3, but were encoded as 16:9 into proper 4:3 again */ video { transform: scaleX(0.75) !important; } It's not extremely useful, but every time I toggle them on, I'm very happ…
Out of curiosity, what do you use the first flip horizontally style for?