Last active
February 3, 2020 23:36
-
-
Save wplit/9491bfc629e31868f9c83f98658328c4 to your computer and use it in GitHub Desktop.
three column easy posts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %%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