Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.move-card-container {
  border: 3px solid #444;
  border-radius: 8px;
  background-color: #222;
  padding: 15px;
  margin-bottom: 2em;
  max-width: 720px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.move-card {
.move-card {
   display: flex;
   display: flex;
   align-items: flex-start;
   align-items: flex-start;
   border: 1px solid #ccc;
   gap: 15px;
  padding: 10px;
  margin-bottom: 1em;
  background-color: #1e1e1e;
   color: #fff;
   color: #fff;
  max-width: 700px;  /* optional, keep width reasonable */
  gap: 15px;
}
}


Line 16: Line 21:
   height: 210px;
   height: 210px;
   object-fit: cover;
   object-fit: cover;
   border-radius: 4px;
   border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.8);
}
}


Line 25: Line 31:
.move-data table {
.move-data table {
   width: 100%;
   width: 100%;
  border-collapse: collapse;
   font-size: 90%;
   font-size: 90%;
  border-collapse: collapse;
}
}


.move-data th, .move-data td {
.move-data th, .move-data td {
   border: 1px solid #555;
   border: 1px solid #666;
   padding: 6px 10px;
   padding: 8px 12px;
   text-align: center;
   text-align: center;
}
}
Line 39: Line 45:
   font-style: italic;
   font-style: italic;
   line-height: 1.3;
   line-height: 1.3;
  color: #ccc;
}
}

Revision as of 12:50, 3 September 2025

/* CSS placed here will be applied to all skins */
.move-card-container {
  border: 3px solid #444;
  border-radius: 8px;
  background-color: #222;
  padding: 15px;
  margin-bottom: 2em;
  max-width: 720px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.move-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #fff;
}

.move-image img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.move-data {
  flex-grow: 1;
}

.move-data table {
  width: 100%;
  border-collapse: collapse;
  font-size: 90%;
}

.move-data th, .move-data td {
  border: 1px solid #666;
  padding: 8px 12px;
  text-align: center;
}

.description {
  margin-top: 12px;
  font-style: italic;
  line-height: 1.3;
  color: #ccc;
}