User:Sascha Claus/monobook.css
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
The accompanying .js page for this skin can be added at User:Sascha Claus/monobook.js. |
/*
erstmal eine lesbare Schriftart einstellen
*/
#content {
font-family: Georgia, serif;
font-size: 16px;
}
/*
Inhaltsverzeichnis mit runden Ecken ausstatten und etwas zur Seite rücken
mangels ausreichender Klassierung muss das "A * B * C * ..."-TOC per Selektor
ausgewählt werden
*/
table#toc,
table[style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: rgb(249, 249, 249); font-size: 95%;"][align="center"][border="0"] {
-moz-border-radius: 2em;
margin-left: -1.5em;
padding-left: 1.5em;
}
/*
Inhaltsverzeichnis-ausblenden-Verweis ausblenden
*/
span.toctoggle {
display: none;
}
/*
große Überschriften zwängen sich doch nicht neben Bilder und Tabellen,
die machen unter fließenden Objekten weiter.
*//*
h1, h2 {
clear: both;
}*/
/*
Abschnitte »vorformatierten« Textes wie diesen hier in seine Schranken weisen
damit er nicht kilometerweit den Bildschirm verlässt sondern Bildlaufleisten
anbietet
*/
pre {
overflow: auto;
}
/*
Tabellenzellenüberschriften zentrieren
*/
th {
text-align: center;
}
/*
Tabellenzellen oben ausrichten
*/
td {
vertical-align: top;
}
/*
Metadaten (z. Zt. nur bei Personen) anzeigen
*/
table.metadata {
display:block;
}
/*
die Linie über Sachen wie Kategorien u. a. Bausteine ganz an den Rand
verlängern
*/
#catlinks, #Vorlage_BK { /*#printfooter*/
margin-left: -1em;
margin-right: -1em;
padding-left: 1.5em;
padding-right: 1.5em;
}
/*
alles am Seitenende, was in Kästen sitzt, mit runden Ecken ausstatten
*/
table.metadata,
div.BoxenVerschmelzen,
div.NavFrame,
div.NavHead,
div.NavPic,
div.interbox,
div#p-cactions li,
div#p-cactions li a {
-moz-border-radius: 1em;
}
/*
Urheberrechtswarnung bei Seite bearbeiten ausblenden
*/
div#editpage-copywarn-copywarn {
display: none;
}