Created page with ".hypixel-infobox { width: 280px; background: #111; border: 2px solid #2b4cff; box-shadow: inset 0 0 0 2px #0a1c3a; padding: 12px; margin: 0 0 1em 0; color: #fff; font-family: Minecraft, Arial, sans-serif; } .hypixel-infobox-title { text-align: center; font-size: 18px; font-weight: bold; margin-bottom: 10px; } .hypixel-infobox-image { text-align: center; margin-bottom: 10px; } .hypixel-infobox-row { display: flex; justify-content: space-..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
.hypixel-infobox {
.hypixel-infobox {
   width: 280px;
   width: 280px;
  float: right;
  margin: 0 0 1em 1.5em;
   background: #111;
   background: #111;
   border: 2px solid #2b4cff;
   border: 2px solid #2b4cff;
   box-shadow: inset 0 0 0 2px #0a1c3a;
   box-shadow: inset 0 0 0 2px #0a1c3a;
   padding: 12px;
   padding: 12px;
  margin: 0 0 1em 0;
 
   color: #fff;
   color: #fff;
   font-family: Minecraft, Arial, sans-serif;
   font-family: Minecraft, Arial, sans-serif;
}
}


/* Title */
.hypixel-infobox-title {
.hypixel-infobox-title {
   text-align: center;
   text-align: center;
Line 17: Line 21:
}
}


/* Image */
.hypixel-infobox-image {
.hypixel-infobox-image {
   text-align: center;
   text-align: center;
Line 22: Line 27:
}
}


/* Row layout (Category — Value) */
.hypixel-infobox-row {
.hypixel-infobox-row {
   display: flex;
   display: flex !important;
  flex-direction: row !important;
  align-items: center;
   justify-content: space-between;
   justify-content: space-between;
  gap: 10px;
   font-size: 14px;
   font-size: 14px;
   padding-top: 6px;
   padding-top: 6px;
   border-top: 1px solid #333;
   border-top: 1px solid #333;
  white-space: nowrap;
}
/* MediaWiki paragraph fix */
.hypixel-infobox-row p {
  margin: 0 !important;
  display: inline;
}
}


/* Left label */
.hypixel-infobox-row .label {
.hypixel-infobox-row .label {
   color: #aaa;
   color: #aaa;
  flex-shrink: 0;
  display: inline-block;
}
/* Right value */
.hypixel-infobox-row .value {
  text-align: right;
  display: inline-block;
  flex-shrink: 0;
}
}


Line 37: Line 65:
   color: #4da6ff;
   color: #4da6ff;
   text-decoration: none;
   text-decoration: none;
}
/* Target any direct children as fallback */
.hypixel-infobox-row > * {
  flex: 0 0 auto;
}
/* Mobile behavior (stacked like Hypixel) */
@media (max-width: 768px) {
  .hypixel-infobox {
    float: none;
    margin: 0 auto 1em auto;
    width: 100%;
    max-width: 320px;
  }
}
}

Latest revision as of 05:13, 16 December 2025

.hypixel-infobox {
  width: 280px;
  float: right;
  margin: 0 0 1em 1.5em;

  background: #111;
  border: 2px solid #2b4cff;
  box-shadow: inset 0 0 0 2px #0a1c3a;
  padding: 12px;

  color: #fff;
  font-family: Minecraft, Arial, sans-serif;
}

/* Title */
.hypixel-infobox-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Image */
.hypixel-infobox-image {
  text-align: center;
  margin-bottom: 10px;
}

/* Row layout (Category — Value) */
.hypixel-infobox-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  font-size: 14px;
  padding-top: 6px;
  border-top: 1px solid #333;

  white-space: nowrap;
}

/* MediaWiki paragraph fix */
.hypixel-infobox-row p {
  margin: 0 !important;
  display: inline;
}

/* Left label */
.hypixel-infobox-row .label {
  color: #aaa;
  flex-shrink: 0;
  display: inline-block;
}

/* Right value */
.hypixel-infobox-row .value {
  text-align: right;
  display: inline-block;
  flex-shrink: 0;
}

.hypixel-infobox-row .value a {
  color: #4da6ff;
  text-decoration: none;
}

/* Target any direct children as fallback */
.hypixel-infobox-row > * {
  flex: 0 0 auto;
}

/* Mobile behavior (stacked like Hypixel) */
@media (max-width: 768px) {
  .hypixel-infobox {
    float: none;
    margin: 0 auto 1em auto;
    width: 100%;
    max-width: 320px;
  }
}