You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

42 lines
590 B

.site {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto 1fr 3fr;
grid-template-areas:
"title title"
"main masthead"
"main sidebar"
"footer footer";
grid-gap: 1em 2em;
margin: 1em;
}
@media screen and (min-width: 600px) {
.site {
grid-template-columns: 2fr 1fr 1fr;
grid-template-areas:
"title title title"
"main . masthead"
"main sidebar footer";
}
}
.masthead {
grid-area: masthead;
}
.page-title {
grid-area: title;
}
.main-content {
grid-area: main;
}
.sidebar {
grid-area: sidebar;
}
.footer-content {
grid-area: footer;
}