Created
February 15, 2024 12:22
-
-
Save tdmrhn/7b129b37c2680a595468722a59d92949 to your computer and use it in GitHub Desktop.
Blocksy 2 Blog Posts Masonry Grid
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
[data-prefix="blog"] section .entries { | |
display: block; | |
--masonry-column: 3; | |
-webkit-column-count: var(--masonry-column); | |
-moz-column-count: var(--masonry-column); | |
column-count: var(--masonry-column); | |
} | |
[data-prefix="blog"] section .entries article { | |
display: inline-block; | |
margin-bottom: var(--grid-columns-gap); | |
} | |
@media only screen and (max-width: 1000px) { | |
[data-prefix="blog"] section .entries { | |
--masonry-column: 3; | |
} | |
} | |
@media only screen and (max-width: 700px) { | |
[data-prefix="blog"] section .entries { | |
--masonry-column: 2; | |
} | |
} | |
@media only screen and (max-width: 480px) { | |
[data-prefix="blog"] section .entries { | |
--masonry-column: 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Woo Shop loop;