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

MediaWiki:Common.css

MediaWiki interface page
More languages
More actions
Revision as of 18:33, 6 June 2024 by Master-Brent (talk | contribs)

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Leather Infobox Style */
.leather-infobox {
  background-color: #555D50; /* Dark brown leather color */
  border: 3px solid #2F4F4F; /* Lighter brown for the border */
  border-radius: 10px;
  padding: 15px;
  width: 320px; /* Adjust as needed */
  color: #fff;
  font-family: 'Georgia', serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 10px auto;
  float: right; /* Float the infobox to the right */
}

.leather-infobox-title {
  background-color: #353839; /* Same as border */
  padding: 10px;
  font-size: 1.5em;
  text-align: center;
  border-radius: 7px;
  margin-bottom: 15px;
  font-weight: bold;
}

.leather-infobox-content {
  padding: 5px;
}

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

.leather-infobox-section {
  margin-bottom: 10px;
}

.leather-infobox-label {
  font-weight: bold;
  margin-bottom: 2px;
  border-bottom: 1px solid #5c4739;
  padding-bottom: 3px;
}

.leather-infobox-value {
  margin-left: 10px;
}

/* Add specific styles for links */
.leather-infobox a {
  color: #ffcc66; /* Light brown/gold */
  text-decoration: none;
}

.leather-infobox a:hover {
  color: #ffa500; /* Orange */
  text-decoration: underline;
}