minecraft-crawler/website/style.css
hiina b8ecd6aa37 make basic website scraper thing
Even if modrinth approves this modpack, their description page for
it isn't that good anyway, for figuring out what's all in there.
2024-08-14 19:37:54 -06:00

23 lines
No EOL
471 B
CSS

/* Mod descriptions layout */
#mod-descriptions {
display: grid;
gap: 10px;
grid-template-columns: repeat(auto-fill, minmax(20em, 1fr));
grid-template-rows: masonry;
}
.mod-description {
width: 100%;
}
@media screen and (max-width: 768px) {
#mod-descriptions {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 480px) {
#mod-descriptions {
grid-template-columns: 1fr;
}
}