|
|
Ligne 1 : |
Ligne 1 : |
| /* CSS placed here will be applied to all skins */
| | body{ |
| /* <source lang="css"> */
| |
|
| |
| /* Page d'accueil */
| |
| .page-Accueil * .firstHeading, .page-Accueil * h3#siteSub,
| |
| .page-Accueil * #contentSub {
| |
| display:none;
| |
| }
| |
| | |
| /* Main page fixes */
| |
| #interwiki-completelist {
| |
| font-weight: bold;
| |
| }
| |
| body.page-Main_Page #ca-delete {
| |
| display: none !important;
| |
| }
| |
|
| |
| body.page-Main_Page #mp-topbanner {
| |
| clear: both;
| |
| }
| |
|
| |
| /* Edit window toolbar */
| |
| #toolbar {
| |
| height: 22px;
| |
| margin-bottom: 6px;
| |
| }
| |
|
| |
| /* Margins for <ol> and <ul> */
| |
| #content ol, #content ul,
| |
| #mw_content ol, #mw_content ul {
| |
| margin-bottom: 0.5em;
| |
| }
| |
|
| |
| /* Make the list of references smaller */
| |
| ol.references {
| |
| font-size: 100%;
| |
| }
| |
| .references-small {
| |
| font-size: 90%;
| |
| }
| |
|
| |
| /* VALIDATOR NOTICE: the following is correct, but the W3C validator doesn't accept it */
| |
| /* -moz-* is a vendor-specific extension (CSS 2.1 4.1.2.1) */
| |
| /* column-count is from the CSS3 module "CSS Multi-column Layout" */
| |
| /* Please ignore any validator errors caused by these two lines */
| |
| .references-2column {
| |
| font-size: 90%;
| |
| -moz-column-count: 2;
| |
| -webkit-column-count: 2;
| |
| column-count: 2;
| |
| }
| |
|
| |
| /* Highlight clicked reference in blue to help navigation */
| |
| ol.references > li:target,
| |
| sup.reference:target,
| |
| cite:target {
| |
| background-color: #DEF;
| |
| }
| |
|
| |
| /* Ensure refs in table headers and the like aren't bold or italic */
| |
| sup.reference {
| |
| font-weight: normal;
| |
| font-style: normal;
| |
| }
| |
|
| |
|
| |
| /* Styling for citations */
| |
| cite {
| |
| font-style: normal;
| |
| word-wrap: break-word;
| |
| }
| |
|
| |
| /* For linked citation numbers and document IDs, where
| |
| the number need not be shown on a screen or a handheld,
| |
| but should be included in the printed version
| |
| */
| |
| @media screen, handheld, projection {
| |
| cite *.printonly {
| |
| display: none;
| |
| }
| |
| }
| |
|
| |
|
| |
| /* wikitable/prettytable class for skinning normal tables */
| |
| table.wikitable,
| |
| table.prettytable {
| |
| margin: 1em 1em 1em 0;
| |
| background: #f9f9f9;
| |
| border: 1px #aaa solid;
| |
| border-collapse: collapse;
| |
| }
| |
| .wikitable th, .wikitable td,
| |
| .prettytable th, .prettytable td {
| |
| border: 1px #aaa solid;
| |
| padding: 0.2em;
| |
| }
| |
| .wikitable th,
| |
| .prettytable th {
| |
| background: #f2f2f2;
| |
| text-align: center;
| |
| }
| |
| .wikitable caption,
| |
| .prettytable caption {
| |
| font-weight: bold;
| |
| }
| |
|
| |
| /* Default skin for navigation boxes */
| |
| table.navbox { /* Navbox container style */
| |
| border: 1px solid #aaa;
| |
| width: 100%;
| |
| margin: auto;
| |
| clear: both;
| |
| font-size: 88%;
| |
| text-align: center;
| |
| padding: 1px;
| |
| }
| |
| table.navbox + table.navbox { /* Single pixel border between adjacent navboxes */
| |
| margin-top: -1px; /* (doesn't work for IE6, but that's okay) */
| |
| }
| |
| .navbox-title,
| |
| .navbox-abovebelow,
| |
| table.navbox th {
| |
| text-align: center; /* Title and above/below styles */
| |
| padding-left: 1em;
| |
| padding-right: 1em;
| |
| }
| |
| .navbox-group { /* Group style */
| |
| white-space: nowrap;
| |
| text-align: right;
| |
| font-weight: bold;
| |
| padding-left: 1em;
| |
| padding-right: 1em;
| |
| }
| |
| .navbox, .navbox-subgroup {
| |
| | |