So here's the problem. I'm kind of new to Susy so I'm not entirely sure the best way to accomplish this but I'm looking to apply a layout to the .hfeed div based on the body class AND the media query which is already set up below.
Here's why. I'm doing this for WordPress and there are different layouts which are styled by using the CSS class applied to the body. Specifically, the two classes are .full-width-content and .content-sidebar. I need the selector to either span the full container or sit in the currently defined area respectively. So the specific selectors I would want to style would be ".full-width-content .hfeed" and ".content-sidebar .hfeed". I've tried setting those up to include different containers but that does not work.
Should I perhaps simply break this section out of the defined grid and select by class THEN do the media query?
What's the best way to accomplish this in susy?
//susy grid definitions, footer sits outside the susy grid def
#wrap {
@include container( $total-columns, $break-tablet, $break-desktop );
@include at-breakpoint( $break-tablet ) {
#header { @include span-columns( $break-tablet omega ); }
#title-area { @include span-columns( 5, $break-tablet ); }
#header .widget-area { @include span-columns( 4 omega, $break-tablet ); }
#nav { @include span-columns( $break-tablet omega ); }
.hfeed { @include span-columns( 6, $break-tablet ); }
#sidebar { @include span-columns( 3 omega, $break-tablet ); }
}
@include at-breakpoint( $break-desktop ) {
#header { @include span-columns( $break-desktop omega ); }
#title-area { @include span-columns( 5, $break-desktop ); }
#header .widget-area { @include span-columns( 5 omega, $break-desktop ); }
#nav { @include span-columns( $break-desktop omega ); }
.hfeed { @include span-columns( 7, $break-desktop ); }
#sidebar { @include span-columns( 4 omega, $break-desktop ); }
}
}