Main Content
This is the main content area. Without css file applied it will layout in the normal flow.
Media Queries
This second version of this site now includes mobile friendly layouts that use Media Queries to apply different CSS based on screen size.
The @media rule, introduced in CSS2, made it possible to define different style rules for different media types. A media query consists of a media type and can contain one or more media features, which resolve to either true or false.
<style>
@media not|only mediatype and (media feature) and (media feature) {
CSS-Code;
}
</style>