MediaWiki:Common.css
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
.eras-table img {
max-width: 200px;
width: 100%;
height: auto;
}
/* For medium screens - switch to 2x3 layout */
@media screen and (max-width: 800px) {
.eras-table {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.eras-table th {
grid-column: 1 / span 2;
}
}
/* For small screens - switch to 6x1 layout */
@media screen and (max-width: 400px) {
.eras-table {
display: grid;
grid-template-columns: 1fr;
}
.eras-table th {
grid-column: 1;
}
}