Template:Knowledge Base Consoles/styles.css: Difference between revisions
Template page
More actions
No edit summary Tag: Reverted |
No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
display: block; | display: block; | ||
text-align: center; | text-align: center; | ||
height: auto; | |||
} | } | ||
Line 15: | Line 14: | ||
display: grid; | display: grid; | ||
grid-auto-columns: minmax(0, 1fr); | grid-auto-columns: minmax(0, 1fr); | ||
row-gap: | row-gap: 0px | ||
} | } | ||
.image { | .image { | ||
grid-row: 1; | grid-row: 1; | ||
display: | display: block; | ||
justify-content: center; | justify-content: center; | ||
padding: 0px; | |||
margin: 0px; | |||
} | } | ||
.title { | .title { |
Latest revision as of 20:33, 10 January 2025
.container {
display: block;
text-align: center;
height: auto;
}
.image img {
max-width: 200px;
height: auto;
}
@media screen and (min-width: 851px) {
.container {
display: grid;
grid-auto-columns: minmax(0, 1fr);
row-gap: 0px
}
.image {
grid-row: 1;
display: block;
justify-content: center;
padding: 0px;
margin: 0px;
}
.title {
grid-row: 2;
}
}