You are here

two-col.css in Layout 8.2

/* Large resolutions (desktop, tablets in landscape, ...) */
@media only screen and (min-width: 59em) {
  .layout-two-col .layout-region {
    float: left; /* LTR */
    width: 50%;
  }
  [dir="rtl"] .layout-two-col .layout-region {
    float: right;
  }
}

File

layouts/static/twocol/two-col.css
View source
  1. /* Large resolutions (desktop, tablets in landscape, ...) */
  2. @media only screen and (min-width: 59em) {
  3. .layout-two-col .layout-region {
  4. float: left; /* LTR */
  5. width: 50%;
  6. }
  7. [dir="rtl"] .layout-two-col .layout-region {
  8. float: right;
  9. }
  10. }