MediaWiki:Common.css: Difference between revisions

From HighSpell Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
   display: flex;
   display: flex;
   align-items: center;
   align-items: center;
   background-color: #3a2b28;
   background-color: #3b2b28; /* Matches tiles on main page */
   border-left: 4px solid #a1724e;
   border-left: 4px solid #a1724e; /* Warm highlight */
   color: #fff;
   color: #f8f1e7; /* Light beige text */
   padding: 10px;
   padding: 10px 15px;
   margin: 1em 0;
   margin: 1em 0;
   border-radius: 5px;
   border-radius: 8px;
   font-size: 0.95em;
   font-size: 0.95em;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
}


Line 33: Line 34:


.stub-word {
.stub-word {
   color: #d39d7c;
   color: #d9a075; /* Soft orange highlight */
}
}

Revision as of 08:43, 9 May 2025

/* CSS placed here will be applied to all skins */
.infobox {
  float: right;
  clear: right;
  margin: 0 0 1em 1em;
}

.stub-box {
  display: flex;
  align-items: center;
  background-color: #3b2b28; /* Matches tiles on main page */
  border-left: 4px solid #a1724e; /* Warm highlight */
  color: #f8f1e7; /* Light beige text */
  padding: 10px 15px;
  margin: 1em 0;
  border-radius: 8px;
  font-size: 0.95em;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.stub-image {
  display: inline-block;
  margin-right: 10px;
}

.stub-image img {
  display: inline-block !important;
  vertical-align: middle;
}

.stub-text {
  line-height: 1.4em;
}

.stub-word {
  color: #d9a075; /* Soft orange highlight */
}