You are here

ds-3col.css in Display Suite 8.3

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

Styling for the ds-3col template.

File

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