2018-06-01 23:53:12 +02:00
|
|
|
.horizontal-split {
|
2018-11-09 01:44:59 +01:00
|
|
|
max-width: $width-content-constrained;
|
|
|
|
width: 100%;
|
2018-06-01 23:53:12 +02:00
|
|
|
display : flex;
|
|
|
|
flex-direction : row;
|
2019-01-26 01:37:07 +01:00
|
|
|
justify-content: center;
|
|
|
|
box-sizing: border-box;
|
2018-11-10 20:59:53 +01:00
|
|
|
|
|
|
|
&.horizontal-split--mobile-collapse {
|
2019-01-26 01:37:07 +01:00
|
|
|
@media (max-width: $break-point-tablet) {
|
2018-11-10 20:59:53 +01:00
|
|
|
flex-direction: column;
|
|
|
|
.horizontal-split__column {
|
|
|
|
}
|
2019-01-26 01:37:07 +01:00
|
|
|
.horizontal-split__column--left {
|
|
|
|
padding-top: $thin-padding;
|
|
|
|
}
|
2018-11-10 20:59:53 +01:00
|
|
|
.horizontal-split__column--right {
|
2019-01-26 01:37:07 +01:00
|
|
|
padding-top: $thin-padding;
|
2018-11-10 20:59:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-01 23:53:12 +02:00
|
|
|
};
|
2018-06-11 01:07:15 +02:00
|
|
|
|
2018-11-09 01:44:59 +01:00
|
|
|
.horizontal-split__column {
|
2019-01-26 01:37:07 +01:00
|
|
|
display : flex;
|
|
|
|
flex: 1 1 auto;
|
2018-11-09 01:44:59 +01:00
|
|
|
box-sizing: border-box;
|
2019-01-26 01:37:07 +01:00
|
|
|
width: 100%;
|
2018-11-09 01:44:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.horizontal-split__column--left {
|
2019-01-26 01:37:07 +01:00
|
|
|
padding: $tertiary-padding;
|
2018-11-10 20:59:53 +01:00
|
|
|
|
2019-01-26 01:37:07 +01:00
|
|
|
@media (max-width: $break-point-tablet) {
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 0px;
|
2018-11-10 20:59:53 +01:00
|
|
|
}
|
2018-11-09 01:44:59 +01:00
|
|
|
}
|
2018-06-11 01:07:15 +02:00
|
|
|
|
2018-11-09 01:44:59 +01:00
|
|
|
.horizontal-split__column--right {
|
2018-11-10 20:59:53 +01:00
|
|
|
|
2019-01-26 01:37:07 +01:00
|
|
|
padding: $tertiary-padding;
|
|
|
|
|
|
|
|
@media (max-width: $break-point-tablet) {
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-right: 0px;
|
2018-11-10 20:59:53 +01:00
|
|
|
}
|
2018-11-09 01:44:59 +01:00
|
|
|
}
|
2018-06-11 01:07:15 +02:00
|
|
|
|
2018-10-22 22:26:19 +02:00
|
|
|
@media (max-width: $break-point-tablet) {
|
2018-06-11 01:07:15 +02:00
|
|
|
|
2018-11-09 01:44:59 +01:00
|
|
|
.horizontal-split__column {
|
2018-06-11 01:07:15 +02:00
|
|
|
justify-content: space-between;
|
|
|
|
};
|
|
|
|
|
2018-11-09 01:44:59 +01:00
|
|
|
.column {
|
|
|
|
width: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
padding-bottom: $secondary-padding;
|
|
|
|
}
|
2018-06-11 01:07:15 +02:00
|
|
|
}
|