My first conditional

My first conditional

I am looking to do something like this...
if ( $(".class_big") exists ){
$(".content").css("margin-top", "10px");
} else {
$(".content").css("margin-top", "20px");}

If this class exists then do something to another class else do something else to the class.