MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Michi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Michi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 20: | Zeile 20: | ||
table { | table { | ||
background: #f9f9f9; | |||
/* we don't want the bottom borders of <h2>s to be visible through floated tables */ | /* we don't want the bottom borders of <h2>s to be visible through floated tables */ | ||
background-color: white; | background-color: white; | ||
border: 1px #aaaaaa solid; | border: 1px #aaaaaa solid; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
color: black; | |||
font-size: 100%; | |||
margin: 1em 1em 1em 0; | |||
width: 100%; | |||
} | } | ||
Zeile 37: | Zeile 38: | ||
table th { | table th { | ||
background: #f2f2f2; | background: #f2f2f2; | ||
text-align: | text-align: left; | ||
} | } | ||
Version vom 9. Januar 2009, 20:46 Uhr
/* CSS placed here will be applied to all skins */
/* replace the book in the background with something else */
body {
background: gold;
}
h1, h2, h3, h4, h5, h6 {
color: #FF0000;
}
h2 {
margin-top: 1em;
}
p {
margin-right: 300px;
text-align: justify;
}
table {
background: #f9f9f9;
/* we don't want the bottom borders of <h2>s to be visible through floated tables */
background-color: white;
border: 1px #aaaaaa solid;
border-collapse: collapse;
color: black;
font-size: 100%;
margin: 1em 1em 1em 0;
width: 100%;
}
table th, table td {
border: 1px #aaaaaa solid;
padding: 0.2em;
}
table th {
background: #f2f2f2;
text-align: left;
}
table caption {
margin-left: inherit;
margin-right: inherit;
}
/* Links vom Inhaltsverzeichnis 10 Pixel Abstand */
#toc, .toc, .mw-warning {
margin-left: 10px;
}
/* Überschrift "Inhaltsverzeichnis" ist linksbündig */
#toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle {
text-align: left;
}
/* Keine automatische Nummerierung der Inhaltsverzeichniseinträge */
#toc .tocnumber {
display: none;
}