Template:Content/styles.css
Jump to navigation
Jump to search
.tile-row {
display: flex;
flex-wrap: nowrap;
justify-content: center;
margin-bottom: 2em;
gap: 1.5%;
overflow-x: auto;
}
.tile-row > div {
flex: 0 0 18%;
min-width: 160px;
max-width: 200px;
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 {
flex-wrap: wrap;
justify-content: center;
}
.tile-row > div {
flex: 0 1 45%;
margin-bottom: 1em;
}
}