Toggle menu
33
31
6.6K
731
Caelia Reborn
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:
.infobox-healing-machine {
.infobox-healing-machine {
   float: right;
   float: right;
   width: 250px;
   width: 260px;
   background-color: #f8f8f8;
   background-color: #f9f9f9;
   border: 1px solid #ccc;
   border: 1px solid #ccc;
   padding: 10px;
   padding: 10px;
   margin: 0 0 10px 20px;
   margin: 0 0 10px 20px;
   font-size: 14px;
   font-size: 14px;
  line-height: 1.5;
   box-shadow: 0 0 5px rgba(0,0,0,0.1);
   box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
}
Line 14: Line 13:
   font-weight: bold;
   font-weight: bold;
   font-size: 16px;
   font-size: 16px;
  text-align: center;
   margin-bottom: 8px;
   margin-bottom: 8px;
  text-align: center;
}
}


Line 24: Line 23:


.infobox-data .infobox-row {
.infobox-data .infobox-row {
   padding: 6px;
  display: flex;
  justify-content: space-between;
   padding: 6px 8px;
   background-color: #ffffff;
   background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}
}


.infobox-data .infobox-row.alt {
.infobox-data .infobox-row:nth-child(even) {
   background-color: #e8e8f0; /* light purple-gray */
   background-color: #eef0f8; /* soft blue-gray */
}
}


.infobox-data .label {
.infobox-data .label {
   font-weight: bold;
   font-weight: bold;
   display: inline-block;
   color: #333;
  width: 120px;
}
}


.infobox-data .value {
.infobox-data .value {
   display: inline-block;
   color: #555;
}
}

Revision as of 11:56, 12 December 2025

.infobox-healing-machine {
  float: right;
  width: 260px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 0 0 10px 20px;
  font-size: 14px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.infobox-title {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 8px;
}

.infobox-image {
  text-align: center;
  margin-bottom: 8px;
}

.infobox-data .infobox-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.infobox-data .infobox-row:nth-child(even) {
  background-color: #eef0f8; /* soft blue-gray */
}

.infobox-data .label {
  font-weight: bold;
  color: #333;
}

.infobox-data .value {
  color: #555;
}