Skip to content

Instantly share code, notes, and snippets.

@wplit
Last active February 3, 2020 23:36
Show Gist options
  • Select an option

  • Save wplit/9491bfc629e31868f9c83f98658328c4 to your computer and use it in GitHub Desktop.

Select an option

Save wplit/9491bfc629e31868f9c83f98658328c4 to your computer and use it in GitHub Desktop.
three column easy posts
%%EPID%% .oxy-posts {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
%%EPID%% .oxy-post {
width: calc(100% / 3);
}
@media (max-width: 1120px) {
%%EPID%% .oxy-post {
width: 50%;
}
}
@media (max-width: 767px) {
%%EPID%% .oxy-post {
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment