41 lines
558 B
CSS
Raw Normal View History

2021-07-27 14:46:32 +02:00
/**
* @file
* Styling for the ds-4col template.
*/
.ds-4col > .group-first {
width: 25%;
float: left; /* LTR */
}
[dir="rtl"] .ds-4col > .group-first {
float: right;
}
.ds-4col > .group-second {
width: 25%;
float: left; /* LTR */
}
[dir="rtl"] .ds-4col > .group-second {
float: right;
}
.ds-4col > .group-third {
width: 25%;
float: left; /* LTR */
}
[dir="rtl"] .ds-4col > .group-third {
float: right;
}
.ds-4col > .group-fourth {
width: 25%;
float: left; /* LTR */
}
[dir="rtl"] .ds-4col > .group-fourth {
float: right;
}