(always center text) |
(shrink images to 200px wide) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
display: block; | display: block; | ||
text-align: center; | text-align: center; | ||
} | |||
.console-image img { | |||
max-width: 200px; | |||
height: auto; | |||
} | } | ||
Line 13: | Line 18: | ||
.mp-wup { grid-column: 2; } | .mp-wup { grid-column: 2; } | ||
.mp-hac { grid-column: 3; } | .mp-hac { grid-column: 3; } | ||
.mp-rvl { grid-column: 4; } | |||
.mp-ctr, | .mp-ctr, | ||
.mp-wup { | .mp-wup, | ||
.mp-hac { | |||
border-right: 1px solid #a2a9b1; | border-right: 1px solid #a2a9b1; | ||
} | } |
Latest revision as of 05:37, 5 October 2023
.mp-console-container {
display: block;
text-align: center;
}
.console-image img {
max-width: 200px;
height: auto;
}
@media screen and (min-width: 851px) {
.mp-console-container {
display: grid;
grid-auto-columns: minmax(0, 1fr);
}
.mp-ctr { grid-column: 1; }
.mp-wup { grid-column: 2; }
.mp-hac { grid-column: 3; }
.mp-rvl { grid-column: 4; }
.mp-ctr,
.mp-wup,
.mp-hac {
border-right: 1px solid #a2a9b1;
}
.console-header { grid-row: 1; }
.console-image {
grid-row: 2;
display: flex;
justify-content: center;
align-items: center;
}
.console-guide-link { grid-row: 3; }
.console-version { grid-row: 4; }
}