2021-07-27 14:46:32 +02:00

27 lines
395 B
CSS

/**
* @file
* Styling for the ds-2col-stacked template.
*/
.ds-2col-stacked > .group-left {
float: left; /* LTR */
width: 50%;
}
[dir="rtl"] .ds-2col-stacked > .group-left {
float: right;
}
.ds-2col-stacked > .group-right {
float: right; /* LTR */
width: 50%;
}
[dir="rtl"] .ds-2col-stacked > .group-right {
float: left;
}
.ds-2col-stacked > .group-footer {
clear: both;
}