MediaWiki: Common.css: Unterschied zwischen den Versionen

Aus wiki.climate-thinking.de
Wechseln zu: Navigation, Suche
Zeile 10: Zeile 10:
 
   }
 
   }
  
.bar {
+
.sidenav {
-webkit-border-radius: 30px 10px;
+
  height: 100%; /* Full-height: remove this if you want "auto" height */
border-radius: 30px 10px;
+
  width: 160px; /* Set the width of the sidebar */
 +
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
 +
  z-index: 1; /* Stay on top */
 +
  top: 0; /* Stay at the top */
 +
  left: 0;
 +
  background-color: #111; /* Black */
 +
  overflow-x: hidden; /* Disable horizontal scroll */
 +
  padding-top: 20px;
 +
}
 +
 
 +
/* The navigation menu links */
 +
.sidenav a {
 +
  padding: 6px 8px 6px 16px;
 +
  text-decoration: none;
 +
  font-size: 25px;
 +
  color: #818181;
 +
  display: block;
 +
}
 +
 
 +
/* When you mouse over the navigation links, change their color */
 +
.sidenav a:hover {
 +
  color: #f1f1f1;
 
}
 
}
 
#footer {
 
#footer {

Version vom 21. Februar 2021, 01:46 Uhr

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

@import url('https://fonts.googleapis.com/css?family=Poppins:500|Bree+Serif:400,700||Work+Sans:400,700');


body {
    background: #f1f3f4;
    font-family: 'Work Sans', sans-serif;
    color: #575757;
  }

.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #111; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}
#footer {
    background: #F3D8DD;
 }

#catlinks {
    display:block
}

#toc {
  display:block;
}


/* Folgend wird Schriftart und Farbe der Überschriften - h1, h2 etc. - geändert */

#content h1 {
  font-family: 'Bree', serif;
  font-weight: 500;
  color: #C7105C;
  text-align: left;
}

#content h2,h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #9A0C46;
  text-align: left;
}