MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 87: | Zeile 87: | ||
pointer-events: none; | pointer-events: none; | ||
background: transparent; /* kein Block-Balken */ | background: transparent; /* kein Block-Balken */ | ||
} | |||
/* RUNDES ICON RECHTS (OPTIONAL) */ | |||
.pixo-card-icon img { | |||
width: 40px; | |||
height: 40px; | |||
border-radius: 50%; | |||
box-shadow: 0 0 8px rgba(0,0,0,0.8); | |||
object-fit: cover; | |||
} | } | ||
Version vom 12. Februar 2026, 01:51 Uhr
/* ========================================
PIXO.GG - Startseite
======================================== */
/* (Optional) Teile der Standard-UI auf der Startseite verstecken */
body.page-Start #mw-panel,
body.page-Start #p-tb,
body.page-Start #footer,
body.page-Start .mw-editsection,
body.page-Start #mw-navigation {
display: none !important;
}
body.page-Start #content {
margin: 0;
padding: 0;
}
body.page-Start #mw-content-text {
padding: 0;
}
/* ========================================
PIXO.GG - Startseite
======================================== */
/* (Optional) Teile der Standard-UI auf der Startseite verstecken */
body.page-Start #mw-panel,
body.page-Start #p-tb,
body.page-Start #footer,
body.page-Start .mw-editsection,
body.page-Start #mw-navigation {
display: none !important;
}
body.page-Start #content {
margin: 0;
padding: 0;
}
body.page-Start #mw-content-text {
padding: 0;
}
/* ========================================
Pixo-Kacheln (Spiel-Grid)
======================================== */
/* BASIS-KARTE */
.pixo-card {
display: block;
width: 100%;
margin: 0;
border-radius: 10px;
border: 1px solid #333;
background: #101218;
color: #fff;
box-shadow: 0 4px 14px rgba(0,0,0,0.5);
overflow: hidden;
font-family: inherit;
}
/* HERO-BILD OBEN */
.pixo-card-hero {
position: relative;
width: 100%;
height: 120px; /* Bannerhöhe, bei Bedarf anpassen */
overflow: hidden;
}
.pixo-card-hero img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* TITEL LEICHT INS BILD GELEGT */
.pixo-card-titlebar {
position: absolute;
left: 14px;
bottom: 10px;
right: 14px;
display: flex;
align-items: center;
justify-content: space-between;
pointer-events: none;
background: transparent; /* kein Block-Balken */
}
/* RUNDES ICON RECHTS (OPTIONAL) */
.pixo-card-icon img {
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 0 8px rgba(0,0,0,0.8);
object-fit: cover;
}
.pixo-card-title-text {
font-size: 1rem;
font-weight: 700;
color: #fff;
text-shadow: 0 0 4px rgba(0,0,0,0.9);
}