MediaWiki:Common.css: Difference between revisions

From StrawberryMC
No edit summary
css changes
Line 1: Line 1:
.item-rarity-common    { color: #A9A9A9; font-weight: bold; }
.itembox {
.item-rarity-uncommon  { color: #3DA93D; font-weight: bold; }
  width: 300px;
.item-rarity-rare      { color: #3D3DD9; font-weight: bold; }
  border: 2px solid #333;
.item-rarity-epic      { color: #C33DC3; font-weight: bold; }
  background: #1e1e1e;
.item-rarity-legendary { color: #D1C63D; font-weight: bold; }
  color: white;
.item-rarity-exotic    { color: #007A7A; font-weight: bold; }
  font-family: Minecraftia, monospace;
.item-rarity-admin    { color: #D73737; font-weight: bold; }
  padding: 10px;
  box-shadow: 0 0 10px #000;
  margin-bottom: 12px;
}
 
.itembox .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.4em;
  color: gold;
}
 
.itembox .lore {
  margin-top: 8px;
  font-style: italic;
  color: #AAAAAA;
  font-size: 0.9em;
}
 
.itembox .stats {
  font-size: 0.95em;
  line-height: 1.6;
  margin-top: 8px;
}
 
.itembox .stat-magicFind { color: #94FFDF; }
.itembox .stat-fortune { color: #FFCC00; }
.itembox .stat-blast { color: #D469FF; }
.itembox .stat-moneyMulti { color: #00FF00; }
.itembox .stat-xpMulti { color: #00DAFC; }
.itembox .stat-speed { color: #D9FDFF; }
.itembox .stat-diggingPower { color: #FFA545; }

Revision as of 10:27, 12 October 2025

.itembox {
  width: 300px;
  border: 2px solid #333;
  background: #1e1e1e;
  color: white;
  font-family: Minecraftia, monospace;
  padding: 10px;
  box-shadow: 0 0 10px #000;
  margin-bottom: 12px;
}

.itembox .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.4em;
  color: gold;
}

.itembox .lore {
  margin-top: 8px;
  font-style: italic;
  color: #AAAAAA;
  font-size: 0.9em;
}

.itembox .stats {
  font-size: 0.95em;
  line-height: 1.6;
  margin-top: 8px;
}

.itembox .stat-magicFind { color: #94FFDF; }
.itembox .stat-fortune { color: #FFCC00; }
.itembox .stat-blast { color: #D469FF; }
.itembox .stat-moneyMulti { color: #00FF00; }
.itembox .stat-xpMulti { color: #00DAFC; }
.itembox .stat-speed { color: #D9FDFF; }
.itembox .stat-diggingPower { color: #FFA545; }