MediaWiki:Citizen.css: Unterschied zwischen den Versionen
Aus Lost Dreams Of Tomorrow Wiki
Die Seite wurde geleert. Markierung: Geleert |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* ======================================== | |||
CITIZEN – GLASS SIDEBAR + BACKGROUND ONLY | |||
======================================== */ | |||
/* ===== Page Background ===== */ | |||
body { | |||
background-color: #000; | |||
background-image: url(https://lostdreamsoftomorrow.wiki/images/resources/Background.png); | |||
background-repeat: no-repeat; | |||
background-position: center top; | |||
background-size: cover; | |||
background-attachment: fixed; | |||
} | |||
/* Mobile Fix */ | |||
@media (max-width: 999px) { | |||
body { | |||
background-attachment: scroll; | |||
} | |||
} | |||
/* ===== Glass Sidebar ===== */ | |||
#mw-navigation, | |||
.mw-portlet { | |||
background: rgba(0, 0, 0, 0.65); | |||
backdrop-filter: blur(6px); | |||
-webkit-backdrop-filter: blur(6px); | |||
border: 1px solid rgba(120, 120, 160, 0.3); | |||
} | |||
/* Sidebar Headings */ | |||
.mw-portlet h3 { | |||
color: #ffffff; | |||
border-bottom: 1px solid rgba(255, 255, 255, 0.25); | |||
} | |||
/* Sidebar Links */ | |||
.mw-portlet a { | |||
color: #ffffff; | |||
} | |||
.mw-portlet a:hover { | |||
color: #0075ae; | |||
} | |||
Version vom 11. Januar 2026, 20:28 Uhr
/* ========================================
CITIZEN – GLASS SIDEBAR + BACKGROUND ONLY
======================================== */
/* ===== Page Background ===== */
body {
background-color: #000;
background-image: url(https://lostdreamsoftomorrow.wiki/images/resources/Background.png);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
background-attachment: fixed;
}
/* Mobile Fix */
@media (max-width: 999px) {
body {
background-attachment: scroll;
}
}
/* ===== Glass Sidebar ===== */
#mw-navigation,
.mw-portlet {
background: rgba(0, 0, 0, 0.65);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border: 1px solid rgba(120, 120, 160, 0.3);
}
/* Sidebar Headings */
.mw-portlet h3 {
color: #ffffff;
border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
/* Sidebar Links */
.mw-portlet a {
color: #ffffff;
}
.mw-portlet a:hover {
color: #0075ae;
}