You are here

ds-4col.css in Display Suite 8.2

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

Styling for the ds-4col template.

File

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