2012-01-13 20:57:16 +00:00
|
|
|
/*
|
2015-07-01 15:21:44 +00:00
|
|
|
* Theme Name: _s
|
|
|
|
*
|
|
|
|
* Layout: Content-Sidebar
|
|
|
|
*
|
|
|
|
* Learn more: https://developer.wordpress.org/themes/basics/template-files/
|
2012-01-13 20:57:16 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-02 22:57:02 +00:00
|
|
|
.site {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 25%;
|
|
|
|
grid-template-areas:
|
|
|
|
"header header"
|
|
|
|
"main sidebar"
|
|
|
|
"footer footer";
|
|
|
|
}
|
|
|
|
.site-header {
|
|
|
|
grid-area: header;
|
2012-01-13 20:57:16 +00:00
|
|
|
}
|
2013-07-30 19:12:45 +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. */
|
2012-01-13 20:57:16 +00:00
|
|
|
}
|
2018-01-02 22:57:02 +00:00
|
|
|
.widget-area {
|
|
|
|
grid-area: sidebar;
|
2012-01-13 20:57:16 +00:00
|
|
|
}
|
2012-02-01 16:55:36 +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
|
|
|
|
|
|
|
.no-sidebar .content-area {
|
|
|
|
float: none;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
.no-sidebar .site-main {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|