MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 81: | Zeile 81: | ||
left: 0; | left: 0; | ||
right: 0; | right: 0; | ||
bottom: | bottom: 0; /* direkt am unteren Bildrand */ | ||
padding: | padding: 4px 10px 6px 10px; | ||
background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); | |||
background: linear-gradient(to top, rgba(0,0,0,0. | |||
box-sizing: border-box; | box-sizing: border-box; | ||
} | } | ||
.pixo-card-title-text { | |||
font-size: 0.9rem; | |||
font-weight: 700; | |||
color: #fff; | |||
text-shadow: 0 0 4px rgba(0,0,0,0.9); | |||
} | |||
/* RUNDES ICON RECHTS (OPTIONAL) */ | /* RUNDES ICON RECHTS (OPTIONAL) */ | ||
| Zeile 99: | Zeile 101: | ||
box-shadow: 0 0 8px rgba(0,0,0,0.8); | box-shadow: 0 0 8px rgba(0,0,0,0.8); | ||
object-fit: cover; | object-fit: cover; | ||
} | } | ||
Version vom 12. Februar 2026, 02:22 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: 140px; /* 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: 0;
right: 0;
bottom: 0; /* direkt am unteren Bildrand */
padding: 4px 10px 6px 10px;
background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
box-sizing: border-box;
}
.pixo-card-title-text {
font-size: 0.9rem;
font-weight: 700;
color: #fff;
text-shadow: 0 0 4px rgba(0,0,0,0.9);
}
/* 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;
}