Template:Knowledge Base Consoles/styles.css
Template page
More actions
Revision as of 04:16, 30 September 2024 by Wurmatron (talk | contribs) (Created page with ".container { display: block; text-align: center; background: red; } .image img { max-width: 200px; height: auto; } @media screen and (min-width: 851px) { .container { display: grid; grid-auto-columns: minmax(0, 1fr); margin: 0; } .image { grid-row: 1; display: flex; justify-content: center; } .title { grid-row: 2; } }")
.container {
display: block;
text-align: center;
background: red;
}
.image img {
max-width: 200px;
height: auto;
}
@media screen and (min-width: 851px) {
.container {
display: grid;
grid-auto-columns: minmax(0, 1fr);
margin: 0;
}
.image {
grid-row: 1;
display: flex;
justify-content: center;
}
.title {
grid-row: 2;
}
}