You are here

ds-2col.css in Display Suite 8.3

Same filename and directory in other branches
  1. 8.4 css/ds-2col.css
  2. 8.2 css/ds-2col.css

Styling for the ds-2col template.

File

css/ds-2col.css
View source
  1. /**
  2. * @file
  3. * Styling for the ds-2col template.
  4. */
  5. .ds-2col > .group-left {
  6. float: left; /* LTR */
  7. width: 50%;
  8. }
  9. [dir="rtl"] .ds-2col > .group-left {
  10. float: right;
  11. }
  12. .ds-2col > .group-right {
  13. float: left; /* LTR */
  14. width: 50%;
  15. }
  16. [dir="rtl"] .ds-2col > .group-right {
  17. float: right;
  18. }