Skip to content

Instantly share code, notes, and snippets.

@jessestu
Last active July 17, 2018 20:20
Show Gist options
  • Save jessestu/ff660329efffc937735a8863b0187c6b to your computer and use it in GitHub Desktop.
Save jessestu/ff660329efffc937735a8863b0187c6b to your computer and use it in GitHub Desktop.
/* THIS CSS: Widens single-column pages horizontally at the 79em theme breakpoint. / @jessestu 5076061-hc */
@media screen and (min-width: 79em){
.page-one-column .panel-content .wrap {
max-width: 75em;
}
}
/* THIS CSS: Hides the sidebar on all blog pages except My Journey. / @jessestu 5076061-hc */
.widget-area {
display: none;
}
@media screen and (min-width: 48em) {
.has-sidebar:not(.error404) #primary {
width: 100%;
}
}
.postid-280 .widget-area {
display: inherit;
}
@media screen and (min-width: 48em) {
.postid-280.has-sidebar:not(.error404) #primary {
width: 58%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment