Template:Content/styles.css
Jump to navigation
Jump to search
.tile-row {
display: flex;
flex-wrap: wrap; /* allow multiple rows */
justify-content: center;
gap: 1.5em;
margin: 1em auto 2em auto;
max-width: 1200px;
}
.tile-row > div {
flex: 1 1 180px;
max-width: 220px;
display: flex;
flex-direction: column;
align-items: center;
}
.tile-top {
text-align: center;
width: 100%;
}
.tile-bottom h2 {
margin: 0.4em 0 0;
text-align: center;
font-size: 1.1em;
}
@media (max-width: 800px) {
.tile-row {
gap: 1em;
}
.tile-row > div {
flex: 1 1 45%;
}
}