Zum Inhalt springen

MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Pixopedia
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 15: Zeile 15:
     background-color: #060e1275 !important;
     background-color: #060e1275 !important;


    /* zwei Radial-Verläufe */
     background-image:
     background-image:
         radial-gradient(
         radial-gradient(
             circle at left center,  /* links mittig */
             ellipse 10% 100% at left center,  /* links: 10% breit, 100% hoch */
             #183646 0%,
             #183646 0%,
             #060e12 60%,
             #060e12 60%,
Zeile 24: Zeile 23:
         ),
         ),
         radial-gradient(
         radial-gradient(
             circle at right center,  /* rechts mittig */
             ellipse 10% 100% at right center,  /* rechts: 10% breit, 100% hoch */
             #183646 0%,
             #183646 0%,
             #060e12 60%,
             #060e12 60%,
Zeile 31: Zeile 30:


     background-repeat: no-repeat !important;
     background-repeat: no-repeat !important;
    background-size: 100% 100%, 100% 100%;  /* Gradients füllen den Container */


    /* Jeder Verlauf als großer Kreis, der über den Rand ragt */
     border-radius: 12px !important;
    background-size: 20% 90%, 20% 90%;
    background-position: left center, right center;
 
     border-radius: 20px !important;
     padding: 20px !important;
     padding: 20px !important;
     margin: 0 auto !important;
     margin: 0 auto !important;
Zeile 42: Zeile 38:
}
}


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


/*  ===============  
/*  ===============  

Version vom 5. März 2026, 02:44 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 {
    background-color: #060e1275 !important;

    background-image:
        radial-gradient(
            ellipse 10% 100% at left center,   /* links: 10% breit, 100% hoch */
            #183646 0%,
            #060e12 60%,
            transparent 61%
        ),
        radial-gradient(
            ellipse 10% 100% at right center,  /* rechts: 10% breit, 100% hoch */
            #183646 0%,
            #060e12 60%,
            transparent 61%
        );

    background-repeat: no-repeat !important;
    background-size: 100% 100%, 100% 100%;  /* Gradients füllen den Container */

    border-radius: 12px !important;
    padding: 20px !important;
    margin: 0 auto !important;
    max-width: 1600px;
}

.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;
}*/