Even if modrinth approves this modpack, their description page for it isn't that good anyway, for figuring out what's all in there.
23 lines
No EOL
471 B
CSS
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;
|
|
}
|
|
} |