sass-site/source/assets/sass/layout/_holy-grail.scss

58 lines
1019 B
SCSS
Raw Normal View History

2023-01-09 20:10:02 +01:00
@each $breakpoint, $size in $sl-breakpoints {
2023-01-06 22:40:29 +01:00
$prefix: if(($breakpoint == 'none'), '', '#{$breakpoint}-');
2023-01-09 20:10:02 +01:00
@include sl-breakpoint-set($breakpoint, $size) {
2023-01-06 22:40:29 +01:00
.sl-l-#{$prefix}holy-grail {
&,
2023-01-09 20:10:02 +01:00
&__body {
display: flex;
}
2023-01-06 22:40:29 +01:00
flex-direction: column;
height: 100%;
&__header,
2023-01-09 20:10:02 +01:00
&__footer {
flex: none;
}
2023-01-06 22:40:29 +01:00
&__body {
flex: 1 0 auto;
flex-direction: row;
margin: {
right: -2rem;
left: -2rem;
2023-01-09 20:10:02 +01:00
}
2023-01-06 22:40:29 +01:00
}
&__main,
&__navigation,
&__complementary {
padding: {
right: sl-px-to-rem(32px);
left: sl-px-to-rem(32px);
2023-01-09 20:10:02 +01:00
}
2023-01-06 22:40:29 +01:00
}
2023-01-09 20:10:02 +01:00
&__main {
flex: 1;
}
2023-01-06 22:40:29 +01:00
&__navigation {
flex: 0 0 sl-px-to-rem(240px);
order: -1;
}
&__complementary {
order: 1;
flex: 0 0 sl-px-to-rem(480px);
&--contents {
flex: 0 0 sl-px-to-rem(240px);
order: -1;
}
}
}
}
}