27 lines
395 B
CSS
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;
|
|
}
|