MediaWiki:Common.css : Différence entre versions

De La Quadrature du Net
Aller à la navigationAller à la recherche
m (spécifique à Monobook, déplacé vers la feuille de style concernée)
(test)
Ligne 1 : Ligne 1 :
/* CSS placed here will be applied to all skins */
+
body {
 
 
/* Infobox (en réalisation */
 
 
 
.infobox_v2 { /* monobookocentré debut */
 
background: #f9f9f9;
 
color: #000;
 
font-size:90%;
 
line-height:1.1em;
 
float:right;
 
clear:right;
 
margin:0 0 .5em 1em; /* haut droite bas gauche */
 
width:300px;
 
border: 1px solid #aaa;
 
padding: 0.1em;
 
}
 
 
.infobox_v2 th {
 
vertical-align:top;
 
text-align:left;
 
}
 
 
.infobox_v2 .entete {
 
height:45px;
 
vertical-align:middle;
 
text-align:center;
 
font-size:150%;
 
font-weight:bolder;
 
line-height:1.2em;
 
color:#000
 
}
 
 
.infobox_v2 .media { /* css V2 pour [[Modèle:Son]], etc. */
 
height:35px;
 
vertical-align:middle;
 
text-align:center;
 
font-weight:bolder;
 
color:#000
 
}
 
 
 
 
/* 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 {
 
  background: #fdfdfd;    /* Background color */
 
}
 
.navbox-list {
 
  border-color: #fdfdfd;  /* Must match background color */
 
}
 
.navbox-title,
 
table.navbox th {
 
  background: #ccccff;    /* Level 1 color */
 
}
 
.navbox-abovebelow,
 
.navbox-group,
 
.navbox-subgroup .navbox-title {
 
  background: #ddddff;    /* Level 2 color */
 
}
 
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
 
  background: #e6e6ff;    /* Level 3 color */
 
}
 
.navbox-even {
 
  background: #f7f7f7;    /* Even row striping */
 
}
 
.navbox-odd {
 
  background: transparent; /* Odd row striping */
 
}
 
 
.collapseButton {          /* 'show'/'hide' buttons created dynamically */
 
    float: right;          /* by the CollapsibleTables javascript in    */
 
    font-weight: normal;  /* [[MediaWiki:Common.js]]are styled here    */
 
    text-align: right;    /* so they can be customised.                */
 
    width: auto;
 
}
 
.navbox .collapseButton {  /* In navboxes, the show/hide button balances */
 
    width: 6em;            /* the vde links from [[Template:Tnavbar]],  */
 
}                          /* so they need to be the same width.        */
 
 
 
/** Collapsible tables *********************************************************
 
*
 
*  Description: Allows tables to be collapsed, showing only the header. See
 
*                        http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
 
*  Maintainers: [[en:User:R. Koot]]
 
*/
 
 
table.collapsed tr.collapsible {
 
        display: none;
 
}
 
 
.collapseButton {                /* 'show'/'hide' buttons created dynamically by the              */
 
        float: right;              /* CollapsibleTables JavaScript in [[MediaWiki:Common.js]] */
 
        font-weight: normal;        /* are styled here so they can be customised.              */
 
        text-align: right;
 
        width: auto;
 
}
 
 
 
/* Highlight clicked reference in blue to help navigation */
 
ol.references li:target,
 
sup.reference:target,
 
span.citation:target {
 
background-color: #DEF;
 
 
}
 
}

Version du 31 juillet 2015 à 12:19

body {
}