You are here

three_column_nested_right.css in DS Extra Layouts 7

Display Suite Three Column Nested Right stylesheet.

File

layouts/three_column_nested_right/three_column_nested_right.css
View source
  1. /**
  2. * @file
  3. * Display Suite Three Column Nested Right stylesheet.
  4. */
  5. /* Primary Column. */
  6. .ds-nested-right {
  7. float: left;
  8. width: 75%;
  9. }
  10. /* Secondary Column and Left Region. */
  11. .ds-left {
  12. float: left;
  13. width: 25%;
  14. }
  15. /* Nested Regions inside Primary Column. */
  16. .ds-middle {
  17. float: left;
  18. width: 70%;
  19. }
  20. .ds-right {
  21. float: left;
  22. width: 30%;
  23. }
  24. .ds-footer {
  25. clear: left;
  26. }