This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2018-01-02 22:57:02 +00:00
|
|
|
.site {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto ($size__site-sidebar);
|
|
|
|
grid-template-areas:
|
|
|
|
"header header"
|
|
|
|
"main sidebar"
|
|
|
|
"footer footer";
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-header {
|
|
|
|
grid-area: header;
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-main {
|
2018-01-02 22:57:02 +00:00
|
|
|
grid-area: main;
|
|
|
|
overflow: hidden; /* Resolves issue with <pre> elements forcing full width. */
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
2018-01-02 22:57:02 +00:00
|
|
|
.widget-area {
|
|
|
|
grid-area: sidebar;
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-footer {
|
2018-01-02 22:57:02 +00:00
|
|
|
grid-area: footer;
|
2017-07-01 04:57:00 +00:00
|
|
|
}
|
2017-07-10 16:03:55 +00:00
|
|
|
|
|
|
|
@import "no-sidebar";
|