2022-10-07 13:27:43 +00:00
|
|
|
@mixin responsive-container($breakpoint) {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: $breakpoint;
|
|
|
|
|
|
|
|
@media (max-width: $breakpoint) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header,
|
|
|
|
.page-main,
|
|
|
|
.page-footer {
|
|
|
|
@include responsive-container(1200px);
|
|
|
|
|
|
|
|
margin-bottom: var(--large-spacing);
|
|
|
|
padding: var(--large-spacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
border-bottom: 4px solid var(--background-2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-main {
|
2022-10-07 13:31:36 +00:00
|
|
|
h2,
|
|
|
|
img,
|
|
|
|
p {
|
2022-10-07 13:27:43 +00:00
|
|
|
margin-bottom: var(--medium-spacing);
|
2022-10-07 13:33:13 +00:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-07 13:27:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer {
|
|
|
|
background-color: var(--background-2);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--large-spacing);
|
|
|
|
}
|