Header
From Brackbillwiki
(added table classes) |
|||
(One intermediate revision not shown) | |||
Line 6: | Line 6: | ||
-if you want your code to look nice on this page, put a space at the beginning of each line | -if you want your code to look nice on this page, put a space at the beginning of each line | ||
-This is the default style sheet that you can override : http://editthis.info/wiki/skins/monobook/main.css | -This is the default style sheet that you can override : http://editthis.info/wiki/skins/monobook/main.css | ||
- | |||
- | |||
*/ | */ | ||
- | + | /***** | |
- | + | ** Table formatting | |
- | color: | + | *****/ |
- | + | table.wikitable, | |
- | + | table.prettytable { | |
+ | margin:1em 1em 1em 0; | ||
+ | background:#F9F9F9; | ||
+ | border:1px #AAA solid; | ||
+ | border-collapse:collapse; | ||
+ | } | ||
+ | |||
+ | table.wikitable th, table.wikitable td, | ||
+ | table.prettytable th, table.prettytable td { | ||
+ | border:1px #AAA solid; | ||
+ | padding:0.2em; | ||
+ | } | ||
+ | |||
+ | table.wikitable th, | ||
+ | table.prettytable th { | ||
+ | background:#F2F2F2; | ||
+ | text-align:center; | ||
+ | } | ||
+ | |||
+ | table.wikitable caption, | ||
+ | table.prettytable caption { | ||
+ | margin-left:inherit; | ||
+ | margin-right:inherit; | ||
+ | } | ||
+ | /* Infobox template style */ | ||
+ | .infobox { | ||
+ | border: 1px solid #aaa; | ||
+ | background-color: #f9f9f9; | ||
+ | color: black; | ||
+ | margin-bottom: 0.5em; | ||
+ | margin-left: 1em; | ||
+ | padding: 0.2em; | ||
+ | float: right; | ||
+ | clear: right; | ||
+ | } | ||
+ | .infobox td, | ||
+ | .infobox th { | ||
+ | vertical-align: top; | ||
+ | } | ||
+ | .infobox caption { | ||
+ | font-size: larger; | ||
+ | margin-left: inherit; | ||
+ | } | ||
+ | .infobox.bordered { | ||
+ | border-collapse: collapse; | ||
+ | } | ||
+ | .infobox.bordered td, | ||
+ | .infobox.bordered th { | ||
+ | border: 1px solid #aaa; | ||
+ | } | ||
+ | .infobox.bordered .borderless td, | ||
+ | .infobox.bordered .borderless th { | ||
+ | border: 0; | ||
+ | } | ||
+ | |||
+ | .infobox.sisterproject { | ||
+ | width: 20em; | ||
+ | font-size: 90%; | ||
+ | } | ||
+ | |||
+ | @media print { | ||
+ | .infobox.sisterproject { | ||
+ | display: none; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | /* styles for bordered infobox with merged rows */ | ||
+ | .infobox.bordered .mergedtoprow td, | ||
+ | .infobox.bordered .mergedtoprow th { | ||
+ | border: 0; | ||
+ | border-top: 1px solid #aaa; | ||
+ | border-right: 1px solid #aaa; | ||
+ | } | ||
+ | |||
+ | .infobox.bordered .mergedrow td, | ||
+ | .infobox.bordered .mergedrow th { | ||
+ | border: 0; | ||
+ | border-right: 1px solid #aaa; | ||
+ | } | ||
+ | |||
+ | /* Styles for geography infoboxen, e.g. countries, country subdivisions, cities, etc. */ | ||
+ | .infobox.geography { | ||
+ | text-align: left; | ||
+ | border-collapse: collapse; | ||
+ | line-height: 1.2em; | ||
+ | font-size: 90%; | ||
+ | } | ||
+ | |||
+ | .infobox.geography td, | ||
+ | .infobox.geography th { | ||
+ | border-top: solid 1px #aaa; | ||
+ | padding: 0.4em 0.6em 0.4em 0.6em; | ||
+ | } | ||
+ | .infobox.geography .mergedtoprow td, | ||
+ | .infobox.geography .mergedtoprow th { | ||
+ | border-top: solid 1px #aaa; | ||
+ | padding: 0.4em 0.6em 0.2em 0.6em; | ||
+ | } | ||
+ | |||
+ | .infobox.geography .mergedrow td, | ||
+ | .infobox.geography .mergedrow th { | ||
+ | border: 0; | ||
+ | padding: 0 0.6em 0.2em 0.6em; | ||
+ | } | ||
+ | |||
+ | .infobox.geography .mergedbottomrow td, | ||
+ | .infobox.geography .mergedbottomrow th { | ||
+ | border-top: 0; | ||
+ | border-bottom: solid 1px #aaa; | ||
+ | padding: 0 0.6em 0.4em 0.6em; | ||
+ | } | ||
+ | |||
+ | .infobox.geography .maptable td, | ||
+ | .infobox.geography .maptable th { | ||
+ | border: 0; | ||
+ | padding: 0; | ||
+ | } | ||
</style> | </style> | ||
Current revision as of 16:19, 28 January 2008
<style type="text/css"> /* Notes: -You must log as admin to edit this page -Whatever you enter in this page will be added to the html in the header after the standard style sheet, so you can override styles. -if you want your code to look nice on this page, put a space at the beginning of each line -This is the default style sheet that you can override : http://editthis.info/wiki/skins/monobook/main.css */
/*****
- Table formatting
- /
- Table formatting
table.wikitable, table.prettytable { margin:1em 1em 1em 0; background:#F9F9F9; border:1px #AAA solid; border-collapse:collapse; } table.wikitable th, table.wikitable td, table.prettytable th, table.prettytable td { border:1px #AAA solid; padding:0.2em; } table.wikitable th, table.prettytable th { background:#F2F2F2; text-align:center; } table.wikitable caption, table.prettytable caption { margin-left:inherit; margin-right:inherit; }
/* Infobox template style */ .infobox {
border: 1px solid #aaa; background-color: #f9f9f9; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em; float: right; clear: right;
} .infobox td, .infobox th {
vertical-align: top;
} .infobox caption {
font-size: larger; margin-left: inherit;
} .infobox.bordered {
border-collapse: collapse;
} .infobox.bordered td, .infobox.bordered th {
border: 1px solid #aaa;
} .infobox.bordered .borderless td, .infobox.bordered .borderless th {
border: 0;
}
.infobox.sisterproject {
width: 20em; font-size: 90%;
}
@media print {
.infobox.sisterproject { display: none; }
}
/* styles for bordered infobox with merged rows */ .infobox.bordered .mergedtoprow td, .infobox.bordered .mergedtoprow th {
border: 0; border-top: 1px solid #aaa; border-right: 1px solid #aaa;
}
.infobox.bordered .mergedrow td, .infobox.bordered .mergedrow th {
border: 0; border-right: 1px solid #aaa;
}
/* Styles for geography infoboxen, e.g. countries, country subdivisions, cities, etc. */ .infobox.geography {
text-align: left; border-collapse: collapse; line-height: 1.2em; font-size: 90%;
}
.infobox.geography td, .infobox.geography th {
border-top: solid 1px #aaa; padding: 0.4em 0.6em 0.4em 0.6em;
} .infobox.geography .mergedtoprow td, .infobox.geography .mergedtoprow th {
border-top: solid 1px #aaa; padding: 0.4em 0.6em 0.2em 0.6em;
}
.infobox.geography .mergedrow td, .infobox.geography .mergedrow th {
border: 0; padding: 0 0.6em 0.2em 0.6em;
}
.infobox.geography .mergedbottomrow td, .infobox.geography .mergedbottomrow th {
border-top: 0; border-bottom: solid 1px #aaa; padding: 0 0.6em 0.4em 0.6em;
}
.infobox.geography .maptable td, .infobox.geography .maptable th {
border: 0; padding: 0;
}
</style>
<script type="text/javascript"> //Feel free to add your javascript code here. </script>