MediaWiki:Common.css

From Crafters Wiki
Revision as of 07:04, 16 March 2026 by Sek (talk | contribs)
Jump to navigation Jump to search

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.
/* CSS placed here will be applied to all skins */
html.client-darkmode #p-logo {
    filter: invert(1) hue-rotate(180deg);
}

@font-face {
  font-family: Minecraftia;
  src: url('https://wiki.crafters.one/mediawiki/resources/assets/Minecraftia.ttf');
}

.mc-font {
  font-family: Minecraftia;
}

/* Quote container */
.quote-box {
  display: flex;
  gap: 20px;

  background: rgb(230, 230, 230);
  border: 4px solid #647C8C;
  padding: 20px;
  max-width: 800px;
}

/* Player column */
.quote-box .player {
  width: 150px;
  text-align: center;
  flex-shrink: 0;
}

/* Player head image */
.quote-box .player-head {
  width: 100%;
  image-rendering: pixelated;
  border: 3px solid #647C8C;
}

/* Player name */
.quote-box .player-name {
  margin-top: 8px;
  font-weight: bold;
  color: #000000;
  font-size: 18px;
}

/* Optional title */
.quote-box .player-title {
  margin-top: 4px;
  font-size: 14px;
  color: #000000;
  opacity: 0.65;
  font-style: italic;
}

.quote-box .quote {
  color: #000000;
  font-size: 14px;
  line-height: 1.2;

  display: flex;
  align-items: center;
}