Advertisement
srikat

Untitled

Oct 1st, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #_posts_grid-368-5 .oxy-posts {
  2. display: grid;
  3. grid-template-columns: repeat(3,1fr);
  4. grid-gap: 10px;
  5. }
  6.  
  7. #_posts_grid-368-5 .oxy-post {
  8. width: auto;
  9. }
  10.  
  11. @media only screen and (max-width: 992px) {
  12.  
  13. #_posts_grid-368-5 .oxy-posts {
  14. grid-template-columns: 1fr 1fr;
  15. }
  16.  
  17. #_posts_grid-368-5 .oxy-post {
  18. width: auto !important;
  19. }
  20.  
  21. }
  22.  
  23. @media only screen and (max-width: 480px) {
  24.  
  25. #_posts_grid-368-5 .oxy-posts {
  26. grid-template-columns: 1fr;
  27. }
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement