MediaWiki:Common.css
MediaWiki interface page
More actions
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.
 
/* CSS placed here will be applied to all skins */
.move-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 1em;
  background-color: #1e1e1e;
  color: #fff;
  max-width: 700px;  /* optional, keep width reasonable */
  gap: 15px;
}
.move-image img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 4px;
}
.move-data {
  flex-grow: 1;
}
.move-data table {
  width: 100%;
  font-size: 90%;
  border-collapse: collapse;
}
.move-data th, .move-data td {
  border: 1px solid #555;
  padding: 6px 10px;
  text-align: center;
}
.description {
  margin-top: 12px;
  font-style: italic;
  line-height: 1.3;
}