Zum Inhalt springen

MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Pixopedia
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 19: Zeile 19:
     background-image:
     background-image:
         radial-gradient(
         radial-gradient(
             circle at 0% 50%,        /* links mittig */
             circle at left center,        /* links mittig */
             #183646 0%,            /* innen hell(er) */
             #183646 0%,            /* innen hell(er) */
             #060e12 60%,
             #060e12 60%,
Zeile 25: Zeile 25:
         ),
         ),
         radial-gradient(
         radial-gradient(
             circle at 100% 50%,      /* rechts mittig */
             circle at right center,      /* rechts mittig */
             #183646 0%,
             #183646 0%,
             #060e12 60%,
             #060e12 60%,

Version vom 5. März 2026, 02:33 Uhr

body {
    /* außen heller, zur Mitte dunkler */
    background: radial-gradient(
        circle at center,
        #060e12 0%,    /* Mitte dunkler */
        #183646 40%,
        #010303 75%,   /* hier beginnt es deutlich heller zu werden */
        #000000 100%
    ) !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}

.mw-page-container {
    /* dunkle Grundfläche für den Content-Block */
    background-color: #060e1275 !important;

    /* zwei Radial-Verläufe: links Mitte und rechts Mitte */
    background-image:
        radial-gradient(
            circle at left center,        /* links mittig */
            #183646 0%,             /* innen hell(er) */
            #060e12 60%,
            transparent 61%         /* nach außen ausblenden */
        ),
        radial-gradient(
            circle at right center,      /* rechts mittig */
            #183646 0%,
            #060e12 60%,
            transparent 61%
        );

    background-repeat: no-repeat !important;
    background-size: 50% 100%, 50% 100%;  /* je ein Halbkreis pro Seite */
    
    border-radius: 12px !important;
    padding: 20px !important;
    margin: 0 auto !important;
    max-width: 1600px;
}

/* Innencontainer bleibt transparent */
.mw-page-container .mw-content-container {
    background: transparent !important;
}

/*   =============== 
     Module Ausblenden
     ===============   */

.vector-column-end,
.vector-main-menu-container,
.vector-sticky-pinned-container{
    display: none !important;
}

/* Footer ausblenden */
/*#footer {
    display: none !important;
}*/

/* Hilfemenü und andere Tabs ausblenden */
/*#n-help,
#p-tb .new,
#p-views .mw-editsection-visualeditor {
    display: none !important;
}*/