MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Der Kampf um Naivara
(Die Seite wurde neu angelegt: „→‎Das folgende CSS wird für alle Benutzeroberflächen geladen.: <style> .background{ background-image: url(/images/bg.jpg); background-attachment:…“)
 
Zeile 1: Zeile 1:
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
  
<style>
+
/* Changes the background color of the bottom and left of each page, up to behind half of the logo: */
.background{
+
body {
    background-image: url(/images/bg.jpg);
+
  background: rgb(32, 34, 37);
    background-attachment: fixed;
+
}
 +
 
 +
/* Changes the background color behind the top half of the logo and at top of each page: */
 +
#mw-page-base {
 +
  background: rgb(32, 34, 37);
 
}
 
}
</style>
 

Version vom 16. April 2021, 17:51 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

/* Changes the background color of the bottom and left of each page, up to behind half of the logo: */
body {
  background: rgb(32, 34, 37);
}

/* Changes the background color behind the top half of the logo and at top of each page: */
#mw-page-base {
  background: rgb(32, 34, 37);
}