My guess is this either going to be real easy or real hard in SitePublisher.I have a requirement that the same site fit on multiple screen sizes.The requirement is this:For screen sizes >= 1024px the site should have a width of 930For screen sizes >= 800px the site should have a width of 770For screen sizes >= 640px the site should have a width of 600for ... you get the idea.Components that on a 930 screen fit side-by-side should wrap above-and-below.Basically has anyone integrated any "responsive frameworks" in with Site Publisher or is there some other method available?
Basically has anyone integrated any "responsive frameworks" in with Site Publisher or is there some other method available?
/*** default rules, for 960px ***//** Body normalization for cross browser **/body{min-width: 768px;}/* etc *//*** 768px ***/@media only screen and (max-width:959px) { /** Body normalization for cross browser **/ body{min-width: 768px;} /* etc */}/*** 1200px ***/@media only screen and (min-width:1200px) { /** Body normalization for cross browser **/ body{min-width: 1200px;} /* etc */}