MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus TechDo IS Wiki
Wechseln zu: Navigation, Suche
 
(17 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 +
@import url("https://fonts.googleapis.com/css?family=Anton|Anton")
 +
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
 
p.main-title {
 
p.main-title {
   font-size: 50px;
+
   font-size: 250%;
 
   line-height: 1.2em;
 
   line-height: 1.2em;
 
   border: 1px solid gray;
 
   border: 1px solid gray;
 
}
 
}
  
 +
div.autosize img { max-width: 100%; height: auto; width: auto\9; /* ie8 */ }
  
 
.fancytree ul {
 
.fancytree ul {
Zeile 27: Zeile 30:
 
}
 
}
  
 +
.padleft40 {
 +
  padding-left: 40px;
 +
}
  
img.autosize { max-width: 100%; height: auto; width: auto\9; /* ie8 */ }
+
.toc {
 +
  display: block;
 +
}
  
$(document).ready( function() {
+
.toctile {
   var tree = $('#wikitext-sidebar');
+
   text-align: left;
  $('#p-logo').after( tree.html() );
+
}
   tree.remove();
+
 
});
+
 
 +
.InProcessing a {
 +
  color: maroon !important;
 +
}
 +
 
 +
.InProcessing strong {
 +
   color: maroon;
 +
}
 +
 
 +
.done a {
 +
  color: green !important;
 +
}
 +
 
 +
.done strong {
 +
  color: green;
 +
}

Aktuelle Version vom 12. Oktober 2020, 09:23 Uhr

@import url("https://fonts.googleapis.com/css?family=Anton|Anton")
 
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
p.main-title {
  font-size: 250%;
  line-height: 1.2em;
  border: 1px solid gray;
}
 
div.autosize img { max-width: 100%; height: auto; width: auto\9; /* ie8 */ }
 
.fancytree ul {
    background: none;
    border: none;
    font-size: 12px;
}
ul.fancytree-container {
    outline: 0;
    border: none;
    overflow: hidden;
}
.fancytree p {
    display: none;
}
span.fancytree-title {
    cursor: default;
}
span.fancytree-title a {
    color: black;
}
 
.padleft40 {
  padding-left: 40px;
}
 
.toc {
  display: block;
}
 
.toctile {
  text-align: left;
}
 
 
.InProcessing a {
  color: maroon !important;
}
 
.InProcessing strong {
  color: maroon;
}
 
.done a {
  color: green !important;
}
 
.done strong {
  color: green;
}

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ p.main-title {

 font-size: 50px;
 line-height: 1.2em;
 border: 1px solid gray;

}


.fancytree ul {

   background: none;
   border: none;
   font-size: 12px;

} ul.fancytree-container {

   outline: 0;
   border: none;
   overflow: hidden;

} .fancytree p {

   display: none;

} span.fancytree-title {

   cursor: default;

} span.fancytree-title a {

   color: black;

}


img.autosize { max-width: 100%; height: auto; width: auto\9; /* ie8 */ }

$(document).ready( function() {

 var tree = $('#wikitext-sidebar');
 $('#p-logo').after( tree.html() );
 tree.remove();

});