How do I make this Stylish code apply to only the domain plus.google.com in Firefox?
In Chrome, the Stylish extension allows you to specify for what domain a style should apply - but the Stylish extension for Firefox doesn't let you specify that as part of the extension.
I tried using @-moz-document
rules as described on this page, but that didn't seem to work.
Here's the code that I used - it is (despite my attempts) not specific to the plus.google.com domain:
@-moz-document url-prefix(https://plus.google.com),
domain(plus.google.com)
{
#contentPane > div {
text-align: center !important;
}
... ...
}
Please help?