MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
imported>Dinoguy1000 (+ wikitable class, imported from Wikipedia's Common.css.) |
imported>Dinoguy1000 No edit summary |
||
| Line 13: | Line 13: | ||
/* style rules for the GRAF tables */ | /* style rules for the GRAF tables */ | ||
table.graf { | table.graf { | ||
width: 100%; | width: 100%; | ||
| Line 27: | Line 26: | ||
/* wikitable class, imported from Wikipedia */ | /* wikitable class, imported from Wikipedia */ | ||
table.wikitable { | table.wikitable { | ||
margin: 1em 1em 1em 0; | margin: 1em 1em 1em 0; | ||
| Line 53: | Line 51: | ||
table.wikitable code { | table.wikitable code { | ||
background-color: transparent; | background-color: transparent; | ||
} | |||
/* navbox class, imported from Wikipedia */ | |||
table.navbox { | |||
background-color: #f9f9f9; | |||
border: 1px solid #aaa; | |||
clear: both; | |||
font-size: 90%; | |||
margin: 1em 0em 0em; | |||
padding: 2px; | |||
text-align: center; | |||
width: 100%; | |||
} | |||
table.navbox th { | |||
background-color: #ccf; | |||
padding-left: 1em; | |||
padding-right: 1em; | |||
} | |||
table.navbox tr:not(:first-child) th { | |||
background-color: #ddf; | |||
} | |||
@media print { | |||
.navbox { | |||
display: none; | |||
} | |||
} | } | ||
/* </nowiki></pre> */ | /* </nowiki></pre> */ | ||
Revision as of 18:32, 4 August 2007
/*
After editing, you can see changes by bypassing your browser's cache:
* '''Internet Explorer''': Press ''Ctrl-F5''
* '''Mozilla/Safari''': Hold ''Shift'' and click ''Reload'' (or press ''Ctrl-Shift-R'')
* '''Opera/Konqueror''': Press ''F5''
You may also want to have a look at Wikipedia's [[wikipedia:MediaWiki:Common.css|MediaWiki:Common.css]] for inspiration, or [[wikipedia:Wikipedia:Catalogue of CSS classes|Wikipedia:Catalogue of CSS classes]] for reference material (not sure how applicable it is here, though...).
Always check with the [http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwiki.xentax.com%2Findex.php%3Ftitle%3DMediaWiki%3ACommon.css%26action%3Draw%26ctype%3Dtext%2Fcss&warning=1&profile=css21&usermedium=all CSS Validation Service] after any changes.
<pre><nowiki> */
/* style rules for the GRAF tables */
table.graf {
width: 100%;
margin: 1em 1em 1em 0;
border: 1px black solid;
border-collapse: collapse;
}
table.graf th, table.graf td {
border: 1px black solid;
padding: 0.2em;
}
/* wikitable class, imported from Wikipedia */
table.wikitable {
margin: 1em 1em 1em 0;
background: #f9f9f9;
border: 1px #aaa solid;
border-collapse: collapse;
}
table.wikitable th, table.wikitable td {
border: 1px #aaa solid;
padding: 0.2em;
}
table.wikitable th {
background: #f2f2f2;
text-align: center;
}
table.wikitable caption {
margin-left: inherit;
margin-right: inherit;
font-weight: bold;
}
table.wikitable code {
background-color: transparent;
}
/* navbox class, imported from Wikipedia */
table.navbox {
background-color: #f9f9f9;
border: 1px solid #aaa;
clear: both;
font-size: 90%;
margin: 1em 0em 0em;
padding: 2px;
text-align: center;
width: 100%;
}
table.navbox th {
background-color: #ccf;
padding-left: 1em;
padding-right: 1em;
}
table.navbox tr:not(:first-child) th {
background-color: #ddf;
}
@media print {
.navbox {
display: none;
}
}
/* </nowiki></pre> */