MediaWiki:Common.css: Difference between revisions

From Crafters Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(4 intermediate revisions by the same user not shown)
Line 11: Line 11:
.mc-font {
.mc-font {
   font-family: Minecraftia;
   font-family: Minecraftia;
}
.quote-box {
  display: flex;
  gap: 20px;
  background-color: #90b590;
 
}
/* Player column */
.quote-box .player {
  width: 150px;
  text-align: center;
  flex-shrink: 0;
  border-right: 3px solid #647C8C;
}
/* Player head image */
.quote-box .player-head {
  width: 100%;
  image-rendering: pixelated;
}
/* 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;
  flex-direction: row;
  display: flex;
  align-items: center;
}
}

Latest revision as of 05:41, 17 March 2026

/* 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;
}