MediaWiki: Common.css: Unterschied zwischen den Versionen

Aus GuitarStore
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „#→‎Das folgende CSS wird für alle Benutzeroberflächen geladen.: body { background: linear-gradient(135deg, #111 0%, #333 100%); color: #f1f1f1; font-family: 'Inter', sans-serif; } a { color: #66b2ff; } a:hover { color: #99d1ff; text-decoration: none; } #tweeki-navbar { background-color: rgba(0,0,0,0.7); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255,255,255,0.2); } #content { background-colo…“)
 
Keine Bearbeitungszusammenfassung
Zeile 11: Zeile 11:
     color: #99d1ff;
     color: #99d1ff;
     text-decoration: none;
     text-decoration: none;
}
#tweeki-navbar {
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
#content {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}
}

Version vom 31. Oktober 2025, 17:30 Uhr

#/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
body {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #f1f1f1;
    font-family: 'Inter', sans-serif;
}
a {
    color: #66b2ff;
}
a:hover {
    color: #99d1ff;
    text-decoration: none;
}