Zum Inhalt springen

MediaWiki:Common.css

Aus Pixopedia

Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.

  • Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
  • Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
  • Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
/*******************************
 *  Hintergrund & Body (global)
 *******************************/
body {
    background-color: #060e12;
    padding-top: 5.5rem; 

    background-image:
        radial-gradient(
            ellipse 10% 100% at calc(50% - 800px) center,
            #112733 20%,
            #060e12 75%,
            transparent 100%
        ),
        radial-gradient(
            ellipse 10% 100% at calc(50% + 800px) center,
            #112733 20%,
            #060e12 75%,
            transparent 100%
        );

    background-repeat: no-repeat;
    background-size: auto 100%, auto 100%;
    background-attachment: fixed;
}

/*******************************
 *  Content-Container (global)
 *******************************/
.mw-page-container {
    background-color: #060e1275 !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100%, 100% 100%;

    border-bottom-left-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
    padding: 20px !important;
    margin: 0 auto !important;
    max-width: 1600px;
    margin-top: -4rem;
}

.mw-page-container .mw-content-container {
    background: transparent !important;
}

/*******************************
 *  Eigener Sticky-Header (global)
 *******************************/
#pixo-custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5.5rem;
    z-index: 1000;
    background: transparent;
}

/* Inhalt des Headers auf Containerbreite begrenzen */
#pixo-custom-header-inner {
    box-sizing: border-box;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #060e12f0;
    border-bottom: 1px solid #112733;
    backdrop-filter: blur(8px);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Slots */
#pixo-custom-header-left,
#pixo-custom-header-center,
#pixo-custom-header-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: .75rem;
}

#pixo-custom-header-left {
    justify-content: flex-start;
}

#pixo-custom-header-center {
    justify-content: center;
}

#pixo-custom-header-right {
    justify-content: flex-end;
}

/* Suchbox optional etwas begrenzen, falls im Custom-Header verwendet */
#pixo-custom-header-left .vector-search-box-vue {
    max-width: 260px;
}

/*******************************
 *  Icon-Buttons im Header (global)
 *******************************/
.pixo-header-icon {
    min-width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .6rem;
    font-size: 0.9rem;
    color: #e5f3ff;
    background: #112733;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.pixo-header-icon:hover {
    background: #183646;
}

/* Logo-Link im Header etwas anpassen */
#pixo-custom-header-center .mw-logo {
    margin: 0;
    display: flex;
    align-items: center;
}

/* ========================================
   Pixo-Kacheln (Spiel-Grid)
   ======================================== */
/* Grid-Container für Start-Kacheln */
.pixo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  justify-content: center; /* zentriert das Grid, wenn es schmaler ist */
}

/* BASIS-KARTE */
.pixo-card {
  display: block;
  width: 100%;
  min-height: 105%;
  margin: 0;
  border-radius: 25px;
  background: #31313131;  
  border: 1px solid #f0f0f099; 
  box-shadow: 0 5px 16px #00000080;
  overflow: hidden;
  font-family: inherit;
  flex-direction: column;   /* Links untereinander */
  align-items: center;      /* horizontal zentrieren */
  text-align: center;       /* Text in den Links zentrieren */
  gap: 0.25rem;             /* Abstand zwischen Links */
}

/* Normale Karte mit Hero-Bild */
.pixo-card-hero {
  position: relative;
  width: 100%;
  height: 150px;
  background: transparent;
  overflow: hidden;
}

/* Bild im Hero-Bereich */
.pixo-card-hero img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  background: transparent;
  display: block;
}

/* Karten OHNE Hero-Bild */
.pixo-card--nohero .pixo-card-hero {
  height: auto;                  /* keine feste Höhe */
  padding: 0;
  margin: 0;
  border-radius: 20px;
  background: #31313131; 
  border: 0;
}

/* Falls irgendwo Standard-Rand auf Bildern sitzt, hier nochmal hart entfernen */
.pixo-card-hero a,
.pixo-card-hero img {
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
/* Schwarzer Balken unter dem Hero-Bild */
.pixo-card-title-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 30px;         
  background: #0a0a0ab3;
  padding: 6px 12px;
  box-sizing: border-box;
}

/* Titel rechtsbündig auf der Title-Bar */
.pixo-card-title-text {
  position: static;      
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 4px #000000e6;
  white-space: nowrap;
  padding: 0px 0px 2px 0px;
  text-align: right;     
}

.pixo-card-hero-inner {
  display: inline-block;
}
.pixo-card-body ul {
  list-style: none;      /* keine Punkte */
  margin: 0;
  padding: 0;
}

.pixo-card-body li {
  margin: 0.1rem 0;
}

/* Einzelne Kachel zentriert über die mittlere Spalte setzen */
.pixo-grid > .pixo-card:only-child {
  grid-column: 2 / 3; /* mittlere von 3 Spalten */
}

/*********************************************
 * Hunt Turnier Infobox – Layout & Struktur
 *********************************************/

.hunt-infobox.fo-nttax-infobox {
    float: right;
    clear: right;
    width: 320px;
    max-width: 100%;
    margin: 0 0 1em 1em;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.4;
    border: 1px solid var(--hunt-infobox-border-color);
    background: var(--hunt-infobox-bg);
    box-shadow: 0 8px 24px var(--hunt-infobox-shadow-color);
}

/* Kopf: Titel + Bild */
.hunt-infobox-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--hunt-infobox-header-bg);
    color: var(--hunt-infobox-header-text);
}

.hunt-infobox-title {
    padding: 8px 12px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hunt-infobox-image {
    padding: 8px 12px 10px 12px;
    text-align: center;
    background: var(--hunt-infobox-header-image-bg);
}

.hunt-infobox-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--hunt-infobox-image-shadow);
}

/* Generelle Abschnittsbox */
.hunt-infobox-section {
    padding: 6px 10px;
}

/* Zeilen: Label links, Wert rechts */
.hunt-infobox-row {
    display: grid;
    grid-template-columns: 40% 60%;
    column-gap: 6px;
    padding: 4px 4px;
    align-items: flex-start;
}

/* Alternierende Zeilen (Liquipedia-like) */
.hunt-infobox-section .hunt-infobox-row:nth-child(odd) {
    background: var(--hunt-infobox-row-bg-odd);
}

.hunt-infobox-section .hunt-infobox-row:nth-child(even) {
    background: var(--hunt-infobox-row-bg-even);
}

/* Label-Spalte */
.hunt-infobox-label {
    font-weight: 600;
    text-align: right;
    padding-right: 4px;
    color: var(--hunt-infobox-label-text);
    white-space: nowrap;
}

/* Wert-Spalte */
.hunt-infobox-value {
    text-align: left;
    color: var(--hunt-infobox-value-text);
}

/* Links innerhalb der Infobox */
.hunt-infobox a {
    color: var(--hunt-infobox-link-color);
    text-decoration: none;
    font-weight: 500;
}

.hunt-infobox a:hover {
    text-decoration: underline;
    color: var(--hunt-infobox-link-hover);
}

/* Link-Zeile (Discord etc.) etwas luftiger */
.hunt-infobox-section-links .hunt-infobox-row {
    align-items: center;
}

.hunt-infobox-section-links .hunt-infobox-value {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.hunt-infobox-link img {
    vertical-align: middle;
}

/* Alte Tabellen-Infobox-Reste für .hunt-infobox neutralisieren */
.hunt-infobox.fo-nttax-infobox table,
.hunt-infobox.fo-nttax-infobox tr,
.hunt-infobox.fo-nttax-infobox td,
.hunt-infobox.fo-nttax-infobox th {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Titelzeile ohne extra Box */
.hunt-infobox-title {
    margin: 0 !important;
    padding: 8px 12px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Abschnitt „Anmeldung“ ohne Kartenbox-Effekt */
.hunt-infobox-section-links {
    padding: 6px 10px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Caster-Abschnitt ohne extra Box */
.hunt-infobox-section:last-of-type {
    padding: 6px 10px !important;
    background: transparent !important;
    border-top: 1px solid transparent !important;
    box-shadow: none !important;
}

/* Sicherheitsnetz: keine Rahmen/Hintergründe für Werte-Container,
   falls von anderem CSS (z.B. Karten-Styles) vererbt */
.hunt-infobox-value {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Mobile/kleine Screens: Infobox nicht zu klein, unten statt rechts */
@media (max-width: 800px) {
    .hunt-infobox.fo-nttax-infobox {
        float: none;
        margin: 0 auto 1em auto;
        width: 100%;
        max-width: 420px;
    }
}

.hunt-infobox-casterlist {
    margin: 0;
    padding-left: 1.2em;
}

.hunt-infobox-casterlist li {
    margin: 0;
}

.hunt-infobox.fo-nttax-infobox {

}

/*********************************************
 * Hunt Turnier Infobox – Farben & Theme
 *********************************************/

:root {
    /* Grundbox */
    --hunt-infobox-bg: #060e12f0; /* dunkles semi-transparentes Panel */
    --hunt-infobox-border-color: #243242;
    --hunt-infobox-shadow-color: rgba(0, 0, 0, 0.5);

    /* Header */
    --hunt-infobox-header-bg: linear-gradient(90deg, #182436 0%, #263b57 100%);
    --hunt-infobox-header-text: #ffffff;
    --hunt-infobox-header-image-bg: #060e12;

    /* Bildschatten */
    --hunt-infobox-image-shadow: rgba(0, 0, 0, 0.6);

    /* Zeilen-Hintergründe */
    --hunt-infobox-row-bg-odd: rgba(255, 255, 255, 0.02);
    --hunt-infobox-row-bg-even: rgba(255, 255, 255, 0.06);

    /* Textfarben */
    --hunt-infobox-label-text: #c3d4e6;
    --hunt-infobox-value-text: #f5f7fb;

    /* Links */
    --hunt-infobox-link-color: #6cb6ff;
    --hunt-infobox-link-hover: #9dd1ff;
}