[jQuery] Is there a way to use the css function with $(document) directly?

[jQuery] Is there a way to use the css function with $(document) directly?


I was tinkering with jQuery when I got an idea: why not have a way to
do something like:
$(document).css(selector,rule);
Then it could be chained for as many rules as you would wish:
$
(document).css(selector1,rule1).css(selector2,rule2)...css(selectorN,ruleN);
If this is already part of the jQuery functionality, tell me the
syntax to use. Otherwise, consider this a submission of a new idea.