Skip to content

Instantly share code, notes, and snippets.

@petersplugins
Last active March 12, 2018 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petersplugins/577e7affad1f9e175ac4c33ecbea7d8d to your computer and use it in GitHub Desktop.
Save petersplugins/577e7affad1f9e175ac4c33ecbea7d8d to your computer and use it in GitHub Desktop.
@media screen and (min-width: 56.875em) {
.site-main {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
.site-main h1 {
-moz-column-span: all;
-webkit-column-span: all;
column-span: all;
}
.sidebar, .site-main h1 {
background-color: #eee;
}
.widget {
padding-left: 10px;
padding-right: 10px;
}
}
@media screen and (min-width: 75em) {
.site-main {
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment