2018-06-11 20:36:32 +02:00
|
|
|
.horizontal-quad-split {
|
|
|
|
display : flex;
|
|
|
|
flex-direction : row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items : flex-start;
|
|
|
|
.left-side, .right-side {
|
|
|
|
width : 50%;
|
|
|
|
display : flex;
|
|
|
|
flex-direction : row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items : flex-start;
|
2018-06-14 22:06:19 +02:00
|
|
|
.column-a, .column-b, .column-c, .column-d {
|
2018-06-11 20:36:32 +02:00
|
|
|
width: 50%;
|
2018-06-14 22:06:19 +02:00
|
|
|
};
|
|
|
|
.column-a, .column-b, .column-c {
|
|
|
|
padding-right: $secondary-padding;
|
|
|
|
};
|
|
|
|
};
|
2018-06-11 20:36:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: $break-point-large ) {
|
|
|
|
|
|
|
|
.horizontal-quad-split {
|
|
|
|
flex-direction : column;
|
|
|
|
.left-side, .right-side {
|
|
|
|
width : 100%;
|
2018-06-14 22:06:19 +02:00
|
|
|
.column-a, .column-b, .column-c, .column-d {
|
|
|
|
width: 50%;
|
|
|
|
};
|
|
|
|
.column-b {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2018-06-11 20:36:32 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $break-point-medium ) {
|
|
|
|
|
|
|
|
.horizontal-quad-split {
|
|
|
|
flex-direction : column;
|
|
|
|
.left-side, .right-side {
|
|
|
|
flex-direction : column;
|
2018-06-14 22:06:19 +02:00
|
|
|
.column-a, .column-b, .column-c, .column-d {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
};
|
2018-06-11 20:36:32 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|