Jump to navigation Jump to search

MediaWiki:Common.css: Difference between revisions

(Created page with "→‎CSS placed here will be applied to all skins: →‎Parchment Background Style: .parchment-box { background: url('/w/images/parchmentBackground.jpg') repeat; background-size: cover; border: 2px solid #5b3a1e; padding: 10px; font-family: "Georgia", serif; color: #3b2f1f; box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); } →‎Table Styling: .parchment-box .wikitable { background-color: transparent; border: none; width: 100%; font-size: 95%; } .parchmen...")
 
No edit summary
Line 2: Line 2:
/* Parchment Background Style */
/* Parchment Background Style */
.parchment-box {
.parchment-box {
   background: url('/w/images/parchmentBackground.jpg') repeat;
   background: url('images/body-bg1.png') repeat;
   background-size: cover;
   background-size: cover;
   border: 2px solid #5b3a1e;
   border: 2px solid #5b3a1e;

Revision as of 17:48, 7 May 2025

/* CSS placed here will be applied to all skins */
/* Parchment Background Style */
.parchment-box {
  background: url('images/body-bg1.png') repeat;
  background-size: cover;
  border: 2px solid #5b3a1e;
  padding: 10px;
  font-family: "Georgia", serif;
  color: #3b2f1f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* Table Styling */
.parchment-box .wikitable {
  background-color: transparent;
  border: none;
  width: 100%;
  font-size: 95%;
}

.parchment-box .wikitable th,
.parchment-box .wikitable td {
  background: rgba(255, 255, 255, 0.5); /* translucent for parchment feel */
  border: 1px solid #5b3a1e;
  padding: 6px;
}

/* Section Headers */
.parchment-box .wikitable th {
  background-color: #7a2c1e;
  color: #fff;
  font-variant: small-caps;
  text-align: center;
}

/* Table Caption */
.parchment-box .wikitable caption {
  background-color: transparent;
  font-size: 140%;
  font-weight: bold;
  text-align: left;
  color: #5b3a1e;
}