« MediaWiki:Vector.css » : différence entre les versions

De Les Archives de Vault-Tec
Kharmitch (discussion | contributions)
mAucun résumé des modifications
Aucun résumé des modifications
(232 versions intermédiaires par 3 utilisateurs non affichées)
Ligne 1 : Ligne 1 :
/* Le CSS placé ici affectera les utilisateurs de l’habillage Vector. */
/*Alerte (0)
Notification (0)
Liste de suivi


/* ### IMPORTATION DE L'ANCIEN CONTENU DE COMMON.CSS ### */
Outils personnels
Discussion
Brouillon
Préférences
Contributions
Se déconnecter


/* Importation des polices */
    ---------------------------------------------------
@font-face{
    Variables
     font-family : "Overseer";
     ---------------------------------------------------
     src : url("/resources/fonts/Overseer.ttf") format("truetype"),
     Ces variables définissent les couleurs utilisés par
          url("/resources/fonts/Overseer.woff") format("woff");
    le wiki.
}
    ---------------------------------------------------
@font-face{
*/
    font-family : "OverseerItalic";
    src : url("/resources/fonts/OverseerItalic.ttf") format("truetype"),
          url("/resources/fonts/OverseerItalic.woff") format("woff");
}


/* Taille de la police dans les pages css */
:root {
.css.source-css {
  --background-color-dp-00: #a9ceea;
    font-size: 11px;
  --background-color-dp-01: #b1d2ec;
  --background-color-dp-02: #bad7ee;
  --background-color-dp-03: #c2dcf0;
  --background-color-dp-04: #cbe1f2;
  --background-color-dp-06: #d4e6f4;
  --background-color-dp-08: #dcebf6;
  --background-color-dp-12: #e5f0f8;
  --background-color-dp-16: #edf5fa;
  --background-color-dp-24: #f6fafc;
  --background-img: no-repeat url(avt-main-25-background.jpg);
  --background-main: #fff;
  --box-background-color: #ffffff00;
  --box-shadow: 0 0 10px #a9ceea;
  --color-base: black;
  --color-warning: #ffcc33;
  --color-link: #0645ad;
  --color-link-visited: #3c88ff;
  --border-color-base: #f0f0f0;
}
}


/* Taille de la police dans les pages js */
/*
.javascript.source-javascript {
    ---------------------------------------------------  
     font-size: 11px;
     Mode sombre
}
    ---------------------------------------------------  
 
    Partie régissant le mode sombre
.infobox {
    ---------------------------------------------------
  /* monobookocentré debut */
  background: #f9f9f9;
  color: #000;
  font-size: 90%;
  line-height: 1.1em;
  float: right;
  clear: right;
  /* haut droite bas gauche */
  margin: 0 0 .5em 1em;
  width: 200px;
  border: 1px solid #aaa;
  padding: 0.1em;
}
.infobox th {
  vertical-align: super;
  text-align: left;
}
.infobox .entete {
  height: 45px;
  vertical-align: middle;
  text-align: center;
  font-size: 150%;
  font-weight: bolder;
  line-height: 1.2em;
  color: #000;
}
.infobox .media {
  /* css V2 pour [[Modèle: Son]], etc. */
  height: 35px;
  vertical-align: middle;
  text-align: center;
  font-weight: bolder;
  color: #000;
}
/* Décoration des titres de sous-chapitre. */
h1.firstHeading {
  /* bug de rendu si icône de titre ou coordonnées déplacées dans le titre */
  overflow: visible;
}
.mw-body h1,
.mw-body h2 {
  padding-top: 0.65em;
}
/* monobookocentré  */
.mw-body h3 {
  padding-top: 0.6em;
  border-bottom: dotted 1px #AAA;
}
.mw-body h4,
.mw-body h5,
.mw-body h6 {
  padding-top: 0.55em;
  border-bottom: dotted 1px #DDD;
}
/* Sous-titre ([[Modèle:Sous-titre]]) */
h1 #sous_titre_h1 {
  display: block;
  font-size: 0.7em;
  line-height: 1.3em;
  margin: 0.2em 0 0 0.5em;
}
/* Titres de sections modifiés par JS */
.modifiedSectionTitle .editsection, .mw-editsection {
  float: none;
  font-size: x-small;
}
.modifiedSectionTitle .mw-headline  {
  margin-right: 0.3em;
}
.italique {
  font-style: italic;
}
.italique i {
  font-style: normal
}
 
/* WIKITABLE */
/* Classe pour tableaux standards, légèrement grisés. Syntaxe : {| class="wikitable" */
/* Tableaux selon la charte graphique. Ils sont centrés par défaut. */
table.wikitable th,
table.wikitable td {
  padding: 0.3em;
}
.wikitable th[scope=row] {
  text-align: left;
}
/** Alignement du tableau : flottant à droite ou à gauche, ou centré. On peut aligner à droite ou à gauche
*  sans flottement en ajoutant le [[modèle:clr]] en bas du tableau, ou en précisant style="float:none"
*  dans l'en-tête du tableau.
*/
table.gauche,
table.left {
  float: left;
  margin: 0 1em 1em 0;
}
table.droite,
table.right {
  float: right;
  margin: 0 0 1em 1em;
}
table.centre,
table.center {
  margin: 1em auto;
}
/* Pour les cas où le code de l'article contienne un paramètre align de valeur center */
table.wikitable[align=center] {
  margin: 1em auto;
}
/* ALTERNANCE */
/** Classes permettant d'alterner les couleurs de ligne
*  dans les tableaux selon le nombre de lignes d'en-tête :
*.alternance si nombre impair
*.alternance2 si nombre pair.
*
*.odd est un be kind to IE<9 qui n'implémente pas
*  le sélecteur :nth-child, appliquée via Common.js
*
*.sortable : les tableaux triables nécessitent d'inverser
*  l'alternance.
*/
*/
.alternance,
.alternance2 {
  border-collapse: collapse;
}
table.alternance > * > tr > th,
table.alternance2 > * > tr > th {
background: #e6e6e6;
}
.alternance tr,
.alternance th[scope="row"] {
  background: #fcfcfc;
}
.alternance:not(.sortable) tr:nth-child(odd),
.alternance.sortable      tr:nth-child(even),
.alternance:not(.sortable) tr:nth-child(odd) th[scope="row"],
.alternance.sortable      tr:nth-child(even) th[scope="row"] {
  background: #eeeeee;
}
.alternance .odd,
.alternance .odd th[scope="row"] {
  /* be kind to IE<9 */
  background: #eeeeee;
}
.alternance2 tr,
.alternance2 th[scope="row"] {
  background: #eeeeee;
}
.alternance2 tr:nth-child(odd),
.alternance2 tr:nth-child(odd) th[scope="row"] {
  background: #fcfcfc;
}
.alternance2 .odd,
.alternance2 .odd th[scope="row"] {
  /* be kind to IE<9 */
  background: #fcfcfc;
}


/* Modèle:Histoire Globale */
:root.client-darkmode {
  --background-color-dp-00: #03100000;
.Histoire-Globale {
  --background-color-dp-01: #040d02;
   text-align: left;
  --background-color-dp-02: #e5f4e0;
   margin: 8px 10% 12px;
  --background-color-dp-03: #d4eccc;
   border-style: solid;
  --background-color-dp-04: #d4eccc;
   border-width: 1px 1px 1px 10px;
  --background-color-dp-06: #d4eccc;
   border-color: #77ccff;
  --background-color-dp-08: #102f07;
   border-radius: 5px;
  --background-color-dp-12: #133608;
   padding: 2px 10px;
  --background-color-dp-16: #153d09;
   background-color: #fbfbfb;
   --background-color-dp-24: #18440b;
   --background-img: no-repeat url(avt-main-25-background.jpg);
   --background-main: #fff;
  --box-background-color: #ffffff00;
   --box-shadow: 0 0 10px #f1fff2;
   --color-base: black;
  --color-warning: #ffcc33;
   --color-link: green;
   --color-link-visited: #0D590D;
   --border-color-base: #e6e6e6;
}
}
.client-darkmode .cdx-thumbnail__image, .client-darkmode #main-content img, .client-darkmode .cdx-thumbnail__image:hover {
.Histoire-Globale table {
   filter: none
   background-color: transparent
}
}
 
.client-darkmode a,
/* Make <ref> tags not increase line height */
.client-darkmode .vector-main-menu-group .vector-menu-content li a,
.reference {
.client-darkmode .toctogglelabel,
  line-height: 1em;
.client-darkmode .mw-parser-output a.external,
.client-darkmode .mw-parser-output a.extiw,
.client-darkmode .mw-parser-output a.extiw:active,
.client-darkmode .vector-menu-portal .vector-menu-content li a,
.client-darkmode .vector-menu-tabs li a,
.client-darkmode .vector-toc .vector-toc-link {
    color: var(--color-link);
}
}
 
.client-darkmode .vector-toc .vector-toc-level-1-active:not(.vector-toc-list-item-active) > .vector-toc-link {
ul {
    color: var(--color-link);
  list-style: '– ';
}
}
 
.client-darkmode .sidebar-toc .sidebar-toc-link,
/* ################################################## */
.client-darkmode .vector-pinnable-header-toggle-button,
/* ### ARRIÈRE-PLAN PARTAGÉ                      ### */
.client-darkmode #pt-userpage-2 a,
/* ################################################## */
.client-darkmode .vector-dropdown .mw-list-item a,
.client-darkmode .vector-menu-dropdown > .vector-menu-content .mw-list-item a {
.va-forum-index th,
  color: var(--color-link);
.va-forum-search th,
.va-infobox-title,
.va-navbox-title,
.va-portal-section-header {
  background-color: #383020;
  background-image: none;
  background: url(/skins/Vector/images/background/foggy.png) !important;
}
}
 
.client-darkmode a:visited,
/* ################################################## */
.client-darkmode .vector-main-menu-group .vector-menu-content li a:visited,
/* ### GENERIC BOX (divers modèles mineurs)      ### */
.client-darkmode .toctogglelabel:visited,
/* ################################################## */
.client-darkmode .mw-parser-output a.external:visited,
.client-darkmode .mw-parser-output a.extiw:visited,
.va-genericbox {
.mw-collapsible-toggle-default .mw-collapsible-text {
  background: #383838;
    color: var(--color-link-visited);
  border: 1px solid #AAA;
}
}
 
.client-darkmode .vector-menu-portal .vector-menu-content li a:visited,
/* ################################################## */
.client-darkmode .vector-menu-tabs li a:visited,
/* ### INFOBOXES (Modèle:Infobox)                ### */
.client-darkmode .sidebar-toc .sidebar-toc-link:visited,
/* ################################################## */
.client-darkmode .vector-pinnable-header-toggle-button:visited,
.client-darkmode #pt-userpage-2 a:visited,
/* Outer table */
.client-darkmode .vector-dropdown .mw-list-item a:visited,
.va-infobox {
.client-darkmode .vector-menu-dropdown > .vector-menu-content .mw-list-item a:visited {
  border: none;
  color: var(--color-link);
  clear: right;
  float: right;
  font-size: 11px;
  line-height: 16px;
  margin: 0 0 5px 10px;
  font-family: sans-serif;
}
}
.client-darkmode .infobox,
/* Inner tables */
.client-darkmode .toc,
.va-infobox-cont,
.client-darkmode .thumbinner,
.va-infobox-group {
.client-darkmode #simpleSearch,
  margin: 0;
.client-darkmode #searchInput,
  width: 100%;
.client-darkmode #searchButton,
.client-darkmode #searchGoButton,
.client-darkmode table,
.client-darkmode table.toccolours,
.client-darkmode .wikitable,
.client-darkmode .mw-notification {
  background-color: var(--box-background-color);
  border-color: var(--border-color-base);
}
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button {
.va-infobox-mainimage-table {
    color: #fff;
  margin: 0 auto;
    background-color: #2cb22c;
    border-color: #2cb22c;
    border-top-color: #2cb22c;
    border-right-color: #2cb22c;
    border-bottom-color: #2cb22c;
    border-left-color: #2cb22c;
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:focus + span {
.va-infobox-mainimage-table + .va-infobox-mainimage-table {
    border-color: #228922;
  margin-top: 2px;
    box-shadow: inset 0 0 0 1px #228922;
    outline: 1px solid transparent
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:hover + span {
/* Cellspacing */
    border-color: #228922
.va-infobox,
.va-infobox-cont,
.va-infobox-group,
.va-infobox-mainimage-table,
.va-infobox-spacing-h,
.va-infobox-spacing-v {
  background: transparent;
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:active + span {
.va-infobox-spacing-h {
    background-color: #228922;
  border-right: none;
    border-color: #228922;
  width: 0%;
    box-shadow: inset 0 0 0 1px #228922
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate + span {
.va-infobox-spacing-v {
    background-color: #228922;
  font-size: 1px;
    border-color: #228922
  height: 1px;
  line-height: 0;
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked:focus + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate:focus + span {
.va-infobox-columns + .va-infobox-spacing {
    background-color: #228922;
  display: none !important;
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922,inset 0 0 0 2px #fff
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked:hover + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate:hover + span {
/* Widths */
    background-color: #228922;
.va-infobox-columns-1 .va-infobox-col1 {
    border-color: #228922
  width: 100%;
}
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked:active + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate:active + span {
.va-infobox-columns-2 .va-infobox-col1,
    background-color: #228922;
.va-infobox-columns-3 .va-infobox-col1,
    border-color: #228922;
.va-infobox-columns-4 .va-infobox-col1 {
    box-shadow: inset 0 0 0 1px #228922
  width: 28%;
}
}
.client-darkmode .oo-ui-radioInputWidget [type='radio']:disabled + span {
.va-infobox-columns-2 .va-infobox-col2 {
    background-color: #228922;
  width: 72%;
    border-color: #228922
}
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:hover + span {
.va-infobox-columns-3 .va-infobox-col2,
    border-color: #228922
.va-infobox-columns-3 .va-infobox-col3 {
  width: 36%;
}
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:active + span {
.va-infobox-columns-4 .va-infobox-col2,
    background-color: #228922;
.va-infobox-columns-4 .va-infobox-col3,
    border-color: #228922
.va-infobox-columns-4 .va-infobox-col4 {
  width: 24%;
}
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked + span {
/* Cell styles */
    border-color: #228922
.va-infobox-content,
.va-infobox-footer,
.va-infobox-header,
.va-infobox-image,
.va-infobox-label,
.va-infobox-title {
  padding: 1px 2px;
}
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked:hover + span {
.va-infobox-content,
    border-color: #228922
.va-infobox-footer,
.va-infobox-image,
.va-infobox-mainimage {
  background: rgba(58, 58, 58, 0.2);
  border: 1px solid #383838;
}
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked:active + span {
.va-infobox-header,
    border-color: #228922;
.va-infobox-icon,
    box-shadow: inset 0 0 0 1px #228922
.va-infobox-label {
  background: #171717;
  border: 1px solid #383838;
  color: #E1E4E1;
}
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked:active + span::before {
.va-infobox-image,
    border-color: #228922
.va-infobox-footer,
.va-infobox-header,
.va-infobox-icon,
.va-infobox-mainimage,
.va-infobox-mainimage-cont,
.va-infobox-mainimage-image {
  text-align: center;
  vertical-align: middle;
}
}
.client-darkmode .cdx-button:enabled.cdx-button--weight-primary.cdx-button--action-progressive, .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive {
.va-infobox-content {
    background-color: #2cb22c;
  text-align: left;
    color: #fff;
  vertical-align: top;
    border-color: #2cb22c;
  color: #D7D7D7;
}
}
.client-darkmode .cdx-button:enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover,.cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover {
.va-infobox-label {
background-color: #228922;
  cursor: default;
border-color: #228922
  text-align: right;
  vertical-align: top;
}
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active > .oo-ui-buttonElement-button {
.va-infobox-icon-cont {
    background-color: #228922;
  margin: 0;
    border-color: #f8f9fa;
  padding: 0;
  position: relative;
}
}
.client-darkmode .mw-rcfilters-ui-changesListWrapperWidget:not(.mw-rcfilters-ui-changesListWrapperWidget-highlighted) .mw-changeslist-watchedseen div.mw-rcfilters-ui-highlights-color-none {
.va-infobox-icon-table {
    background-color: #ffffff;
  margin: 0 auto;
    border: 1px solid #228922;
}
}
.client-darkmode .mw-rcfilters-ui-changesListWrapperWidget:not(.mw-rcfilters-ui-changesListWrapperWidget-highlighted) .mw-changeslist-watchedunseen div.mw-rcfilters-ui-highlights-color-none {
.va-infobox-mainimage-cont + .va-infobox-icon-table {
    background-color: #228922;
  position: absolute;
    border: 1px solid #228922;
  right: 3px;
  top: 1px;
}
}
.client-darkmode .oo-ui-optionWidget-selected .mw-echo-ui-pageNotificationsOptionWidget-label-count {
/* FIXME: Find better method to prevent column width oddities in IE8/Webkit */
    color: #228922;
.va-infobox-image {
  max-width: 0;
}
}
.client-darkmode .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected {
.va-infobox-image-cont {
    background-color: #e3ffe5;
  margin-right: -100%;
    color: var(--color-link);
  text-align: center;
  width: 100%;
}
}
.client-darkmode .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link {
.va-infobox-image-desc {
    color: #fff;
  font-size: 10px;
    background-color: #2cb22c;
  line-height: 15px;
  padding: 1px 1px 0;
  color: #D7D7D7;
}
}
.client-darkmode .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link:hover {
.va-infobox-image-upload {
    background-color: #228922;
  padding: 15px 3px;
}
}
.client-darkmode .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-quiet.cdx-button--action-progressive {
.va-infobox-mainimage {
    color: var(--color-link);
  padding: 2px 0;
}
}
.client-darkmode .cdx-text-input__input:enabled:focus {
.va-infobox-mainimage-cont {
    border-color: #228922;
  margin: 0;
    box-shadow: inset 0 0 0 1px #228922;
  width: 100%;
    outline: 1px solid transparent
}
}
.client-darkmode .cdx-button:enabled:focus:not(:active):not(.cdx-button--is-active),.cdx-button.cdx-button--fake-button--enabled:focus:not(:active):not(.cdx-button--is-active) {
.va-infobox-mainimage-image {
    border-color: #228922;
  background: transparent;
    box-shadow: inset 0 0 0 1px #228922
  padding: 0 1px;
}
}
.client-darkmode .vector-pinnable-element .mw-list-item a {
.va-infobox-mainimage-minheight {
color: #228922
  width: 0%;
}
}
.client-darkmode .vector-pinnable-element .mw-list-item a:not(.mw-selflink):visited, .vector-dropdown-content .mw-list-item a:not(.mw-selflink):visited {
.va-infobox-mainimage-minheight div {
    color: var(--color-link-visited);
  height: 120px;
  margin: 0;
  padding: 0;
  width: 1px;
}
}
.client-darkmode #mediauploader-steps li.head {
.va-infobox-title {
    color: var(--color-link);
  /* Shared background; see top of page */
    background-color: #ceefd4;
  border: 1px solid #383838;
    font-weight: bold;
  color: #FFF;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
}
.client-darkmode fieldset {
.va-infobox-title-main {
    border: 1px solid #ffffff;
  font-size: 15px;
    margin: 1em 0 1em 0;
  font-weight: bold;
    padding: 0 1em 1em;
  line-height: 20px;
}
}
.client-darkmode :focus {
.va-infobox-title-sub {
    outline-color: var(--color-link);
  font-size: 12px;
  line-height: 15px;
}
}
.client-darkmode .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button {
.va-infobox-title-super {
    color: var(--color-link);
  font-size: 10px;
  line-height: 12px;
}
}
.client-darkmode    input:focus:not(:active) + .cdx-button:not(.cdx-button--action-progressive) {
.va-infobox-tooltip {
        border-color: #228922;
  border-color: #AAA transparent transparent #AAA;
        box-shadow: inset 0 0 0 1px #228922
  border-style: solid;
    }
  border-width: 3px;
.client-darkmode .client-js .mw-rcfilters-spinner .mw-rcfilters-spinner-bounce, .client-js .mw-rcfilters-spinner::before, .client-js .mw-rcfilters-spinner::after {
  float: left;
    content: '';
  height: 0;
    background-color: #228922;
  left: -2px;
    display: block;
  margin-bottom: -100%;
    float: left;
  margin-right: -100%;
    width: 12px;
  position: absolute;
    height: 12px;
  top: -1px;
    border-radius: 50%;
  width: 0;
    animation: rcfiltersBouncedelay 1600ms ease-in-out -160ms infinite both;
}
}
.client-darkmode .ve-init-mw-progressBarWidget {
.va-infobox-tooltip-cell {
    background-color: #fff;
  cursor: help;
    box-sizing: border-box;
    height: 0.875em;
    border: 1px solid #228922;
    border-radius: 0.875em;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
}
.client-darkmode .ve-init-mw-progressBarWidget {
.va-infobox-tooltip-cont {
    background-color: #fff;
  height: 0;
    box-sizing: border-box;
  position: relative;
    height: 0.875em;
  width: 0;
    border: 1px solid #228922;
    border-radius: 0.875em;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
}
.client-darkmode .ve-ce-focusableNode-highlight {
/* Collapse buttons */
    background: #25ff007a;
.va-infobox-group-collapsible .va-infobox-header {
    box-shadow: inset 0 0 0 1px #39bd49;
  padding-left: 40px;
    position: absolute;
  padding-right: 40px;
    overflow: hidden;
}
}
.client-darkmode input:active + .cdx-button.cdx-button--action-progressive {
.va-infobox-header .mw-collapsible-toggle {
    background-color: #60ea60;
  left: 40px;
    color: #ffffff;
  margin-left: -100%;
    border-color: #60ea60
  position: relative;
}
}
.client-darkmode input:focus:not(:active) + .cdx-button.cdx-button--action-progressive {
.va-infobox-header .mw-collapsible-toggle a {
    border-color: #228922;
  color: #51E527;
    box-shadow: inset 0 0 0 1px #228922 inset 0 0 0 2px #ffffff
}
}
.client-darkmode .cdx-menu-item--enabled.cdx-menu-item--active {
/* Links */
    background-color: #eaf3ff;
.va-infobox-title a:link,
    color: var(--color-link)
.va-infobox-title a:visited {  
  color: #F7EEBA !important;
}
}
.va-infobox-title a:hover,
.client-darkmode .cdx-menu-item--enabled.cdx-menu-item--active .cdx-menu-item__content,.cdx-menu-item--enabled.cdx-menu-item--active .cdx-menu-item__text__description {
.va-infobox-title a:active {  
    color: var(--color-link);
  color: #51E527 !important;
}
}
.va-infobox-title a.new {
.client-darkmode .cdx-menu-item--enabled.cdx-menu-item--selected.cdx-menu-item--highlighted,.cdx-menu-item--enabled.cdx-menu-item--selected.cdx-menu-item--highlighted .cdx-menu-item__content,.cdx-menu-item--enabled.cdx-menu-item--selected.cdx-menu-item--highlighted .cdx-menu-item__text__description {
  color: #F11 !important;
    color: var(--color-link)
}
}
.client-darkmode .mwe-popups .mwe-popups-extract {
.va-infobox-label a {
    color: var(--color-link);
  color: #F7EEBA;
}
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:focus {
.va-infobox-label a:visited {
    border-color: var(--color-link);
  color: #F7EEBA;
    box-shadow: inset 0 0 0 1px var(--color-link)
}
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button:focus {
/* Adapting lists & paragraphs */
    border-color: var(--color-link);
.va-infobox ul,
    box-shadow: inset 0 0 0 1px var(--color-link),inset 0 0 0 2px #fff;
.va-infobox ol,
    outline: 1px solid transparent
.va-infobox p {
  line-height: 16px;
  margin-bottom: 0;
}
}
.client-darkmode .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input:focus {
.va-infobox ul,
    border-color: var(--color-link);
.va-infobox ol {
    outline: 1px solid transparent;
  margin-left: 20px;
    box-shadow: inset 0 0 0 1px var(--color-link)
  margin-top: 0;
}
}
.client-darkmode .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input:focus {
.va-infobox p,
    border-color: var(--color-link)
.va-infobox * + ul,
.va-infobox * + ol {
  margin-top: 3px;
}
}
.client-darkmode .ve-init-mw-progressBarWidget-bar {
.va-infobox ul li,
    background-color: #228922;
.va-infobox ol li {
    height: 0.875em;
  margin-bottom: 0;
}
/* Auxiliary template: Template:Infobox/divider */
.va-infobox-divider-float {
  border-color: #AAA;
  border-style: solid;
  border-width: 0 0 1px 1px;
  clear: right;
  float: right;
  margin: -1px 0 0 2px;
  min-width: 18px;
  padding: 0 0 0 2px;
  text-align: center;
}
.va-infobox-divider-vert {
  width: 100%;
}
.va-infobox-divider-left,
.va-infobox-divider-right {
  vertical-align: top;
  width: 50%;
}
.va-infobox-divider-left {
  border-right: 1px solid #AAA;
  padding: 0 2px 0 0;
}
.va-infobox-divider-right {
  padding: 0 0 0 2px;
}
.va-infobox-divider-section-start,
.va-infobox-divider-section-end {
  display: none;
}
.va-infobox-divider-section-end + .va-infobox-divider-section-start {
  border-top: 1px solid #AAA;
  clear: both;
  display: block;
  margin: 1px 0;
}
}


/* ################################################## */
/*
/* ### MODÈLE DOCUMENTATION                      ### */
    ---------------------------------------------------
/* ### (Modèle:Docparam/Modèle:Documentation)    ### */
    Legacy
/* ################################################## */
    ---------------------------------------------------
    le style ci-dessous doit être maintenu tant         
/* Template:Docparam */
    que les modèles associés sont encore utilisés.
.va-docparam {
    Ces classes doivent être supprimées.   
  background: #678E6C;
    ---------------------------------------------------
  border: 1px dotted #D9D9D9;
*/
  margin-bottom: 3px;
 
  overflow: auto;
/* Arrière-plan partagé */
  padding: 0 2px 0 20px;
.va-infobox-title,.va-navbox-title{background-color:#383020;background-image:none;background:url(/skins/Vector/images/background/foggy.png)!important}
  text-indent: -20px;
 
}
/* Modèle:Docparam */
.va-docparam{background:#678e6c;border:1px dotted #d9d9d9;margin-bottom:3px;overflow:auto;padding:0 2px 0 20px;text-indent:-20px}.va-docparam-icon{float:left;margin:0;padding:0;width:20px}.va-docparam-default{float:right;font-size:10px}.va-docparam-params{font-family:monospace;color:#000}.va-docparam-desc{margin:0;padding:0 0 5px 20px}
.va-docparam-icon {
 
  float: left;
/* Modèle:Console */
  margin: 0;
.va-console{background-color:#cfc;color:#000;font-family:consolas;padding:2px}.va-console-cmd{color:#555}
  padding: 0;
 
  width: 20px;
/* Modèle:Introduction */
}
.va-intro-image{padding-left:2px;padding-right:2px}.va-intro td{padding-bottom:2px}.va-intro-header{font-size:16px;font-weight:700}.va-intro-bullets{font-size:11px;line-height:16px;vertical-align:top;font-family:sans-serif}
 
.va-docparam-default {
/* Modèle:Plus */
  float: right;
.va-more{margin-top:.5em}.va-more-link{font-size:10px;line-height:15px}
  font-size: 10px;
}
.va-docparam-params {
  font-family: monospace;
  color: black;
}
.va-docparam-desc {
  margin: 0;
  padding: 0 0 5px 20px;
}
/* Template:Documentation */
.va-documentation,
.va-documentation-bar-top,
.va-documentation-bar-bottom {
  border-color: #AAA;
  border-style: solid;
  clear: both;
}
.va-documentation {
  border-width: 1px;
  margin: 10px 0;
  background: rgba(188,226,199,0.5);
  color: black;
}
.va-documentation-bar-top,
.va-documentation-bar-bottom {
  background: rgb(0, 121, 0) none repeat scroll 0% 0%;
  color: #000;
  margin: 0;
  padding: 5px;
}
.va-documentation-bar-top {
  border-width: 0 0 1px 0;
}
.va-documentation-bar-bottom {
  border-width: 1px 0 0 0;
  text-align: right;
}
.va-documentation-links {
  float: right;
  text-align: right;
}
.va-documentation-content {
  margin: 0;
  padding: 10px;
}
.va-documentation-small {
  font-size: 10px;
}


/* ################################################## */
/* MediaWiki:Newarticle */
/* ### ICÔNES (Modèle:Icône)                      ### */
.mw-newarticletext,.mw-newarticletextanon{border:1px solid #383838;margin-bottom:10px;padding:10px;background-color:rgba(58,58,58,.2)}.mw-newarticletext h2,.mw-newarticletextanon h2{border:none;color:#51e527;padding:0;margin:10px 0 13px 0}.new-article-game{color:#51e527}
/* ################################################## */
.va-icon-sortkey {
  display: none;
}
/* High-use icons */
.va-icon-highuse,
.va-icon-highuse a {
  display: inline-block;
}
.va-icon-highuse {
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.va-icon-big .va-icon-highuse,
.va-icon-big .va-icon-highuse a {
  height: 20px;
  width: 20px;
}
.va-icon-normal .va-icon-highuse,
.va-icon-normal .va-icon-highuse a {
  height: 14px;
  width: 14px;
}
.va-icon-big .va-icon-highuse-check {
  background-image: url(http://www.fallout-wiki.com/images/icones/20px-Icon_check.png);
}


.va-icon-normal .va-icon-highuse-check {
/*
  background-image: url(http://www.fallout-wiki.com/images/icones/14px-Icon_check.png);
    ---------------------------------------------------
}
    Extension override
    ---------------------------------------------------
    le style ci-dessous écrase les classes ajoutées
    par les extensions MediaWiki
    ---------------------------------------------------
*/


.va-icon-big .va-icon-highuse-cross {
/* ------------------------------ */
  background-image: url(http://www.fallout-wiki.com/images/icones/20px-Icon_cross.png);
/* Extension:TabberNeue          */
}
/* ------------------------------ */


.va-icon-normal .va-icon-highuse-cross {
.tabber__header {
  background-image: url(http://www.fallout-wiki.com/images/icones/14px-Icon_cross.png);
  box-shadow: none;
}
}
.tabber__tabs {
.va-icon-big .va-icon-highuse-checkbrown {
  margin-bottom: 1em;
  background-image: url(http://www.fallout-wiki.com/images/icones/20px-Icon_check_temp.png);
}
}


.va-icon-normal .va-icon-highuse-checkbrown {
/*
  background-image: url(http://www.fallout-wiki.com/images/icones/14px-Icon_check_temp.png);
    ---------------------------------------------------
}
    Vector override
    ---------------------------------------------------  
    le style ci-dessous écrase les classes par défaut
    de l'habillage Vector.
    ---------------------------------------------------
*/


/* ################################################## */
/* Fond principal */
/* ### DIRECTION BOXES (Modèle:Directionbox)      ### */
body {
/* ################################################## */
  background: var(--background-img);
  background-size: cover;
.va-dirbox {
  background-attachment: fixed;
    background-color: #171717;
    border: 1px solid #51E527;
    border-collapse: collapse;
    clear: left;
    color: #F5F7F2;
    font-size: 11px;
    line-height: 16px;
    margin: 5px 0;
    padding: 2px 5px;
    font-family: sans-serif;
}
}
/* Cadre central */
.va-dirbox + .va-dirbox {
.mw-page-container {
  margin-top: -3px;
  background: var(--background-main);
  border-left: 1px solid var(--border-color-base);
  border-right: 1px solid var(--border-color-base);
}
}
/* Cadre de la barre latéral gauche */
.va-dirbox th {
#vector-main-menu {
  line-height: 20px;
    margin-left: -14px;
  padding: 1px 0 1px 5px;
    margin-top: 11px;
  text-align: center;
    padding: 6px 14px;
  vertical-align: middle;
    background-color: #f8f9fa;
  width: 40px;
 
}
}
/* Barre latérale gauche + sommaire sticky */
.va-dirbox th div {
.sidebar-toc,
  margin: 0;
.vector-toc-enabled .mw-sidebar {
  padding: 0;
  background-color: var(--background-main);
  text-align: center;
  border-width: 0px;
  width: 25px;
}
}
/* Cacher l'option permettant de switcher vers l'ancien Vector */
.va-dirbox td {
.vector-main-menu-action-opt-out {
  padding: 1px 5px;
  display: none;
  width: 100%;
}
/* Printing */
@media print {
  .va-dirbox {
      display: none;
  }
}
}


/* ################################################## */
/* ---------------------------------- */
/* ### TOCs (Modèle:TOC, Modèle:Document TOC)    ### */
/* Liens interwiki de langue          */
/* ################################################## */
/* ---------------------------------- */
 
.va-toclimit-2 .toclevel-1 ul,
.vector-dropdown .vector-menu-content-list {
.va-toclimit-3 .toclevel-2 ul,
    list-style: none;
.va-toclimit-4 .toclevel-3 ul,
    margin: 0;
.va-toclimit-5 .toclevel-4 ul,
.va-toclimit-6 .toclevel-5 ul,
.va-toclimit-7 .toclevel-6 ul {
  display: none;
}
}


/* ################################################## */
/* ------------------------------ */
/* ### PALETTES (modèle:Palette de navigation)    ### */
/* MediaWiki:Sitenotice          */
/* ################################################## */
/* ------------------------------ */
/* Palette de navigation */
.palette
{
clear: both;
margin: 1em 0 0;
padding: 3px;
font-size: 88%;
}
.palette ul,.palette li,.palette p
{
margin: 0;
padding: 0;
line-height: 1.6em;
list-style: none none;
}
.palette-liens
{
float: left;
font-variant: small-caps;
}
.palette span.mw-collapsible-toggle
{
float: right;
}
.palette-liens,.palette .mw-collapsible-toggle,.palette-groupe
{
padding: 0.25em 1em;
}
.palette-titre,.palette-section
{
font-size: 105%;
font-weight: bold;
padding: 0.25em 8em;
text-align: center;
}
.palette-ligne
{
display: table-row;
}
.palette-groupe,.palette-image,.palette-liste,.palette-listes
{
display: table-cell;
vertical-align: middle;
}
.palette-groupe
{
font-weight: bold;
text-align: right;
white-space: nowrap;
}
.palette-banniere,.palette-liste,.palette-liste-simple
{
padding: 0.25em;
}
.palette-liste,
.palette-listes
{
width: 100%;
}
.palette-banniere,.mw-collapsible-content > ul > li > .palette-liste-simple
{
text-align: center;
}
div.palette-image
{
padding: 0.25em 0 0.25em 0.25em;
width: 1%;
}
div.palette + div.palette
{
margin-top: -1px;
}
/* Outer table - border */
.va-navbox-border {
  border: 1px solid #383838;
}
.va-navbox-bottom + .va-navbox-bottom {
  margin-top: 2px;
}
/* Outer table - widths, floats */
.va-navbox {
  font-size: 11px;
  line-height: 16px;
  width: 100%;
}
.va-navbox-bottom {
  clear: both;
  margin: 5px auto 0;
  width: 100%;
}
.va-navbox-left {
  clear: left;
  float: left;
  margin: 0 1.5em 0.5em 0;
  width: 240px;
}
.va-navbox-right {
  clear: right;
  float: right;
  margin: 0 0 0.5em 1.5em;
  width: 240px;
}
/* Inner tables */
.va-navbox-brick {
  margin: 0;
  width: 100%;
}
/* Cellspacing */
.va-navbox,
.va-navbox-border,
.va-navbox-brickcont,
.va-navbox-padding,
.va-navbox-spacing-h,
.va-navbox-spacing-v {
  background: transparent;
  font-family: sans-serif;
  color: #D7D7D7;
}
.va-navbox-padding {
  padding: 1px;
}
.va-navbox-spacing-h {
  width: 1px;
}
.va-navbox-columncont .va-navbox-spacing-h {
  border-right: 1px solid #383838;
  width: 0%;
}
.va-navbox-spacing-v {
  font-size: 1pt;
  height: 1px;
  line-height: 0em;
}
/* Cell styles and widths */
/* Remember to update the column width calculations when changing widths */
.va-navbox-title {
  /* Shared background; see top of page */
  border: 0px solid #000;
  color: #FFFFFF;
  font-weight: normal;
  padding: 1px 2px;
}
.va-navbox-headertext,
.va-navbox-titletext {
  font-weight: bold;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}
.va-navbox-maintitle .va-navbox-titletext {
  font-size: 118%;
  text-align: center;
}
/* v/d/e and collapse button */
.va-navbox-editlink {
  float: left;
  margin-right: -100%;
  text-align: left;
  width: 40px;
}
.va-navbox .mw-collapsible-toggle {
  margin-left: -100%;
}
.va-navbox-cell  {
  padding: 1px 2px;
  background: #383020;
}
.va-navbox-colgroup,
.va-navbox-column,
.va-navbox-footer,
.va-navbox-group,
.va-navbox-header,
.va-navbox-image,
.va-navbox-subgroup {
  padding: 1px 2px;
  background: #383020;
  COLOR: #E1E4E1; 
}
.va-navbox-colgroup,
.va-navbox-group,
.va-navbox-subgroup {
  font-weight: bold;
}
.va-navbox-group,
.va-navbox-subgroup {
  text-align: center;
  width: 15%;
}
.va-navbox-footer,
.va-navbox-group,
.va-navbox-header {
  background: #171717;
  border: 1px solid #383838;
}
.va-navbox-colgroup,
.va-navbox-subgroup {
  background: #222222;
  border: 1px solid #383838;
}
.va-navbox-cell,
.va-navbox-column,
.va-navbox-image {
  background: rgba(58, 58, 58, 0.2);
  border: 1px solid #383838;
}
.va-navbox-cell-nogroups,
.va-navbox-column,
.va-navbox-colgroup,
.va-navbox-footer,
.va-navbox-image {
  text-align: center;
}
.va-navbox-cell-withgroups {
  text-align: left;
}
.va-navbox-column {
  vertical-align: top;
  color: #252525
}
.va-navbox-image {
  width: 8%;
}
/* Navbox link colors (groups) */
.va-navbox-group a, .va-navbox-footer a {
  color: #F7EEBA;
}
.va-navbox-group a:visited, .va-navbox-footer a:visited {
  color: #F7EEBA;
}
/* Lists in column rows */
.va-navbox-formatlist ul,
.va-navbox-formatlist li {
  list-style-image: none;
  list-style-type: none;
  line-height: 16px;
  margin: 0.6em 0;
  padding: 0;
}
.va-navbox-formatlist li li {
  font-size: 90%;
}
.va-navbox-formatlist li ul {
  margin-bottom: 0.5em;
  margin-top: -0.1em;
}
.va-navbox-formatlist li ul li {
  margin: 0em;
}
/* Nested */
.va-navbox .va-navbox-nested {
  font-size: 100%;
}
.va-navbox-nested .va-navbox-title {
  background: #383020;
  border: 1px solid #AAA;
  color: #000;
}
.va-navbox-nested .va-navbox-footer,
.va-navbox-nested .va-navbox-group,
.va-navbox-nested .va-navbox-header {
  background: #917D55;
}
.va-navbox-nested .va-navbox-colgroup,
.va-navbox-nested .va-navbox-subgroup {
  background: #DDE1CB;
}
/* Links */
.va-navbox-editlink .va-navbar-item {
  color: #FFF !important;
}
.va-navbox-nowraplinks .va-navbox-cell a,
.va-navbox-nowraplinks .va-navbox-column a {
  white-space: nowrap;
}
.va-navbox-maintitle a:link,
.va-navbox-maintitle a:visited {
  color: #F7EEBA !important;
}
.va-navbox-maintitle a:hover,
.va-navbox-maintitle a:active {
  color: #FFF;
}
.va-navbox-maintitle a.new {
  color: #F11 !important;
}
.va-navbox-maintitle .mw-collapsible-toggle a {
  color: #FFF !important;
}
/* Printing */
@media print {
  .va-navbox,
  .va-navbox-border {
      display: none;
  }
}


/* ################################################## */
.avt-sitenotice {
/* ### TOOLTIPS (Modèle:Tooltip)                 ### */
  border: 1px solid var(--border-color-base);
/* ################################################## */
  background-color: var(--box-background-color);
  box-shadow: var(--box-shadow);
.va-tooltip {
  padding: 5px;
  border-bottom: 1px dotted;
  display: flex;
  cursor: help;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
}


/* ################################################## */
/* ----------------------- */
/* ### BALISES <pre> SPÉCIALES (Modèle:Pre fake)  ### */
/* Galerie pages-listes    */
/* ################################################## */
/* ----------------------- */
.va-pre-fake {
  background-color: #F9F9F9;
  border: 1px dashed #AAA;
  font-family: monospace;
  line-height: 1.1em;
  overflow: auto;
  padding: 1em;
  white-space: pre;
  color: black;
}


/* ################################################## */
.avt-gallery-list-page {
/* ### COPYRIGHT BOXES (Modèle:Copyrightbox)    ### */
  text-align: center;
/* ################################################## */
  margin: 0.3em 0 0 0 !important;
.va-copybox {
  background-color: rgba(58,58,58,0.2);
  border: 1px solid #383838;
  clear: both;
  font-size: 12px;
  line-height: 16px;  
  margin: 10px 0;
  padding: 3px 5px;
  width: 100%;
}
}
.avt-gallery-list-page li.gallerybox div.thumb {
.va-copybox th {
  border: none;
  padding: 1px 0 1px 5px;
  background-color: transparent;
  text-align: center;
  vertical-align: middle;
  width: 30px;
}
}
.avt-gallery-list-page li.gallerybox div.thumb img {
.va-copybox td {
  transition: transform 0.2s;
  padding-left: 5px;
}
}
.avt-gallery-list-page li.gallerybox div.thumb img:hover {
.va-copybox + .va-copybox {
  transform: scale(1.5);
  margin-top: -8px;
}
/* Printing */
@media print {
  .va-copybox {
      background-color: transparent;  
  }
}
}


/* ################################################## */
/* ----------------------- */
/* ### TABLEAUX STATS (Modèle:Stats créature)    ### */
/* Tables MediaWiki        */
/* ################################################## */
/* ----------------------- */
 
.va-stats-creature-name {
.wikitable,
  text-align: center;
.mw-datatable,
.mw_metadata {
  box-shadow: var(--box-shadow);
  background-color: var(--box-background-color);
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  font-family: sans-serif;
  overflow: auto;
  color: var(--color-base);
}
}
.mw-datatable tr:hover td {
.va-stats-creature-icontable {
  background-color: var(--background-color-dp-04);
  margin: 0 auto;
}
}
.wikitable > tr > td,
.va-stats-creature-icontable td {
.wikitable > * > tr > td,
  border: none;
.wikitable > tr > th,
  vertical-align: top;
.wikitable > * > tr > th,
.mw-datatable > tr > td,
.mw-datatable > * > tr > td,
.mw-datatable > tr > th,
.mw-datatable > * > tr > th,
.mw_metadata > tr > td,
.mw_metadata > * > tr > td,
.mw_metadata > tr > th,
.mw_metadata > * > tr > th {
  border: 1px solid var(--border-color-base);
  padding: 4px 8px;
}
}
.wikitable > tr > th,
.va-stats-creature-icon {
.wikitable > * > tr > th,
  font-weight: bold;
.mw-datatable > tr > th,
  left: 0;
.mw-datatable > * > tr > th,
  position: absolute;
.mw_metadata > tr > th,
  text-align: center;
.mw_metadata > * > tr > th {
  top: 0;
  background-color: var(--background-color-dp-02);
  width: 20px;
  font-weight: bold;
  text-align: center;
}
}
 
.va-stats-creature-item {
.mw-datatable td,
  min-width: 10px;
.mw_metadata td {
  padding: 0 2px 0 22px;
  background-color: var(--box-background-color);
  position: relative;
}
}
 
.va-stats-creature-item + .va-stats-creature-item {
/* ----------------------- */
  margin-top: 2px;
/* Tables personnalisées  */
/* ----------------------- */
 
.avt-table-large {
  table-layout: fixed;
  width: 100%;
  word-break: break-word;
}
}
.va-stats-creature-icontable-full,
.va-stats-creature-layout-1 td {
  width: 100%;
}
.va-stats-creature-layout-2 td {
  width: 50%;
}
.va-stats-creature-layout-3 td {
  width: 33%;
}
.va-stats-creature-layout-3 td:first-child {
  width: 34%;
}
.va-stats-creature-layout-4 td {
  width: 25%;
}
/* ################################################## */
/* ### TABLEAUX                                  ### */
/* ################################################## */
.va-table {
.va-table {
  background-color: rgba(58,58,58,0.2);
  box-shadow: var(--box-shadow);
  border-collapse: collapse;
  background-color: var(--box-background-color);
  empty-cells: show;
  border-collapse: collapse;
  font-size: 12px;
  empty-cells: show;
  line-height: 16px;
  font-size: 12px;
  margin-bottom: 5px;
  line-height: 16px;
  color: #D7D7D7;
  margin-bottom: 5px;
  font-family: sans-serif;
  font-family: sans-serif;
  overflow: auto;
}
}
.va-table > tr > td,
.va-table > tr > td,
.va-table > * > tr > td,
.va-table > * > tr > td,
.va-table > tr > th,
.va-table > tr > th,
.va-table > * > tr > th {
.va-table > * > tr > th {
  border: 1px solid #383838;
  border: 1px solid var(--border-color-base);
  padding: 1px 2px;
  padding: 4px 8px;
}
}
.va-table > tr > th,
.va-table > tr > th,
.va-table > * > tr > th {
.va-table > * > tr > th {
  background-color: #171717;
  background-color: var(--background-color-dp-02);
  font-weight: bold;
  font-weight: bold;
  color: #E1E4E1;
  text-align: center;
  text-align: center;
}
}
/* Table header links */
.va-table th a {
  color: #F7EEBA;
}
.va-table th a:visited {
  color: #918347;
}
/* Collapse button */
.va-table .mw-collapsible-toggle a {
  color: #F7EEBA;
}
/* Adapting lists & paragraphs */
/* Adapting lists & paragraphs */
.va-table ul,
.va-table ul,
.va-table ol,
.va-table ol,
.va-table p {
.va-table p {
  line-height: 16px;
  line-height: 16px;
  margin-bottom: 0;
  margin-bottom: 0;
}
}
.va-table ul,
.va-table ul,
.va-table ol {
.va-table ol {
  margin-left: 20px;
  margin-left: 20px;
  margin-top: 0;
  margin-top: 0;
}
}
.va-table p,
.va-table p,
.va-table * + ul,
.va-table * + ul,
.va-table * + ol {
.va-table * + ol {
  margin-top: 3px;
  margin-top: 3px;
}
}
.va-table ul li,
.va-table ul li,
.va-table ol li {
.va-table ol li {
  margin-bottom: 0;
  margin-bottom: 0;
}
}
/* Highlighted rows */
/* Highlighted rows */
.va-table > tr.va-table-highlight,
.va-table > tr.va-table-highlight,
Ligne 1 358 : Ligne 577 :
.va-table > tr.va-table-highlight > th,
.va-table > tr.va-table-highlight > th,
.va-table > * > tr.va-table-highlight > th {
.va-table > * > tr.va-table-highlight > th {
  background-color: #1B1B1B;
  background-color: var(--background-color-dp-01);
}
}
/* Tables with specific vertical alignment for cells */
/* Tables with specific vertical alignment for cells */
.va-table-top > tr > td,
.va-table-top > tr > td,
.va-table-top > * > tr > td {
.va-table-top > * > tr > td {
  vertical-align: top;
  vertical-align: top;
}
}
.va-table-middle > tr > td,
.va-table-middle > tr > td,
.va-table-middle > * > tr > td {
.va-table-middle > * > tr > td {
  vertical-align: middle;
  vertical-align: middle;
}
}
.va-table-bottom > tr > td,
.va-table-bottom > tr > td,
.va-table-bottom > * > tr > td {
.va-table-bottom > * > tr > td {
  vertical-align: bottom;
  vertical-align: bottom;
}
}
/* Tables with specific horizontal alignment for cells/columns */
/* Tables with specific horizontal alignment for cells/columns */
.va-table-center > tr > td,
.va-table-center > tr > td,
Ligne 1 389 : Ligne 604 :
.va-table-center-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-center-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-center-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-center-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-center-col10 > * > tr > *:first-child + * + * + * + * + * + * + * + * + td,
.va-table-center-col10
.va-table-center-col11 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + td,
  > *
.va-table-center-col12 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + td,
  > tr
.va-table-center-col13 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + td,
  > *:first-child
.va-table-center-col14 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + * + td,
  + *
.va-table-center-col15 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + * + * + td {
  + *
  text-align: center;
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col11
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col12
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col13
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col14
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col15
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td {
  text-align: center;
}
}
.va-table-left > tr > td,
.va-table-left > tr > td,
.va-table-left > * > tr > td,
.va-table-left > * > tr > td,
Ligne 1 409 : Ligne 710 :
.va-table-left-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-left-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-left-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-left-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-left-col10 > * > tr > *:first-child + * + * + * + * + * + * + * + * + td,
.va-table-left-col10
.va-table-left-col11 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + td,
  > *
.va-table-left-col12 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + td,
  > tr
.va-table-left-col13 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + td,
  > *:first-child
.va-table-left-col14 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + * + td,
  + *
.va-table-left-col15 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + * + * + td {
  + *
  text-align: left;
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col11
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col12
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col13
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col14
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col15
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td {
  text-align: left;
}
}
.va-table-right > tr > td,
.va-table-right > tr > td,
.va-table-right > * > tr > td,
.va-table-right > * > tr > td,
Ligne 1 429 : Ligne 816 :
.va-table-right-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-right-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-right-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-right-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-right-col10 > * > tr > *:first-child + * + * + * + * + * + * + * + * + td,
.va-table-right-col10
.va-table-right-col11 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + td,
  > *
.va-table-right-col12 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + td,
  > tr
.va-table-right-col13 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + td,
  > *:first-child
.va-table-right-col14 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + * + td,
  + *
.va-table-right-col15 > * > tr > *:first-child + * + * + * + * + * + * + * + * + * + * + * + * + * + td {
  + *
  text-align: right;
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col11
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col12
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col13
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col14
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col15
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td {
  text-align: right;
}
}
/* Tables which are full width */
/* Tables which are full width */
.va-table-full {
.va-table-full {
  width: 100%;
  width: 100%;
}
}
/* Tables which leave enough space for an infobox on the right */
/* Tables which leave enough space for an infobox on the right */
.va-table-full-infobox {
.va-table-full-infobox {
  width: 960px;
  width: 100%; /*960px;*/
}
}
/* Tables which are floated */
/* Tables which are floated */
.va-table-float-left {
.va-table-float-left {
  clear: left;
  clear: left;
  float: left;
  float: left;
  margin: 0 10px 10px 0;
  margin: 0 10px 10px 0;
}
}
.va-table-float-right {
.va-table-float-right {
  clear: right;
  clear: right;
  float: right;
  float: right;
  margin: 0 0 10px 10px;
  margin: 0 0 10px 10px;
}
}
/* Tables in which the first column starts with an icon */
/* Tables in which the first column starts with an icon */
.va-table-icon > tr > td:first-child,
.va-table-icon > tr > td:first-child,
.va-table-icon > * > tr > td:first-child {
.va-table-icon > * > tr > td:first-child {
  padding-left: 18px;
  padding-left: 18px;
  text-indent: -18px;
  text-indent: -18px;
}
}


/* ################################################## */
/*
/* ### Modèle:Bandeau de source                  ### */
    ---------------------------------------------------
/* ################################################## */
    Portals
    ---------------------------------------------------
    Les classes ci-dessous sont utilisées par les
    portails.
    ---------------------------------------------------
*/


.avt-source-banner {
/* On cache le titre des portails */
   margin: 0.5em 0;
body.action-view.page-Accueil #firstHeading,
body.action-view.page-Portail_Fallout #firstHeading,
body.action-view.page-Portail_Fallout_2 #firstHeading,
body.action-view.page-Portail_Fallout_3 #firstHeading,
body.action-view.page-Portail_Fallout_4 #firstHeading,
body.action-view.page-Portail_Fallout_76 #firstHeading,
body.action-view.page-Portail_Fallout_New_Vegas #firstHeading,
body.action-view.page-Portail_Fallout_Shelter #firstHeading,
body.action-view.page-Portail_Fallout_Tactics #firstHeading {
   position: absolute;
  top: -5000px;
}
/* On cache l'en-tete fixe pour le moment sur l'accueil */
body.action-view.page-Accueil #vector-sticky-header {
  display: none;
}
/* Cadre principale et structure */
.homepage {
   display: grid;
   display: grid;
   grid-template-columns: max-content auto;
   grid-gap: 1rem;
   gap: 8px;
   grid-template-areas:
    "welcome welcome welcome"
    "serie serie serie"
    "games games games"
    "autres autres theme"
    "anecdotes anecdotes presentation"
    "articleday articleday participation";
}
}
.avt-source-banner-img {
/* Définition des zones */
   margin: auto;
.homepage-welcome {
  grid-area: welcome;
  background: linear-gradient(to bottom, #fff, var(--box-background-color));
   border-bottom: solid 1px var(--border-color-base);
}
}
.avt-source-banner-text {
.grande-annonce {
   padding: 5px;
   grid-area: serie;
  font-size: 0.9em;
   border: 1px solid var(--border-color-base);
   border-top: 1px solid #383838;
   box-shadow: var(--box-shadow);
   border-bottom: 1px solid #383838;
}
}
 
.homepage-portal-games {
/* ################################################## */
  grid-area: games;
/* ### BANDEAUX (Modèle:Bandeau)            ### */
/* ################################################## */
/* Style principal */
.bandeau {
    background-color: #868686;
    border-collapse: collapse;
    margin: 10px 0;
    padding: 0;
}
}
.homepage-portal-autres {
.bandeau + .bandeau {
  grid-area: autres;
  margin-top: -8px;
}
}
.homepage-portal-theme {
.bandeau-cadre {
  grid-area: theme;
  padding: 0.5em 1em 0.5em 1em;
  width: 100%;
}
}
.homepage-presentation {
.bandeau-pied {
  grid-area: presentation;
  font-size: 90%;
}
}
.homepage-participation {
.bandeau-entete {
  grid-area: participation;
  font-weight: bold;
}
}
.homepage-articleday {
.bandeau-image {
  grid-area: articleday;
  padding: 0.5em 0em 0.5em 1em;
  text-align: center;
  vertical-align: middle;
}
}
.homepage-anecdotes {
.bandeau-noborder .bandeau-image {
  grid-area: anecdotes;
  padding-left: 9px;
  padding-right: 9px;
}
}
/* Boîte générique */
.bandeau-noimage .bandeau-image,
.homepage-box {
.bandeau-noborder.bandeau-noimage .bandeau-image {
  border: 1px solid var(--border-color-base);
  padding: 0;
  background: var(--box-background-color);
  box-shadow: var(--box-shadow);
  padding: 1rem;
}
}
.homepage-welcome-subtitle,
.bandeau-image div {
.homepage-welcome-links,
  margin: 0 auto;
.homepage-portal-theme .homepage-box-content {
  text-align: center;
}
}
.homepage-welcome-fogen {
.bandeau-noimage .bandeau-image div {
  margin-bottom: 1rem;
  width: 9px;
  text-align: center;
}
}
.homepage-welcome-title {
/* Template:Mbox management */
  text-align: center;
.bandeau.bandeau-avertissement {
  font-size: 200%;
  background-color: #868686;
  margin: 0 50px 5px 50px;
  border-bottom: 1px solid var(--border-color-base);
  text-shadow: 0 0 3px var(--color-link);
  color: var(--color-link);
  font-weight: bold;
}
}
 
.homepage-box-title {
/* Template:Mbox mediawiki */
  text-align: center;
.mw-warning-with-logexcerpt .va-mbox.va-mbox-mediawiki {
  font-size: 150%;
  border-left: none !important;
  border-bottom: 1px solid var(--border-color-base);
  border-right: none !important;
  margin-bottom: 20px;
  border-top: none !important;
  text-shadow: 0 0 6px var(--color-link);
  margin: 0;
  color: var(--color-link);
}
}
.homepage-portal-autres-list {
/* Template:Mbox project */
  list-style: none;
.va-mbox.va-mbox-project {
  margin: 0 !important;
  background-color: #ECECD4;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 0;
}
}
.homepage-portal-games-list {
/* Template:Mbox talk */
  list-style: none;
.va-mbox.va-mbox-talk {
  margin: 0 !important;
  background-color: #F2E3CF;
  display: grid;
  font-size: 1em;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  line-height: 1.5em;
  grid-template-rows: 1fr 1fr;
  margin-left: 5%;
  grid-gap: 30px 0;
  margin-right: 5%;
}
}
.homepage-portal-games-item {
.va-mbox.va-mbox-talk .va-mbox-body,
  text-align: center;
.va-mbox.va-mbox-talk .va-mbox-image {
  font-size: 0.85em;
  padding-bottom: 5px;
  padding-top: 5px;
}
}
.homepage-portal-games-logo {
.va-mbox.va-mbox-talk .va-mbox-footer {
  height: 60px;
  font-size: 85%;
}
}
.homepage-presentation-title,
/* Printing */
.homepage-participation-title,
@media print {
.homepage-articleday-title,
  .bandeau {
.homepage-imageday-title {
      display: none;
  border-bottom: 1px solid var(--border-color-base);
  }
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--color-link);
  color: var(--color-link);
}
}
 
.homepage-presentation-content,
/* ################################################## */
.homepage-participation-content,
/* ### SECTIONS (Modèle:section)                  ### */
.homepage-articleday-content,
/* ################################################## */
.homepage-imageday-content {
 
  font-size: 0.85em;
.bandeau-section {
    overflow: hidden;
    display: block;
    font-size: 0.95em;
    padding: 0.2em 0.5em 0.1em 0px;
    margin: 0px 0px 0.7em 2em;
    border-top: 1px solid rgb(255,136,34);
    border-bottom: 1px solid rgb(255,136,34);
    background-color: rgba(255,136,34,0.1);
    background-image: url("http://www.fallout-wiki.com/images/4/47/Mbox_moignon.png");
    background-repeat: no-repeat;
    background-size: 16px;
    text-indent: 20px;
    background-position: 3px;
}
}


/* ################################################## */
/*
/* ### PORTAILS                                  ### */
    ---------------------------------------------------
/* ################################################## */
    Cross classes
    ---------------------------------------------------
    Les classes ci-dessous sont utilisées par plusieurs
    modèles ou modules
    ---------------------------------------------------
*/


/* Colonnes */
/* Pour créer des listes simples, souvent appelées
.va-portal-columns-body-left {
dans des modèles ou des tables */
  float: left;
.avt-simple-list {
  margin-right: -323px;
  margin: 0 !important;
  position: relative;
  list-style: none;
  width: 100%;
}
}
/* Séparateur <hr/> */
.va-portal-columns-body-left-inner {
.separator {
  width: 75%;
  background-color: var(--border-color-base);
}
}
/* Boîte générique */
.va-portal-columns-body-right {
.avt-genericbox {
  clear: right;
  border: 1px solid var(--border-color-base);
  float: right;
  background: var(--box-background-color);
  position: relative;
  width: 24%;
}
.va-portal-columns-body-below,
.va-portal-columns-body-left-below {
  clear: both;
}
.va-portal-columns-body-left-double .va-portal-columns-body-left-columns {
  padding-right: 10px;
}
.va-portal-columns-body-left-double .va-portal-columns-left {
  float: left;
  width: 60%;
}
.va-portal-columns-body-left-double .va-portal-columns-middle {
  float: right;
  margin-right: -10px;
  width: 40%;
}
.va-portal-columns-left,
.va-portal-columns-middle,
.va-portal-columns-right {
  position: relative;
}
/* Colonne spéciale de droite */
#rightContent {
    background: url(/skins/common/images/pipground.gif) #0f3d20;
    border: 1px solid #413F3F;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-border-radius: 20px;
}
}


/* Boîtes de contenu */
.va-portal-section {
  background: transparent;
  border: 1px solid #AAA;
  margin-bottom: 5px;
  margin-top: 0px;
  font-family: sans-serif;
  font-size: 15px;
  color: #D7D7D7;
}
.va-portal-section-body {
  border: 1px solid #AAA;
  background: url(/skins/Vector/images/background/hardline.png) !important;
  margin: 1px;
  padding: 3px 5px;
}
.va-portal-section-header {
  /* Shared background; see top of page */
  border: 0 solid #000;
  color: white;
  margin: 1px 1px 0;
  padding: 3px 5px;
  text-align: center;
  border: none;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  padding: 0;
}
.va-portal-section-header a:link,
.va-portal-section-header a:visited,
.va-portal-section-header a:hover,
.va-portal-section-header a:active {
  color: #FFF !important;
}
.va-portal-section-header a.new {
  color: #F11 !important;
}
/*
/*
.va-portal-section-header h2 {
    ---------------------------------------------------  
  border: none;
    Templates & Modules
  color: #FFF;
    ---------------------------------------------------
  font-size: 14px;
    le style ci-dessous défini l'apparence des modèles
  font-weight: bold;
    et des modules.
  margin-top: 0em;
    Les modèles doivent être rangés dans l'ordre
  padding: 0;
    alphabétique.
}
    ---------------------------------------------------
*/
*/
   
 
.va-portal-section-header-cleft,
/* ------------------------------ */
.va-portal-section-header-cright {
/* Modèle:Bandeau d'avertissement */
  display: none;
/* ------------------------------ */
 
.avt-warn-banner {
  margin: 0.5em 90px;
  display: grid;
  grid-template-columns: max-content auto;
  gap: 8px;
  padding: 0 10px;
  border-style: solid;
  border-width: 1px 1px 1px 12px;
  background-color: var(--box-background-color);
}
}
.avt-warn-banner-header {
.va-portal-section-header-links {
  font-weight: bold;
  float: right;
  font-size: 10px;
  margin-top: 6px;
  margin-left: -75px;
  font-weight: normal;
}
}
.avt-warn-banner-img {
.va-portal-section-footer {
  margin: auto;
  border-top: 1px solid #AAA;
  clear: both;
  margin-top: 10px;
  padding-top: 1px;
  text-align: right;
}
}
.avt-warn-banner-text {
.va-portal-section-clear {
  padding: 5px;
  clear: both;
}
}
.avt-warn-banner-desc,
/* Welcome */
.avt-warn-banner-note {
.va-portal-welcome {
  font-size: 0.8em;
  padding: 2px 0 3px;
  text-align: center;
}
}
/* Types de bandeau */
.va-portal-welcome .va-wikiinothermedia {
.avt-warn-banner-maintenance {
  margin: 8px 0 0;
  border-color: var(--color-warning);
}
}
.avt-warn-banner-info {
.va-portal-welcome-title {
  border-color: #77ccff;
  font-size: 14px;
  margin: 0;
}
}
.avt-warn-banner-license {
.va-portal-welcome-subtitle {
  border-color: #c0c0ff;
  font-size: 11px;
  line-height: 16px;
  margin: 0;
}
}
 
.va-portal-welcome-slogan {
/* ------------------------------ */
  margin: 3px 0 0;
/* Modèle:Bandeau de note        */
/* ------------------------------ */
 
.avt-note-banner {
  margin-top: 0.5em;
  padding-left: 2em;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  background: var(--background-main);
  font-style: italic;
  border-bottom: 1px solid var(--border-color-base);
  display: flex;
  align-items: center;
  gap: 10px;
}
}
.avt-note-banner + .avt-note-banner {
/* TOC */
  margin-top: calc(-0.5em - 1.05px);
.va-portal-toc {
  border-collapse: collapse;
  font-size: 95%;
  width: 100%;
}
}
 
.va-portal-toc td {
/* ------------------------------ */
  padding: 0 5px;
/* Modèle:Bandeau de rubrique    */
  vertical-align: top;
/* ------------------------------ */
 
.avt-section-banner {
  padding: 0.25em 0.5em;
  border-top: 1px solid var(--border-color-base);
  border-bottom: 1px solid var(--border-color-base);
  margin: 0.5em 0 0.5em 2em;
  background-color: var(--box-background-color);
  font-size: 0.9em;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
}
 
.va-portal-toc p {
/* ------------------------------ */
  border-bottom: 1px solid #AAA;
/* Modèle:Bandeau de source      */
  font-weight: bold;
/* ------------------------------ */
 
.avt-source-banner {
  margin: 0.5em 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
}
.avt-source-banner-text {
/* Intro - image buttons */
  padding: 5px;
.va-portal-buttons {
  font-size: 0.9em;
  border-collapse: collapse;
  border-top: 1px solid var(--border-color-base);
  font-size: 95%;
  border-bottom: 1px solid var(--border-color-base);
  margin: 0 auto;
  text-align: center;
}
}
 
.va-portal-buttons th,
/* ------------------------------ */
.va-portal-buttons td {
/* Modèle:Boîte de contenu de jeu */
  width: 20%;
/* ------------------------------ */
 
.avt-content-game-box {
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
  padding: 5px;
  margin: 0.5em 0;
  font-size: 0.85em;
  background-color: var(--box-background-color);
  overflow: hidden;
}
}
.avt-content-game-box span.mw-collapsible-toggle {
.va-portal-buttons th {
  float: right;
  font-weight: normal;
  padding: 0.25em 1em;
  padding-top: 3px;
  vertical-align: middle;
}
}
#avt-content-game-box-title {
.va-portal-buttons td {
  text-align: center;
  padding-bottom: 3px;
  border: 1px solid var(--border-color-base);
  vertical-align: top;
  background-color: var(--background-color-dp-02);
  white-space: nowrap;
  padding: 3px;
  padding: 0.25em 8em;
  font-weight: bold;
}
}
.avt-content-game-box-list {
/* Footer */
  margin: 0 !important;
.va-portal-footer {
  padding: 5px !important;
  margin: 10px auto;
  list-style: none;
  padding: 0;
  column-count: 2;
  text-align: center;
  column-rule: 1px solid var(--border-color-base);
  width: 800px;
}
.va-portal-footer-section {
  border-collapse: collapse;
  margin: 5px auto 0;
}
.va-portal-footer-section-header {
  padding: 0 5px;
}
.va-portal-footer-section-body {
  border-top: 1px solid #AAA;
  display: inline-block;
  font-size: 0.85em;
  max-width: 100%;
  padding: 0 5px;
}
/* Did you know */
.va-portal-dyk p {
  margin: 0;
}
.va-portal-dyk-item {
  padding: 0 0 0 15px;
  position: relative;
}
.va-portal-dyk .va-portal-dyk-dots {
  float: left;
  margin-left: -15px;
  width: 15px;
}
/* News items */
.va-portal-news-item + .va-portal-news-item {
  border-top: 1px solid #AAA;
  margin-top: 10px;
  padding-top: 10px;
}
.va-portal-news-item .va-portal-news-item-comments,
.va-portal-news-item .va-portal-news-item-details,
.va-portal-news-item .va-portal-news-item-more {
  font-size: 10px;
  line-height: 15px;
}
.va-portal-news-item .va-portal-news-item-comments {
  float: right;
}
.va-portal-news-item .va-portal-news-item-details {
  margin-left: 10px;
}
.va-portal-news-item .va-portal-news-item-footer {
  line-height: 10px;
  margin-top: 0.5em;
}
.va-portal-news-item .va-portal-news-item-summary > *,
.va-portal-news-item .va-portal-news-item-summary > p:first-child + p {
  display: none;
}
.va-portal-news-item .va-portal-news-item-summary > p:first-child,
.va-portal-news-item .va-portal-news-item-summary > *:first-child + p {
  display: block;
}
/* Forum activity */
.va-portal-forumactivity ul li {
  font-size: 0.781em;
  line-height: 1.5em;
}
.va-portal-forumactivity ul li a:first-child {
  display: block;
  font-size: 1.28em;
  line-height: 1.5em;
}
}


/* ################################################## */
/* ------------------------------ */
/* ### CONSOLE COMMANDS (Modèle:Console)          ### */
/* Modèle:Boîte déroulante        */
/* ################################################## */
/* ------------------------------ */
.va-console {
  background-color: #CFC;
  color: #000;
  font-family: consolas;
  padding: 2px;
}
.va-console-cmd {
  color: #555;
}


/* ################################################## */
.avt-dropdown-box {
/* ### INTRODUCTION (Modèle:Introduction)        ### */
  margin: 0.5em 0;
/* ################################################## */
  padding: 3px;
  border: 1px solid var(--border-color-base);
.va-intro-image {
  overflow: auto;
  padding-left: 2px;
  padding-right: 2px;
}
}
.avt-dropdown-box-title {
.va-intro td {
  background-color: var(--background-color-dp-02);
  padding-bottom: 2px;
  border: 1px solid var(--border-color-base);
  font-weight: bold;
  text-align: center;
}
}
.avt-dropdown-box-content {
.va-intro-header {
  padding: 0 5px;
  font-size: 16px;
  font-weight: bold;
}
}
.avt-dropdown-box .mw-collapsible-toggle {
.va-intro-bullets {
  padding-right: 0.5em;
  font-size: 11px;
  line-height: 16px;
  vertical-align: top;
  font-family: sans-serif;
}
}


/* ################################################## */
/* ------------------------------ */
/* ### SCHÉMA (Modèle:Schéma)                    ### */
/* Modèle:Citation                */
/* ################################################## */
/* ------------------------------ */
.va-chart-quest {
  background:#171717;
  border: 1px solid #AAA !important;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 16px;;
}
.va-chart-body {
  background:#383838;
  border:1px solid #AAA !important;
  color: #D7D7D7;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 16px;;
}
.va-chart-reward {
  background:#E8E8A2;
  border:1px solid #AAA !important;
  font-family: sans-serif;
  font-size: 11px;
  line-height: 16px;;
}


/* ################################################## */
/* ### AUDIO SNIPPETS, QUOTES & TRANSCRIPTS      ### */
/* ### (Modèle:Listen, Modèle:Citation ligne,    ### */
/* ### Modèle:Newsquote, Modèle:Citation,        ### */
/* ### Modèle:Transcription)                      ### */
/* ################################################## */
/* Citation */
.mw-body-content blockquote {
.mw-body-content blockquote {
border-left: none;
  border-left: none;
}
}
blockquote {
blockquote {
margin: 0 auto;
  margin: 0 auto;
}
}
q::before, q::after {
q::before,
    content: "";
q::after {
  content: "";
}
}
blockquote small {
blockquote small {
    margin-bottom: 10px;
  margin-bottom: 10px;
    display: block;
  display: block;
    padding-left: 150px;
  padding-left: 150px;
}
}
blockquote small, q small {
blockquote small,
    font-size: inherit;
q small {
  font-size: inherit;
}
}
blockquote .mediaContainer {
blockquote .mediaContainer {
    display: inline-block;
  display: inline-block;
}
}


/* Container */
/* ------------------------------ */
.va-listen,
/* Modèle:Citation ligne          */
.va-newsquote,
/* ------------------------------ */
.va-quotation,
.va-transcript {
  line-height: 18px;
  padding: 10px 25px;
}
.va-quotation {
  overflow: hidden;
}
.va-quotation-body {
  display: block;
}
.va-quotation-quote {
  display: block;
  position: relative;
}
.va-listen-left,
.va-listen-right,
.va-quotation-left,
.va-quotation-right {
  border-bottom: 1px solid #AAA;
  border-top: 1px solid #AAA;
  width: 200px;
}
.va-listen-left,
.va-quotation-left {
  clear: left;
  float: left;
  margin: 10px 10px 10px 0;
}
.va-listen-right,
.va-quotation-right {
  clear: right;
  float: right;
  margin: 10px 0 10px 10px;
}
.va-quotation-center {
  text-align: center;
}
.va-quotation-center .va-quotation-body {
  display: inline-block;
}
/* Quotation marks/icons */
.va-listen-icon,
.va-newsquote-quot-l,
.va-newsquote-quot-r,
.va-quotation-quot-l,
.va-quotation-quot-r,
.va-transcript-icon {
  width: 40px;
  z-index: -1;
}
.va-listen-icon,
.va-newsquote-quot-l,
.va-newsquote-quot-r,
.va-transcript-icon {
  position: relative;
}
.va-quotation-quot-l,
.va-quotation-quot-r {
  position: absolute;
}
.va-listen-icon,
.va-transcript-icon {
  float: left;
  left: -25px;
  margin-right: -40px;
  top: -5px;
}
.va-newsquote-quot-l,
.va-newsquote-quot-r,
.va-quotation-quot-l,
.va-quotation-quot-r {
  color: #383838;
  font: bold 55px/40px serif;
  height: 18px;
}
 
.va-newsquote-quot-l,
.va-quotation-quot-l {
  left: -15px;
  text-align: left;
}
.va-newsquote-quot-r,
.va-quotation-quot-r {
  right: -15px;
  text-align: right;
}
.va-newsquote-quot-l {
  float: left;
  margin-right: -40px;
}
.va-newsquote-quot-r {
  float: right;
  margin-left: -40px;
}
.va-quotation-quot-l {
  top: -17px;
}
.va-quotation-quot-r {
  bottom: 17px;
}
/* Quoted text/audio file desc */
.va-listen-item,
.va-listen-item .ogg-player-options,
.va-newsquote-text,
.va-quotation-text {
  font-size: 12px;
}
.va-transcript-text {
  font-family: monospace;
  font-size: 13px;
}
.va-quotation-text {
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -0.4em;
  text-align: left;
}
.va-quotation-text ol,
.va-quotation-text p,
.va-quotation-text ul {
  margin-bottom: 0;
}
/* Source */
.va-newsquote-source,
.va-quotation-source {
  padding: 5px 0 0;
  text-align: right;
}
.va-quotation-source {
  display: block;
  font-size: 10px;
  line-height: 15px;
  margin-right: 15px;
}
/* "Incomplete quote" dots */
.va-newsquote-dots {
  font-style: normal;
  padding: 3px 0;
}
/* Audio file list */
.va-listen-item {
  margin: 0 auto;
  width: 180px;
}
.va-listen-item audio {
  margin-bottom: 5px;
  width: 100%;
}
.va-listen-item div {
  margin-bottom: 2px;
}
.va-listen-item + .va-listen-item {
  border-top: 1px solid #D9D9D9;
  margin-top: 5px;
}


.np-quote-snd-trigger {
.np-quote-snd-trigger {
   display: inline-block;
   display: inline-block;
   position: relative;
   position: relative;
   top:auto;
   top: auto;
   left:auto;
   left: auto;
   padding: 0px 2px;
   padding: 0px 2px;
}
}
.np-quote-snd-trigger:hover .np-quote-snd-player {
.np-quote-snd-trigger:hover .np-quote-snd-player {
display:block;
  display: block;
}
}
.np-quote-snd-player {
.np-quote-snd-player {
   display:none;
   display: none;
   position:absolute;
   position: absolute;
   top:-30px;
   top: -30px;
   left:100%;
   left: 100%;
   z-index:100 !important;
   z-index: 100 !important;
   width: 300px;
   width: 300px;
   overflow-x: hidden;
   overflow-x: hidden;
   margin:0px;
   margin: 0px;
   padding:5px 10px 10px 10px;
   padding: 5px 10px 10px 10px;
   border:1px solid #CCCCCC;
   border: 1px solid var(--border-color-base);
  border-radius:5px;
   box-shadow: var(--box-shadow);
   box-shadow:#AAAAAA 2px 2px 5px 0px;
   background-color: var(--box-background-color);
   background-color:White;
  color: Black;
   text-align: left;
   text-align: left;
   font: normal normal normal 13px/normal Helvetica,Arial,sans-serif;
   font-size: 0.85em;
}
}
.np-quote-snd-player-img {
.np-quote-snd-player-img {
   float:left;
   float: left;
   width:50px;
   width: 55px;
}
}
.np-quote-snd-player-title {
.np-quote-snd-player-title {
   width:250px;
   width: 250px;
   height:50px;
   height: 50px;
   display:table-cell;
   display: table-cell;
   vertical-align:middle;
   vertical-align: middle;
}
}
.np-quote-snd-player-title span {
.np-quote-snd-player-title span {
   font-size: 18px;
   font-size: 18px;
}
}


/* ################################################## */
/* ------------------------------ */
/* ### HATNOTES (Modèle:Hatnote)                  ### */
/* Modèle:Documentation          */
/* ################################################## */
/* ------------------------------ */
.va-hatnote {
  font-style: italic;
  margin-bottom: 5px;
  padding-left: 2em;
}


/* ################################################## */
.va-documentation,
/* ### LIENS "EN SAVOIR PLUS" (Modèle:Plus)      ### */
.va-documentation-bar-top,
/* ################################################## */
.va-documentation-bar-bottom {
  border-color: var(--border-color-base);
.va-more {
  border-style: solid;
  margin-top: 0.5em;
  clear: both;
}
}
.va-documentation {
.va-more-link {
  border-width: 1px;
  font-size: 10px;
  margin: 10px 0;
  line-height: 15px;
  box-shadow: var(--box-shadow);
  background: var(--box-background-color);
}
}
.va-documentation-bar-top,
/**
.va-documentation-bar-bottom {
* Styling for links generated by [[MediaWiki:Edittools]]
  background-color: var(--background-color-dp-02);
* @source https://www.mediawiki.org/wiki/Extension:CharInsert#Styling
  margin: 0;
* @updated 2012-02-29
  padding: 10px;
*/
 
.client-js .mw-edittools-section {
display: inline;
}
}
 
.va-documentation-bar-top {
/* ######################################################## */
  border-width: 0 0 1px 0;
/* ### CONTENU EXTENSIBLE (Modèle:Contenu extensible)  ### */
/* ######################################################## */
.va-expandable-content .mw-collapsible-toggle {
  display: none;
}
}
.va-documentation-bar-bottom {
.va-expandable-content .mw-collapsible-toggle-collapsed,
  border-width: 1px 0 0 0;
.va-expandable-content .mw-collapsible-toggle-expanded {
  text-align: right;
  display: inline-block;
  float: none;
  margin-left: 2em;
}
}
.va-documentation-links {
.va-expandable-content .mw-collapsible-toggle-collapsed .collapsed,
  float: right;
.va-expandable-content .mw-collapsible-toggle-expanded .expanded {
  text-align: right;
  display: none;
}
}
.va-documentation-content {
.va-expandable-content .mw-collapsible-toggle span {
  margin: 0;
    color: #51E527;
  padding: 20px;
}
}
.va-documentation-small {
.va-expandable-content .mw-collapsible-toggle span:hover {
  font-size: 0.8em;
  cursor: pointer;
  text-decoration: underline;
}
 
/* ######################################################## */
/* ### LISTES (Modèle:Liste horizontale)                ### */
/* ######################################################## */
 
/* Classe pour les listes horizontales séparées par des puces.
  Adaptation de la classe 'hlist' de en:User:Edokter.
  (cf. [[mw:Snippets/Horizontal lists]]). */
.liste-horizontale ul,
.liste-horizontale li {
margin-left: 0;
display: inline;
white-space: nowrap;
*white-space: normal; /* be kind ie7 */
}
.liste-horizontale ul:after { /* be kind firefox (38) : cas ou le dernier élément est une sous-liste avec un seul élément */
white-space: normal;
}
.liste-horizontale li:after {
content: " "; /* au cas ou Mediawiki supprime les retours ligne */
}
.liste-horizontale li + li:before {
white-space: normal;
content: "· ";
font-weight: bold;
}
.liste-horizontale li li:first-child:before {
white-space: normal;
content: " (";
}
}
.liste-horizontale li ul:after {
.va-documentation-bar-top .external {
content: ")";
  background: none !important;
margin-left: -0.28em;
  padding: 0 !important;
}
}


/* ######################################################## */
/* ---------------------------------- */
/* ### HOMONYMIES (Modèle:Homonymie)                    ### */
/* Modèle:En-tête Aide                */
/* ######################################################## */
/* ---------------------------------- */


/* Personnalisation de l'apparence des liens vers les pages d'homonymie. */
.avt-help-frame {
.homonymie {
  padding: 20px;
padding-left: 2em;
  border: 1px solid var(--border-color-base);
padding-bottom: .5em;
  background-color: var(--box-background-color);
margin-bottom: .5em;
  box-shadow: var(--box-shadow);
margin-top: -0.6em;
  margin-bottom: 1em;
font-style: italic;
border-bottom: 1px #aaa solid;
}
}
 
.avt-help-welcome-title {
/* ######################################################### */
  text-align: center;
/* ### TABLEAUX D'ARTISANAT (Modèle:Tableau d'artisanat) ### */
  font-size: 150%;
/* ######################################################### */
  margin: 0 50px 0.5em 50px;
  text-shadow: var(--box-shadow);
.va-crafting-chart {
  color: #425b84;
    font-size: 12px;
  font-weight: bold;
    line-height: 16px;
    margin-bottom: 5px;
}
}
.avt-help-search {
.va-crafting-chart .selflink {
  display: grid;
    font-weight: normal;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
}
}
.avt-help-rules-first-steps {
.va-crafting-chart-left,
  display: grid;
.va-crafting-chart-right {
  grid-template-columns: 1fr 1fr;
    width: 31%;
  gap: 1em;
}
}
/* Partie à revoir */
.va-crafting-chart-middle {
.avt-help-homepage-title {
    width: 30%;
  color: var(--color-warning);
  text-align: center;
}
}
.avt-help-header {
.va-crafting-chart-chevron {
  display: grid;
    width: 4%;
  gap: 10px;
}
  grid-template-columns: 1fr 1fr;
  padding: 20px;
.va-crafting-chart-chevron .va-chevron-right {
  border: 1px solid var(--border-color-base);
    border-left-color: rgba(58,58,58,0.2);
  background-color: var(--box-background-color);
    border-width: 5px;
  box-shadow: var(--box-shadow);
    margin-right: -5px;
  justify-items: center;
}
  align-items: center;
  margin: 1em 0;
.va-crafting-chart-item {
    background-color: rgba(58,58,58,0.2);
    border: 1px solid #383838;
    margin: 0;
    padding: 1px 2px;
}
.va-crafting-chart-item + .va-crafting-chart-item {
    margin-top: 3px;
}
.va-crafting-chart-subitem {
    padding: 1px 0;
}
.va-crafting-chart-subitem + .va-crafting-chart-subitem {
    border-top: 1px solid #383838;
    margin-top: 1px;
}
}


/* ######################################################### */
/* ---------------------------------- */
/* ### LISTE DE COMPÉTENCES (Modèle:Compétences)        ### */
/* Modèle:Fiche de créatur            */
/* ######################################################### */
/* ---------------------------------- */


/* Listes SPECIAL */
.creature-card {
.avt-special-list
  margin: 1em 0 1em 0;
{
  display: grid;
list-style: none;
  grid-template-columns: 3fr 2fr;
margin: 0 !important;
  padding: 1em;
  background-color: var(--box-background-color);
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
}
}
.avt-special-list li span:last-child
.creature-card-description {
{
  padding-right: 1em;
    float: right;
}
}
 
.creature-card-data {
/* ######################################################### */
  padding-left: 1em;
/* ### REGLES LARGEUR ECRA         ### */
  border-left: 1px solid var(--border-color-base);
/* ######################################################### */
 
@media screen and (max-width: 1280px)
{
.portal-body {
    display: block !important;
}
.portal-body-left, .portal-body-right {
    width: auto !important;
    display: block !important;
}
}
}
/* ############################################ */
.creature-card-table {
/* ### CRAFTING TABLES                      ### */
  font-size: 12px;
/* ### Used in: Template:Crafting table    ### */
  width: 100%;
/* ############################################ */
  table-layout: fixed;
 
  border-collapse: collapse;
.np-crafting-table {
  display: table;
    font-size: 11px;
  line-height: 1rem;
    line-height: 16px;
  margin: 0 0 5px 0;
    margin-bottom: 5px;
}
}
 
.creature-card-table caption,
.np-crafting-block {
.creature-card-list dt {
    border: 1px solid #AAA;
  font-weight: bold;
    margin: 0;
  line-height: 1.1;
    padding: 1px 2px;
  margin: 0 0 5px 0;
  padding: 4px;
  background-color: var(--background-color-dp-02);
  text-align: center;
  border: 1px solid var(--border-color-base);
}
}
 
.creature-card-table th[scope="row"] {
.np-crafting-block + .np-crafting-block {
  text-align: left;
    margin-top: 3px;
  padding-right: 10px;
  max-width: 140px;
  word-wrap: normal;
}
}
 
.creature-card-table th[scope="row"],
.np-crafting-table .selflink {
.creature-card-table td {
    font-weight: normal;
  padding-top: 4px;
  vertical-align: super;
}
}
 
.creature-card-list {
/* ### FIN IMPORTATION DE L'ANCIEN CONTENU DE COMMON.CSS ### */
  font-size: 12px;
 
/* ################################################## */
/* ### THÈME GÉNÉRAL                              ### */
/* ################################################## */
 
/* Retire le titre de l'accueil et des portails */
body.action-view.page-Accueil #firstHeading,
body.action-view.page-Portail_Fallout #firstHeading,
body.action-view.page-Portail_Fallout_2 #firstHeading,
body.action-view.page-Portail_Fallout_Tactics #firstHeading,
body.action-view.page-Portail_Fallout_Shelter #firstHeading,
body.action-view.page-Portail_Fallout_3 #firstHeading,
body.action-view.page-Portail_Fallout_4 #firstHeading,
body.action-view.page-Portail_Fallout_New_Vegas #firstHeading {
    position: absolute;
    top: -5000px;
}
}


/* Logo du wiki */
/* ---------------------------------- */
.mw-wiki-logo {
/* Modèle:Galerie de vidéos          */
    background-size: 100%;
/* ---------------------------------- */
}


.globegris {
.avt-videogallery {
    background-image: url(/skins/common/images/wiki.png);
  list-style: none;
  margin: 0.5em 0 !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
}


.portail-titre {
/* ------------------------------ */
    font-size: 250%;
/* Modèle:Infobox                */
    color: #51E527;
/* ------------------------------ */
}


.portailhaut {
.avt-infobox {
    background-color: rgba(58, 58, 58, 0.2);
  box-shadow: var(--box-shadow);
    background-repeat: no-repeat;
  padding: 5px;
    width:100%;
  background-color: var(--box-background-color);
    border:1px solid #383838;
  border: 1px solid var(--border-color-base);
    border-radius:10px;
  clear: right;
    vertical-align: top;
  float: right;
    -moz-border-radius: 10px;
  font-size: 0.9em;
    -webkit-border-radius: 10px;
  line-height: 1.4;
  margin: 0 0 0.5em 1em;
  word-wrap: break-word;
  max-width: 400px;
}
}
 
.avt-infobox-header {
.portailgauche {
  border: 1px solid var(--border-color-base);
    width:65%;
  padding: 3px;
    border:1px solid #383838;
  text-align: center;
    vertical-align:top;
  font-size: 1.4em;
    background:rgba(58, 58, 58, 0.2);
  line-height: 1.1;
    padding: 0px 10px 10px 0px;
  margin-bottom: 10px;
    border-radius:10px;
  background-color: var(--background-color-dp-02);
  display: grid;
  grid-template-columns: 1fr 1.7fr 0.3fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-auto-flow: row;
  gap: 0 0;
}
}
 
.avt-infobox-header-icon,
.portaildroite {
.avt-infobox-header-title,
    width:35%;
.avt-infobox-header-subhead {
    border:1px solid #383838;
  justify-self: center;
    background:rgba(58, 58, 58, 0.2);
  align-self: center;
    vertical-align:top;
    padding: 0px 10px 10px 0px;
    border-radius:10px;
}
}
 
.avt-infobox-header-icon {
.portail-bandeau {
  grid-area: 1 / 3 / 4 / 4;
    background-image: url(/images/c/cb/Bandeau_gris.png);
    background-repeat: no-repeat;
}
}
 
.avt-infobox-header-title {
.portail-haut {
  grid-area: 2 / 1 / 4 / 4;
    background-color: rgba(58, 58, 58, 0.2);
  font-weight: bold;
    background-repeat: no-repeat;
    width:100%;
    border:1px solid #383838;
    border-radius:10px;
    vertical-align: top;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}
}
 
.avt-infobox-header-subhead {
.portail-gauche {
  grid-area: 1 / 1 / 2 / 4;
    width:65%;
  font-size: 0.6em;
    border:1px solid #383838;
    vertical-align:top;
    background:rgba(58, 58, 58, 0.2);
    padding: 0 10px 10px 0;
    border-radius:10px;
}
}
 
.avt-infobox-images {
.portail-droite {
  text-align: center;
    width:35%;
  display: flex;
    border:1px solid #383838;
  justify-content: space-around;
    background:rgba(58, 58, 58, 0.2);
  align-items: center;
    vertical-align:top;
  padding: 2px 0;
    padding: 0 10px 10px 0;
    border-radius:10px;
}
}
 
.avt-infobox-images a {
.logoportailfo1 {
  max-width: 100%;
    background-image: url(/images/6/69/Fo1_portail_armure.png);
  flex: 0 0 auto;
    background-size: 392px;
    background-position: -85px -67px;
}
}
 
.avt-infobox-images img {
.logoportailfo2 {
  height: auto;
    background-image: url(/images/2/2b/Fo2_portail_armure.png);
  width: auto;
    background-size: 231px auto;
  max-width: 100%;
    background-position:-2px -50px;
  max-height: 250px;
}
}
 
.avt-infobox-images-legend {
.logoportailfot {
  text-align: center;
    background-image: url(/images/3/31/Fot_portail_armure-min.png);
  font-size: 0.9em;
    background-size: 224px;
    background-position:-9px -19px;
}
}
 
.avt-infobox table {
.logoportailfo3 {
  width: 100%;
    background-image: url(/images/c/c7/Fo3_portail_armure.png);
  margin: 5px 0;
    background-size: 304px auto;
  table-layout: fixed;
    background-position:-72px -73px;
  border-collapse: collapse;
  display: table;
}
}
 
.avt-infobox caption {
.logoportailfnv {
  text-align: center;
    background-image: url(/images/2/28/Fnv_portail_ranger.png);
  border: 1px solid var(--border-color-base);
    background-size: 418px auto;
    background-position:-114px -42px;
}
}
 
.avt-infobox p.bloc,
.logoportailfo4 {
.avt-infobox caption {
    background-image: url(/images/f/f0/Fo4_portail_h%C3%A9ros_et_son_chien.png);
  font-weight: bold;
    background-size: 206px auto;
  line-height: 1.1;
    background-position: 0px -32px;
  margin: 0 0 5px 0;
  padding: 4px;
  background-color: var(--background-color-dp-02);
}
}
 
.avt-infobox th[scope="row"],
.logoportailfos {
.avt-infobox td {
    background-image: url(/images/d/d4/Fos_portail_vaultboy.png);
  padding-top: 4px;
    background-size: 184px auto;
  vertical-align: super;
    background-position:11px -17px;
}
}
 
.avt-infobox th[scope="row"] {
/* Fond principal */
  text-align: left;
body, div#mw-head, .mw-mmv-post-image, .portable-infobox > .pi-item:last-child, .portable-infobox .pi-media, .portable-infobox .pi-media {
  padding-right: 10px;
    background: url(/skins/Vector/images/background/cool.png);
  width: 8em;
  max-width: 140px;
  word-wrap: normal;
}
}
 
.avt-infobox span.mw-collapsible-toggle {
/* Fond du corps et couleur du texte */
  float: right;
.mw-body, div.vectorTabs li.selected, .mw-mmv-overlay, .flow-topic-titlebar, .portable-infobox .pi-header {
    background: url(/skins/Vector/images/background/coolblack.png);
}
}
 
.avt-infobox span.mw-collapsible-toggle a {
.mw-body {
  color: var(--color-base);
    border: 1px solid #383838;
    color: #F5F7F2;
}
}
 
.avt-infobox-armor-rdsd {
/* Retire la barre blanche apparaissant dans certaines pages (Spécial:Téléverser, Spécial:Modifications_récentes...) */
  width: 3em;
#mw-page-base {
  display: inline-block;
    background-image: none;
    background-color: transparent;
}
}


/* Bordure haute */
/* ------------------------------ */
#mw-head-base {
/* Modèle:Infobulle              */
    border-bottom: 1px solid #383838;
/* ------------------------------ */
}


fieldset {
.avt-tooltip {
    border: 1px solid #51E527;
  border-bottom: 1px dotted;
  cursor: help;
}
}


/* Couleur du texte en pied de page */
/* ---------------------------------- */
#footer li {
/* Modèle:Interactions                */
    color: #F5F7F2;
/* ---------------------------------- */
}


/* ################################################## */
.avt-interactions {
/* ###  Modification recente                      ### */
  list-style: none;
/* ################################################## */
  margin: 0.5em 0 !important;
 
  max-width: 32rem;
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagMultiselectWidget-handle,
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend {
background-color: rgba(58,58,58,0.2);
border: 1px solid #383838;
}
}
 
.avt-interactions-row {
.oo-ui-tagItemWidget,
  display: grid;
.mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget.oo-ui-widget {
  grid-template-columns: 8rem auto;
border: 1px solid #383838;
  border: 1px solid var(--border-color-base);
  margin: 0.25em 0;
  background-color: var(--box-background-color);
  box-shadow: var(--box-shadow);
  padding: 7px;
}
}
 
.avt-interactions-img {
.mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title,
  margin: auto;
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button,
.oo-ui-tagItemWidget.oo-ui-widget-enabled {
color: #F5F7F2;
}
}
 
.avt-interactions-text {
.oo-ui-tagMultiselectWidget.oo-ui-widget-enabled.oo-ui-tagMultiselectWidget-outlined .oo-ui-tagItemWidget.oo-ui-widget-enabled {
  align-self: center;
    background-color: #171717;
  font-size: 0.85em;
}
}


/* ################################################## */
/* ---------------------------------- */
/* ### SIDEBAR (barre de navigation gauche)      ### */
/* Modèle:Introduction de page-liste */
/* ################################################## */
/* ---------------------------------- */


div#mw-panel div.portal h3 {
.avt-introduction {
    color: #F5F7F2;
  margin: 0.5em 0;
}
}


div#mw-panel div.portal {
/* ------------------------------ */
    background: none;
/* Modèle:Liste de pages-listes  */
    border-top: 1px solid #383838;
/* ------------------------------ */
}


/* ################################################## */
.avt-game-listpage {
/* ###  LIENS                                    ### */
  float: right;
/* ################################################## */
  border: 1px solid var(--border-color-base);
 
  box-shadow: var(--box-shadow);
/* Couleur des liens, liens visités et de la barre d'outil à gauche */
  padding: 5px;
a, a:visited, div#mw-panel div.portal div.body ul li a, div#mw-panel div.portal div.body ul li a:visited, div.vectorTabs li a {
  margin: 0 0 0.5em 1em;
    color: #51E527;
  font-size: 0.85em;
  background-color: var(--box-background-color);
  width: 100%;
  max-width: 20rem;
  text-align: center;
}
}
 
.avt-game-listpage-title {
/* Couleurs des liens vers des pages non créées */
  border: 1px solid var(--border-color-base);
a.new, div.vectorTabs li.new a, div.vectorTabs li.new a:visited {
  background-color: var(--background-color-dp-02);
    color: #EE474D;
  padding: 0.25em 8em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
}
 
.avt-game-listpage-list {
/* Pas d'image pour les liens externes */
  margin: 0 !important;
.mw-body .external {
  list-style: none;
    background: none !important;
    padding: 0 !important;
}
}


/* ------------------------ */
/* Modèle:Liste horizontale */
/* ------------------------ */


/* ################################################## */
.liste-horizontale ul,
/* ###  TITRES                                    ### */
.liste-horizontale li {
/* ################################################## */
  margin-left: 0;
 
  display: inline;
/* Couleur des titres */
h1, h2, h3, h4, h5, h6 {
    color: #F5F7F2;
}
}
 
.liste-horizontale ul:after {
/* ################################################## */
  white-space: normal;
/* ###  BARRE D'OUTILS HAUTE                      ### */
/* ################################################## */
 
/* Couleur espace de nom courant */
div.vectorTabs li.selected a, div.vectorTabs li.selected a:visited {
    color: #F5F7F2;
}
}
 
.liste-horizontale li:after {
/* Fond espace de nom courant */
  content: " "; /* au cas ou Mediawiki supprime les retours ligne */
div.vectorTabs li.selected {
    border: 1px solid #383838;
    border-bottom: none;
    margin-left: -1px;
}
}
 
.liste-horizontale li + li:before {
div.vectorTabs span, div.vectorTabs, div.vectorTabs ul li, div.vectorTabs ul, div#mw-head div.vectorMenu h3 {
  white-space: normal;
    background-color: transparent;
  content: "· ";
    background-image: none;
  font-weight: bold;
}
}
 
.liste-horizontale li li:first-child:before {
/* ################################################## */
  white-space: normal;
/* ###  FICHIER (Fichier:...)                    ### */
  content: " (";
/* ################################################## */
 
ul#filetoc {
    border: 1px solid #383838;
    background-color: rgba(58, 58, 58, 0.2);
}
}
 
.liste-horizontale li ul:after {
/* ################################################## */
  content: ")";
/* ###  HISTORIQUE DES VERSIONS                  ### */
  margin-left: -0.28em;
/* ################################################## */
 
#pagehistory li.selected {
    background-color: rgba(58, 58, 58, 0.5);
    border: 1px dashed #51E527;
}
}


#pagehistory li {
/* ------------------------ */
    border: 1px solid #383838;
/* Modèle:Palette          */
}
/* ------------------------ */
#pagehistory li.selected {
    color: white;
}


/* ################################################## */
.palette .mw-collapsible-toggle a {
/* ###  CATÉGORIES                                ### */
  color: var(--color-base);
/* ################################################## */
 
.catlinks {
    border: 1px solid #383838;
    background-color: rgba(58, 58, 58, 0.2);
}
}
 
.palette-banniere {
/* Couleur des flèches d’arborescence */
  border-top: 2px solid var(--box-background-color);
.CategoryTreeToggle {
    color: #51E527 !important;
}
}
 
.palette-groupe {
.catlinks li {
  border-top: 2px solid var(--box-background-color);
    border-left: 1px solid #383838;
  border-right: 2px solid var(--box-background-color);
  font-weight: bold;
  text-align: right;
  white-space: normal;
}
}
 
.palette-banniere,
/* ################################################## */
.palette-groupe,
/* ###  PAGE DE RECHERCHE                        ### */
.palette-section {
/* ################################################## */
  background: var(--background-color-dp-03);
 
.mw-search-results {
    float: none;
}
}
 
.palette-listes .palette-groupe {
.mw-search-profile-tabs {
  background: var(--background-color-dp-04);
    background-color: rgba(58, 58, 58, 0.2);
    border: 1px solid #51E527;
}
}
 
.palette-pair {
fieldset#mw-searchoptions {
  background-color: var(--box-background-color);
    background-color: rgba(58, 58, 58, 0.2);
  border-top: 2px solid transparent;
    border: 1px solid #51E527 !important;
}
}
 
.palette {
/* ################################################## */
  clear: both;
/* ###  TABLE DES MATIÈRES (TOC)                  ### */
  margin: 1em 0 1em 0;
/* ################################################## */
  padding: 3px;
 
  font-size: 88%;
#toc, .toc, .mw-warning, .toccolours {
  border: 1px solid var(--border-color-base);
    border: 1px solid #383838;
    background-color: rgba(58, 58, 58, 0.2);
}
}
 
.palette ul,
/* ################################################## */
.palette li,
/* ###  VIGNETTES (thumb)                        ### */
.palette p {
/* ################################################## */
  margin: 0 !important;
 
  padding: 0 !important;
/* Couleur et bordure du cadre, taille du texte */
  line-height: 1.6em;
div.thumbinner {
  list-style: none none;
    border: 1px solid #383838;
    background-color: rgba(58, 58, 58, 0.2);
    font-size: 75%;
}
}
 
.palette-liens {
html .thumbimage {
  float: left;
    border: none;
  font-variant: small-caps;
background-color: transparent;
}
}
 
.palette-liens a {
/* ################################################## */
  background: none !important;
/* ###  GALERIES (<gallery>...</gallery>)        ### */
  padding: 0 !important;
/* ################################################## */
 
/* Couleur et bordure des cadres */
li.gallerybox div.thumb {
    border: 1px solid #383838;
    background-color: rgba(58, 58, 58, 0.2);
}
}
 
.palette span.mw-collapsible-toggle {
/* Taille du texte */
  float: right;
div.gallerytext {
    font-size: 80%;
}
}
 
.palette-liens,
/* ################################################## */
.palette .mw-collapsible-toggle,
/* ###  PRE (balises <pre>...</pre>              ### */
.palette-groupe {
/* ################################################## */
  padding: 0.25em 1em;
 
.mw-highlight {
    background: transparent;
}
}
 
.palette-titre {
pre {
  background-color: var(--background-color-dp-02);
    color: #F5F7F2;
    background-color: rgba(58, 58, 58, 0.2);
    border: 1px solid #383838;
    overflow: auto;
}
}
 
.palette-titre,
/* ################################################## */
.palette-section {
/* ###  CODE (balises <code>...</code>            ### */
  font-size: 105%;
/* ################################################## */
  font-weight: bold;
 
  padding: 0.25em 8em;
code {
  text-align: center;
    padding: 0px 3px 0px 3px;
    color: #51E527;
    background-color: rgba(56, 56, 56, 0.5);
    border-radius: 0;
    border: 1px solid #383838;
}
}
 
.palette-ligne {
/* ################################################## */
  display: table-row;
/* ###  ÉDITEUR WIKICODE                          ### */
/* ################################################## */
 
.wikiEditor-ui, .wikiEditor-ui-controls, .wikiEditor-preview-contents {
    background-color: transparent;
}
}
 
.palette-groupe,
.wikiEditor-ui-buttons {
.palette-image,
    background-color: transparent;
.palette-liste,
    border-top: none;
.palette-listes {
  display: table-cell;
  vertical-align: middle;
}
}
 
.palette-banniere,
.wikiEditor-ui-tabs {
.palette-liste,
    background-color: transparent;
.palette-liste-simple {
    border-left: 1px solid #383838;
  padding: 0.25em;
    border-top: 1px solid #383838;
}
}
 
.palette-liste,
.wikiEditor-ui-tabs div.current[rel=wikiEditor-ui-view-wikitext] {
.palette-listes {
    border-bottom: 1px solid #F5F7F2;
  width: 100%;
    background-color: #F5F7F2;
}
}
 
.palette-banniere,
.wikiEditor-ui-tabs div.current {
.mw-collapsible-content > ul > li > .palette-liste-simple {
    border-bottom: 1px solid #383838;
  text-align: center;
    background-color: rgba(58,58,58,0.2);
}
}
 
div.palette-image {
.wikiEditor-ui-tabs div {
  padding: 0.25em 0 0.25em 0.25em;
    background-color: transparent;
  width: 1%;
    border-right: 1px solid #383838;
    border-bottom: 1px solid #383838;
}
}
 
div.palette + div.palette {
.wikiEditor-ui-toolbar .tabs span.tab a, .wikiEditor-ui-toolbar .tabs span.tab a:visited, .wikiEditor-ui-tabs div a, .wikiEditor-ui-toolbar .booklet .index div {
  margin-top: -1px;
    color: #383838;
}
}


.wikiEditor-ui .wikiEditor-ui-top {
/* ---------------------------------- */
    border-bottom: 1px solid #383838;
/* Modèle:Portail de jeu              */
}
/* ---------------------------------- */


.wikiEditor-ui-toolbar {
.game-portal {
    background: #F5F7F2;
  display: grid;
  grid-gap: 1rem;
  grid-template-areas: "welcome welcome" "talkto talkto" "content content" "articleday imageday";
}
}
 
.portal-welcome {
.wikiEditor-ui-toolbar .sections .section {
  grid-area: welcome;
    border-top: 1px solid #383838;
    background-color: transparent;
}
}
 
.portal-talkto {
.wikiEditor-ui .wikiEditor-ui-view {
  grid-area: talkto;
    border: 1px solid #383838;
  text-align: center;
}
}
 
.portal-content {
.wikiEditor-ui-toolbar .group {
  grid-area: content;
    border-right: 1px solid #383838;
}
}
 
.portal-box-title {
#upload-div {
  text-align: center;
    background: #191919;
  font-size: 150%;
    border-top: 1px solid #383838;
  margin: 0 50px 5px 50px;
    border-bottom: 1px solid #383838;
  border-bottom: 1px solid var(--border-color-base);
  text-shadow: 0 0 8px var(--color-link);
  color: var(--color-link);
}
}
 
.portal-content-links {
#editform textarea, #wpTextbox1 {
  display: grid;
    background: rgba(58, 58, 58, 0.2);
  grid-gap: 2rem;
    border: none;
  grid-template-columns: 1fr 1fr;
    color: #F5F7F2;
  padding: 1rem;
font-family: consolas;
}
}
 
.portal-content-group-title {
.wikiEditor-ui-toolbar .booklet .index .current {
  border-bottom: 1px dotted var(--border-color-base);
    background-color: rgba(58, 58, 58, 0.2);
  font-size: 125%;
    color: #383838;
    border-top: 1px solid #383838;
    border-bottom: 1px solid #383838;
}
}
 
.portal-logo-fo1 {
.wikiEditor-ui-toolbar .booklet .pages {
  background-image: url(/images/6/69/Fo1_portail_armure.png);
    background-color: transparent;
  background-size: 123px;
  background-repeat: no-repeat;
  background-position: -3px -24px;
}
}
 
.portal-logo-fo2 {
.wikiEditor-ui-toolbar .page-characters div span {
  background-image: url(/images/2/2b/Fo2_portail_armure.png);
    border: 1px solid #383838;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: -3px -30px;
}
}
 
.portal-logo-fot {
.editOptions {
  background-image: url(/images/3/31/Fot_portail_armure-min.png);
    background-color: transparent;
  background-size: 123px;
    border: 1px solid #383838;
  background-repeat: no-repeat;
    border-top: none;
  background-position: -3px -24px;
}
}
 
.portal-logo-fo3 {
.mw-scribunto-console-fieldset {
  background-image: url(/images/c/c7/Fo3_portail_armure.png);
    background: transparent;
  background-size: 100px;
    color: #F5F7F2;
  background-repeat: no-repeat;
  background-position: -3px -24px;
}
}
 
.portal-logo-fnv {
#mw-scribunto-output #editform textarea, #wpTextbox1 {
  background-image: url(/images/2/28/Fnv_portail_ranger.png);
    background: rgba(81, 229, 39, 0.1);
  background-size: 180px;
    border: 1px solid #51E527;
  background-repeat: no-repeat;
    color: #F5F7F2;
  background-position: -33px -24px;
}
}
 
.portal-logo-fo4 {
.mw-scribunto-message {
  background-image: url(/images/f/f0/Fo4_portail_h%C3%A9ros_et_son_chien.png);
    color: #51E527;
  background-size: 80px;
    background: transparent;
  background-repeat: no-repeat;
  background-position: -3px -15px;
}
}
 
.portal-logo-fos {
td.diff-context {
  background-image: url(/images/d/d4/Fos_portail_vaultboy.png);
    background: rgba(58,58,58,0.2);
  background-size: 50px;
    border-color: #383838;
  background-repeat: no-repeat;
    color: #F5F7F2;
  background-position: -3px 0px;
}
}


td.diff-deletedline .diffchange, td.diff-addedline .diffchange {
/* ---------------------------------- */
    color: #383838;
/* Modèle:Références                  */
}
/* ---------------------------------- */


/* ################################################## */
.avt-references {
/* ###  ÉDITEUR VISUEL                            ### */
  font-size: 0.8em;
/* ################################################## */
  line-height: 1.6;
 
.oo-ui-toolbar-bar {
    border-bottom: 1px solid #383838;
    background-color: #F5F7F2;
    color: #383838;
}
}


.oo-ui-popupToolGroup .oo-ui-toolGroup-tools {
/* ---------------------------------- */
    background-color: #F5F7F2;
/* Modèle:Référence Dialogue          */
}
/* ---------------------------------- */


.ve-activated .vectorTabs .selected {
.reference-dial {
box-shadow: none;
  display: table;
}
}
 
.reference-dial-character {
figure[typeof~="mw:Image/Thumb"], figure[typeof~="mw:Image/Frame"], figure[typeof*="mw:Image"] > figcaption {
  display: table-cell;
border: 1px solid #383838;
  text-align: right;
background-color: rgba(58,58,58,0.2);
  white-space: nowrap;
}
}
 
.reference-dial-text {
.oo-ui-popupWidget-popup {
  display: table-cell;
    background-color: #F5F7F2;
    border: 1px solid #383838;
    border-radius: 0;
    color: #383838;
}
}
 
.reference-dial-row {
/* ################################################## */
  display: table-row;
/* ###  PRÉFÉRENCES                              ### */
/* ################################################## */
 
.client-js #preferences
{
    border: solid 1px #383838;
background: rgba(58, 58, 58, 0.2);
}
}


.client-js #preftoc
/* ---------------------------------- */
{
/* Modèle:Références nombreuses      */
background: 0;
/* ---------------------------------- */
}


.client-js #preftoc li
.avt-references-many {
{
  height: 230px;
height: 2.5em;
  overflow: auto;
background: 0;
  border: 1px solid var(--border-color-base);
  scrollbar-width: thin;
}
}


.client-js #preftoc li.selected a
/* ---------------------------------- */
{
/* Modèle:SPECIAL                    */
background: none;
/* ---------------------------------- */
color: #F5F7F2;
}


/* ################################################## */
.avt-special-label {
/* ###  PROFIL SOCIAL                            ### */
  width: 10rem;
/* ################################################## */
  display: inline-block;
 
#profile-top {
    background-color: rgba(58, 58, 58, 0.2);
    border-bottom: 1px solid #51E527;
    border-top: 1px solid #51E527;
}
 
#profile-image img {
    border: 1px solid #51E527;
    background-color: #191919;
}
 
#profile-toggle-button {
    background-color: #191919;
    border: 1px solid #383838;
}
 
/* Couleur des tableaux de message */
 
.user-board-message {
    border: 1px solid #383838;
    background-color: rgba(58, 58, 58, 0.2);
}
 
.user-board-message-from {
    background-color: #191919;
    border-bottom: 1px solid #383838;
}
 
.user-board-message-image img {
    border: 1px solid #383838;
}
 
.profile-on {
    background-color: rgba(58, 58, 58, 0.2);
    border: 1px solid #51E527;
}
 
/* ################################################## */
/* ###  Spécial:UpdateProfile                    ### */
/* ################################################## */
 
.offset1 span10 {
    font-family: arial;
}
 
.profile-tab {
    background-color: transparent;
    padding: 0px 5px 0px 5px;
    margin: 0px 5px 0px 0px;
    border-left: 1px solid #51E527;
    border-right: 1px solid #51E527;
}
 
.profile-tab-on {
    background-color: rgba(56,56,56,0.3);
    border: 1px solid #51E527;
    border-bottom: none;
    font-size: inherit;
    padding: 0 5px 0 5px;
}
 
.profile-info {
    background-color: rgba(56,56,56,0.3);
    border: 1px solid #51E527;
    width: 90%;
    padding: 20px 20px 20px 20px;
}
 
.profile-update {
    font-family: Arial;
}
 
.profile-update-title {
    font-size: 20px;
    color: #ACA9A9;
    margin: 0px 0px 5px 0px !important;
    font-weight: bold;
    border-bottom: 1px solid #383838;
}
 
.profile-update-unit-left {
    color: #777;
    font-weight: inherit;
    font-size: 14px;
    float: left;
    width: 20%;
}
 
/* ################################################## */
/* ###  TABLEAU WIKITABLE                        ### */
/* ################################################## */
 
table.wikitable {
    background-color: rgba(58, 58, 58, 0.2);
    border: 1px solid #383838;
    color: inherit;
}
 
table.wikitable > tr > th, table.wikitable > * > tr > th {
    background-color: #191919;
}
 
table.wikitable > tr > th, table.wikitable > tr > td, table.wikitable > * > tr > th, table.wikitable > * > tr > td {
    border: 1px solid #383838;
}
}


/* ################################################## */
/* -------------------------- */
/* ###  EXTENSION:ECHO   ### */
/* Modèle:Tableau d'artisanat */
/* ################################################## */
/* -------------------------- */
 
#pt-notifications-alert .mw-echo-notifications-badge, #pt-notifications-notice .mw-echo-notifications-badge
{
background-color: white;
border-radius: 16px;
}
 
/* ################################################## */
/* ###  DOCUMENTATION   ### */
/* ################################################## */
 
/* Modèle:Documentation */
.va-documentation {
    background: rgba(58,58,58,0.5);
    color: #F5F7F2;
}
 
.va-documentation, .va-documentation-bar-top, .va-documentation-bar-bottom {
    border-color: #383838;
}
 
.va-documentation-bar-top, .va-documentation-bar-bottom {
    background: #191919;
    color: #F5F7F2;
}
 
/* Modèle:Docparam */
.va-docparam {
    background: rgba(58,58,58,0.2);
    border: 1px dotted #383838;
}
 
.va-docparam-params {
    font-family: consolas;
    color: #F5F7F2;
}
 
/* ################################################## */
/* ###  VISIONNEUSE DE MÉDIAS   ### */
/* ################################################## */
 
.mw-mmv-overlay {
    background-color: transparent;
}
 
.mw-mmv-post-image {
    color: #F5F7F2;
    background-color: transparent;
    border-top: 1px solid #383838;
}
 
.mw-mmv-image-metadata {
    border-top: 1px solid #383838;
    background-color: black;
}
 
.mw-mmv-image-links li {
    color: #F5F7F2;
}
 
/* ################################################## */
/* ###  TESTS PORTAILS   ### */
/* ################################################## */
 
.portal-thematic {
-webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
color: #51E527;
}
.portal-thematic dl {
margin: auto;
padding: 0;
page-break-inside: avoid;
}
.portal-thematic dt {
border-bottom: 1px solid #383838;
}
.portal-thematic dd, .portal-thematic dt {
display: flex;
align-items: center;
height: 40px;
margin: 0;
}
.portal-thematic dd span:first-child, .portal-thematic dt span:first-child {
width: 65px;
text-align: center;
}
.portal-color {
border: 1px solid #383838;
background: rgba(58,58,58,0.2);
border-radius: 10px;
}
.portal-body {
display: table;
margin-top: 10px;
}
.portal-body-left {
width: 65%;
vertical-align: top;
padding: 10px;
display: table-cell;
}
.portal-body-right {
width: 35%;
vertical-align: top;
padding: 10px;
display: table-cell;
}
.portal-body-separator {
border: 5px solid transparent;
}
.portal-home-header {
padding: 5px 5px 5px 0;
}
.portal-home-header > span { padding-left: 200px; }
.portal-home-header span {
display: block;
font-size: 95%;
}
.portal-home-bckg {
background-image: url(/resources/assets/wiki.png?a7f4d);
background-repeat: no-repeat;
background-position: -198px -18px;
}
.portal-home-title {
font-size: 250% !important;
color: #51E527;
}
.portal-wikistats {
float: right;
text-align: right;
margin: 5px;
}
.portal-fogen-links {
text-align: center;
}
.portal-frame-title {
background-image: url(/images/c/cb/Bandeau_gris.png);
    background-repeat: no-repeat;
    background-position: left center;
    height: 30px;
}
.portal-frame-title img {
    position: relative;
    top: -9px;
    left: 7px;
}
.portal-frame-title h2 {
    margin: 0;
    display: inline-block;
    border: 0;
    padding: 0 0 0 9px;
}
.portal-frame-content{
padding: 15px;
}
.liste-portails
{
text-align: center;
}
.liste-portails ul
{
list-style: none;
padding: 0;
margin: 0;
}
.liste-portails ul li
{
display: inline-block;
width: 150px;
}
.liste-portails ul li span:first-child {
    display: table-cell;
    width: 150px;
    height: 60px;
    vertical-align: middle;
}
 
.portal-game-content {
-moz-column-count: 3;
-moz-column-gap: 20px;
-webkit-column-count: 3;
-webkit-column-gap: 20px;
column-count: 3;
column-gap: 20px;
}
.portal-game-content ul li:first-child {
display: flex;
align-items: center;
padding: 3px 0 3px 0;
margin: 10px 0 2px 0;
border-bottom: 1px solid #383838;
background: linear-gradient(to bottom, rgba(25,25,25,0) 0%, rgba(231,56,39,0) 0%, rgba(25,25,25,0.25) 25%, rgba(25,25,25,0.56) 56%, rgba(25,25,25,0.6) 60%, rgba(25,25,25,1) 100%);
}
.portal-game-content ul:first-child li:first-child {
margin: 0 0 2px 0;
}
.portal-game-content ul li:first-child span:first-child {
width: 70px;
height: 30px;
text-align: center;
}
.portal-game-content ul {
margin: 0;
page-break-inside: avoid;
padding: 0;
list-style-position: inside;
min-height: 130px;
}
.portal-game-content li {
display: inline-block;
line-height: 2em;
}
.portal-game-content li:first-child::after, .portal-game-content li:last-child::after {
content: "";
margin-right: 0;
}
.portal-game-content li::after {
content: ",";
margin-right: 5px;
}
 
/* ################################################## */
/* ###  PALETTES (Modèle:Palette de navigation)  ### */
/* ################################################## */
 
/* Palette de navigation */
.palette, .palette-pair {
background: rgba(58,58,58,0.2);
}
.palette-titre a {
color: #F7EEBA;
}
.palette .mw-collapsible-toggle a {
color: #F5F7F2;
}
.palette, .palette-groupe, .palette-section {
border: 1px solid #383838;
}
.palette-titre {
background: #000000;
}
.palette-banniere,.palette-groupe,.palette-section {
background: #191919;
}
.palette-listes .palette-groupe {
background: #272727;
}
 
/* ################################################## */
/* ### MEDIAWIKI:NEWARTICLE                      ### */
/* ################################################## */
 
.mw-newarticletext, .mw-newarticletextanon {
border: 1px solid #383838;
margin-bottom: 10px;
padding: 10px;
background-color: rgba(58,58,58,0.2);
}
.mw-newarticletext h2, .mw-newarticletextanon h2 {
border: none;
color: #51E527;
padding: 0;
margin: 10px 0 13px 0;
}
.new-article-game {
    color: #51E527;
}
 
/* ################################################## */
/* ### LISTE DEROULANTE (Modèle:Liste déroulante) ### */
/* ################################################## */
 
.dropdown {
    padding: 1px 8px;
}
.dropdown > :first-child:after {
    background-image: url("data:image/gif;base64,R0lGODlhAQABAIABAAAAAP///yH5BAEAAAEALAAAAAABAAEAQAICTAEAOw%3D%3D");
    border-color: white transparent transparent;
    border-style: solid;
    border-width: 4px;
    content: "";
    display: inline-block;
    height: 1px;
    margin-left: 4px;
    margin-top: 2px;
    position: relative;
    vertical-align: middle;
    width: 1px;
}
.dropdown:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: -1px;
    padding-bottom: 2px;
}
.dropdown ul {
    list-style: none outside none;
    min-width: 100%;
    top: 23px;
}
.dropdown:hover ul {
    display: block;
}
.dropdown li a {
    font-size: 12px;
    height: 14px;
    line-height: 14px;
}
 
.portal .body li a:visited, .vector-menu-portal .body li a:visited {
    color: #51E527;
.portal .body li a, .vector-menu-portal .body li a {
    color: #51E527;
}
 
.vector-menu-tabs, .vector-menu-tabs li, .vector-menu-tabs .selected, .vector-menu-tabs li a, .vector-menu-heading {
background: none;
}
.vector-menu-tabs .selected a, .vector-menu-tabs .selected a:visited {
    color: #51E527;
    text-decoration: none;
}
.vector-menu-tabs li a {
    color: #51E527;
}
 
#ca-view, #ca-edit, #ca-ve-edit, #ca-history, #ca-unwatch,
#ca-talk, .vector-menu-tabs .selected, #selected, #ca-nstab-main,
#collapsible {
color: #51E527;
}
 
.flow-post .flow-post-content {
color: white;
}
 
.flow-board {
border: 1px solid #383838;
    background: rgba(58,58,58,0.2);
    border-radius: 10px;
    margin:5px;
}
.ve-ui-mwWikitextSurface .ve-ce-paragraphNode {
    color:black;
}
.flow-topic-titlebar {
    border: 1px solid #383838;
}
.mw-ui-anchor.mw-ui-progressive.mw-ui-quiet {
color:#51E527;
}
 
.user-gift-container img {
background-color: transparent;
    border: 0px;
    padding: 3px;
}
 
.user-relationship-container img {
    background-color: transparent;
    border: 0px;
    padding: 3px;
}
 
/* ################################################## */
/* ### Infobox portables ### */
/* ################################################## */
 
.portable-infobox {
    background: transparent;
    font-size: 11px;
    line-height: 16px;
  border: 1px solid;
}
.portable-infobox .pi-title {
font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}
.portable-infobox .pi-header {
    text-align: center;
    border: 1px solid;
}
 
.portable-infobox .pi-media {
border: 1px solid;
}
 
.portable-infobox .pi-data-label {
    border: 1px;
}
.mwe-math-fallback-image-inline {
background-color: darkgray;
}
.vector-menu-portal .vector-menu-content li a {
    color: #51E527;
}
.vector-menu-portal .vector-menu-content li a:visited {
    color: #51E527;
}
 
/* ################################################## */
/* ### ARTISANAT (Modèle:Tableau d'artisanat)    ### */
/* ################################################## */


.artisanat {
.artisanat {
font-size: 0.85em;
  font-size: 0.85em;
max-width: 1400px;
  display: grid;
display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
grid-template-columns: auto 50px auto 50px auto;
  margin: 10px 0 10px 0;
margin: 10px 0 10px 0;
}
}
.artisanat-colonne-titre {
.artisanat-colonne-titre {
text-align: center;
  text-align: center;
border: 1px solid #383838;
  border: 1px solid var(--border-color-base);
margin-bottom: 3px;
  margin-bottom: 3px;
background: #171717;
  background-color: var(--background-color-dp-02);
padding: 3px;
  padding: 3px;
  font-weight: bold;
}
}
.artisanat-colonne-liste > ul {
.artisanat-colonne-liste > ul {
list-style: none;
  list-style: none;
margin: 0;
  margin: 0;
}
}
.artisanat-colonne-liste > ul > li {
.artisanat-colonne-liste > ul > li {
border: 1px solid #383838;
  border: 1px solid var(--border-color-base);
padding: 5px;
  padding: 5px;
margin-bottom: 3px;
  margin-bottom: 3px;
background: rgba(58,58,58,0.2);
  background: var(--box-background-color);
}
}
.artisanat-separateur {
.artisanat-separateur {
margin: auto;
  margin: auto;
}
}


/* ------------------------------ */
/* ------------------------------ */
/* Modèle:Bandeau de rubrique    */
/* Modèle:Transcription          */
/* ------------------------------ */
/* ------------------------------ */


.avt-section-banner {
.va-transcript {
   padding: 0.25em 0.5em;
   line-height: 18px;
  border-top: 1px solid #383838;
   padding: 10px 25px;
   border-bottom: 1px solid #383838;
  margin: 0.5em 0 0.5em 2em;
  background-color: rgba(58,58,58,0.2);
  font-size: 0.9em;
  overflow: hidden;
}
}
.avt-section-banner-img {
.va-transcript-icon {
   margin-right: 0.5em;
  width: 40px;
  z-index: -1;
  position: relative;
  float: left;
  left: -25px;
   margin-right: -40px;
  top: -5px;
}
}
 
.va-transcript-text {
/* ---------------------------------- */
   font-family: monospace;
/* Modèle:Interactions                */
   font-size: 13px;
/* ---------------------------------- */
 
.avt-interactions {
  list-style: none;
  margin: 0.5em 0 !important;
  max-width: 32rem;
}
.avt-interactions-row {
  display: grid;
  grid-template-columns: 8rem auto;
  border: 1px solid #383838;
  margin: 0.25em 0;
  background-color: rgba(58,58,58,0.2);
  padding: 7px;
}
.avt-interactions-img {
  margin: auto;
}
.avt-interactions-text {
  align-self: center;
   font-size: 0.85em;
}
 
/* ---------------------------------- */
/* Modèle:Galerie de vidéos          */
/* ---------------------------------- */
 
.avt-videogallery {
  list-style: none;
  margin: 0.5em 0 !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
 
/* ---------------------------------- */
/* Modèle:Références                  */
/* ---------------------------------- */
 
.avt-references {
   font-size: 0.8em;
  line-height: 1.6;
}
}

Version du 10 mars 2024 à 14:18

/*Alerte (0)
Notification (0)
Liste de suivi

Outils personnels
Discussion
Brouillon
Préférences
Contributions
Se déconnecter

    --------------------------------------------------- 
    Variables
    --------------------------------------------------- 
    Ces variables définissent les couleurs utilisés par
    le wiki.
    ---------------------------------------------------
*/

:root {
  --background-color-dp-00: #a9ceea;
  --background-color-dp-01: #b1d2ec;
  --background-color-dp-02: #bad7ee;
  --background-color-dp-03: #c2dcf0;
  --background-color-dp-04: #cbe1f2;
  --background-color-dp-06: #d4e6f4;
  --background-color-dp-08: #dcebf6;
  --background-color-dp-12: #e5f0f8;
  --background-color-dp-16: #edf5fa;
  --background-color-dp-24: #f6fafc;
  --background-img: no-repeat url(avt-main-25-background.jpg);
  --background-main: #fff;
  --box-background-color: #ffffff00;
  --box-shadow: 0 0 10px #a9ceea;
  --color-base: black;
  --color-warning: #ffcc33;
  --color-link: #0645ad;
  --color-link-visited: #3c88ff;
  --border-color-base: #f0f0f0;
}

/*
    --------------------------------------------------- 
    Mode sombre
    --------------------------------------------------- 
    Partie régissant le mode sombre
    ---------------------------------------------------
*/

:root.client-darkmode {
  --background-color-dp-00: #03100000;
  --background-color-dp-01: #040d02;
  --background-color-dp-02: #e5f4e0;
  --background-color-dp-03: #d4eccc;
  --background-color-dp-04: #d4eccc;
  --background-color-dp-06: #d4eccc;
  --background-color-dp-08: #102f07;
  --background-color-dp-12: #133608;
  --background-color-dp-16: #153d09;
  --background-color-dp-24: #18440b;
  --background-img: no-repeat url(avt-main-25-background.jpg);
  --background-main: #fff;
  --box-background-color: #ffffff00;
  --box-shadow: 0 0 10px #f1fff2;
  --color-base: black;
  --color-warning: #ffcc33;
  --color-link: green;
  --color-link-visited: #0D590D;
  --border-color-base: #e6e6e6;
}
.client-darkmode .cdx-thumbnail__image, .client-darkmode #main-content img, .client-darkmode .cdx-thumbnail__image:hover {
  filter: none
}
.client-darkmode a,
.client-darkmode .vector-main-menu-group .vector-menu-content li a,
.client-darkmode .toctogglelabel,
.client-darkmode .mw-parser-output a.external,
.client-darkmode .mw-parser-output a.extiw,
.client-darkmode .mw-parser-output a.extiw:active,
.client-darkmode .vector-menu-portal .vector-menu-content li a,
.client-darkmode .vector-menu-tabs li a,
.client-darkmode .vector-toc .vector-toc-link {
    color: var(--color-link);
}
.client-darkmode .vector-toc .vector-toc-level-1-active:not(.vector-toc-list-item-active) > .vector-toc-link {
    color: var(--color-link);
}
.client-darkmode .sidebar-toc .sidebar-toc-link,
.client-darkmode .vector-pinnable-header-toggle-button,
.client-darkmode #pt-userpage-2 a,
.client-darkmode .vector-dropdown .mw-list-item a,
.client-darkmode .vector-menu-dropdown > .vector-menu-content .mw-list-item a {
  color: var(--color-link);
}
.client-darkmode a:visited,
.client-darkmode .vector-main-menu-group .vector-menu-content li a:visited,
.client-darkmode .toctogglelabel:visited,
.client-darkmode .mw-parser-output a.external:visited,
.client-darkmode .mw-parser-output a.extiw:visited,
.mw-collapsible-toggle-default .mw-collapsible-text {
    color: var(--color-link-visited);
}
.client-darkmode .vector-menu-portal .vector-menu-content li a:visited,
.client-darkmode .vector-menu-tabs li a:visited,
.client-darkmode .sidebar-toc .sidebar-toc-link:visited,
.client-darkmode .vector-pinnable-header-toggle-button:visited,
.client-darkmode #pt-userpage-2 a:visited,
.client-darkmode .vector-dropdown .mw-list-item a:visited,
.client-darkmode .vector-menu-dropdown > .vector-menu-content .mw-list-item a:visited {
  color: var(--color-link);
}
.client-darkmode .infobox,
.client-darkmode .toc,
.client-darkmode .thumbinner,
.client-darkmode #simpleSearch,
.client-darkmode #searchInput,
.client-darkmode #searchButton,
.client-darkmode #searchGoButton,
.client-darkmode table,
.client-darkmode table.toccolours,
.client-darkmode .wikitable,
.client-darkmode .mw-notification {
  background-color: var(--box-background-color);
  border-color: var(--border-color-base);
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button {
    color: #fff;
    background-color: #2cb22c;
    border-color: #2cb22c;
    border-top-color: #2cb22c;
    border-right-color: #2cb22c;
    border-bottom-color: #2cb22c;
    border-left-color: #2cb22c;
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:focus + span {
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922;
    outline: 1px solid transparent
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:hover + span {
    border-color: #228922
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:active + span {
    background-color: #228922;
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate + span {
    background-color: #228922;
    border-color: #228922
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked:focus + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate:focus + span {
    background-color: #228922;
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922,inset 0 0 0 2px #fff
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked:hover + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate:hover + span {
    background-color: #228922;
    border-color: #228922
}
.client-darkmode .oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:checked:active + span,.oo-ui-checkboxInputWidget.oo-ui-widget-enabled [type='checkbox']:indeterminate:active + span {
    background-color: #228922;
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922
}
.client-darkmode .oo-ui-radioInputWidget [type='radio']:disabled + span {
    background-color: #228922;
    border-color: #228922
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:hover + span {
    border-color: #228922
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:active + span {
    background-color: #228922;
    border-color: #228922
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked + span {
    border-color: #228922
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked:hover + span {
    border-color: #228922
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked:active + span {
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922
}
.client-darkmode .oo-ui-radioInputWidget.oo-ui-widget-enabled [type='radio']:checked:active + span::before {
    border-color: #228922
}
.client-darkmode .cdx-button:enabled.cdx-button--weight-primary.cdx-button--action-progressive, .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive {
    background-color: #2cb22c;
    color: #fff;
    border-color: #2cb22c;
}
.client-darkmode .cdx-button:enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover,.cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover {
	background-color: #228922;
	border-color: #228922
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-buttonElement-active > .oo-ui-buttonElement-button {
    background-color: #228922;
    border-color: #f8f9fa;
}
.client-darkmode .mw-rcfilters-ui-changesListWrapperWidget:not(.mw-rcfilters-ui-changesListWrapperWidget-highlighted) .mw-changeslist-watchedseen div.mw-rcfilters-ui-highlights-color-none {
    background-color: #ffffff;
    border: 1px solid #228922;
}
.client-darkmode .mw-rcfilters-ui-changesListWrapperWidget:not(.mw-rcfilters-ui-changesListWrapperWidget-highlighted) .mw-changeslist-watchedunseen div.mw-rcfilters-ui-highlights-color-none {
    background-color: #228922;
    border: 1px solid #228922;
}
.client-darkmode .oo-ui-optionWidget-selected .mw-echo-ui-pageNotificationsOptionWidget-label-count {
    color: #228922;
}
.client-darkmode .mw-echo-ui-pageNotificationsOptionWidget.oo-ui-optionWidget-selected {
    background-color: #e3ffe5;
    color: var(--color-link);
}
.client-darkmode .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link {
    color: #fff;
    background-color: #2cb22c;
}
.client-darkmode .oo-ui-tool.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-tool-link:hover {
    background-color: #228922;
}
.client-darkmode .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-quiet.cdx-button--action-progressive {
    color: var(--color-link);
}
.client-darkmode .cdx-text-input__input:enabled:focus {
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922;
    outline: 1px solid transparent
}
.client-darkmode .cdx-button:enabled:focus:not(:active):not(.cdx-button--is-active),.cdx-button.cdx-button--fake-button--enabled:focus:not(:active):not(.cdx-button--is-active) {
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922
}
.client-darkmode .vector-pinnable-element .mw-list-item a {
	color: #228922
}
.client-darkmode .vector-pinnable-element .mw-list-item a:not(.mw-selflink):visited, .vector-dropdown-content .mw-list-item a:not(.mw-selflink):visited {
    color: var(--color-link-visited);
}
.client-darkmode #mediauploader-steps li.head {
    color: var(--color-link);
    background-color: #ceefd4;
    font-weight: bold;
}
.client-darkmode fieldset {
    border: 1px solid #ffffff;
    margin: 1em 0 1em 0;
    padding: 0 1em 1em;
}
.client-darkmode :focus {
    outline-color: var(--color-link);
}
.client-darkmode .oo-ui-buttonElement-frameless.oo-ui-widget-enabled.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button {
    color: var(--color-link);
}
.client-darkmode    input:focus:not(:active) + .cdx-button:not(.cdx-button--action-progressive) {
        border-color: #228922;
        box-shadow: inset 0 0 0 1px #228922
    }
.client-darkmode .client-js .mw-rcfilters-spinner .mw-rcfilters-spinner-bounce, .client-js .mw-rcfilters-spinner::before, .client-js .mw-rcfilters-spinner::after {
    content: '';
    background-color: #228922;
    display: block;
    float: left;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: rcfiltersBouncedelay 1600ms ease-in-out -160ms infinite both;
}
.client-darkmode .ve-init-mw-progressBarWidget {
    background-color: #fff;
    box-sizing: border-box;
    height: 0.875em;
    border: 1px solid #228922;
    border-radius: 0.875em;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
.client-darkmode .ve-init-mw-progressBarWidget {
    background-color: #fff;
    box-sizing: border-box;
    height: 0.875em;
    border: 1px solid #228922;
    border-radius: 0.875em;
    box-shadow: 0 1px 1px rgba(0,0,0,0.15);
}
.client-darkmode .ve-ce-focusableNode-highlight {
    background: #25ff007a;
    box-shadow: inset 0 0 0 1px #39bd49;
    position: absolute;
    overflow: hidden;
}
.client-darkmode input:active + .cdx-button.cdx-button--action-progressive {
    background-color: #60ea60;
    color: #ffffff;
    border-color: #60ea60
}
.client-darkmode input:focus:not(:active) + .cdx-button.cdx-button--action-progressive {
    border-color: #228922;
    box-shadow: inset 0 0 0 1px #228922 inset 0 0 0 2px #ffffff
}
.client-darkmode .cdx-menu-item--enabled.cdx-menu-item--active {
    background-color: #eaf3ff;
    color: var(--color-link)
}
.client-darkmode .cdx-menu-item--enabled.cdx-menu-item--active .cdx-menu-item__content,.cdx-menu-item--enabled.cdx-menu-item--active .cdx-menu-item__text__description {
    color: var(--color-link);
}
.client-darkmode .cdx-menu-item--enabled.cdx-menu-item--selected.cdx-menu-item--highlighted,.cdx-menu-item--enabled.cdx-menu-item--selected.cdx-menu-item--highlighted .cdx-menu-item__content,.cdx-menu-item--enabled.cdx-menu-item--selected.cdx-menu-item--highlighted .cdx-menu-item__text__description {
    color: var(--color-link)
}
.client-darkmode .mwe-popups .mwe-popups-extract {
    color: var(--color-link);
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:focus {
    border-color: var(--color-link);
    box-shadow: inset 0 0 0 1px var(--color-link)
}
.client-darkmode .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-progressive > .oo-ui-buttonElement-button:focus {
    border-color: var(--color-link);
    box-shadow: inset 0 0 0 1px var(--color-link),inset 0 0 0 2px #fff;
    outline: 1px solid transparent
}
.client-darkmode .oo-ui-textInputWidget.oo-ui-widget-enabled .oo-ui-inputWidget-input:focus {
    border-color: var(--color-link);
    outline: 1px solid transparent;
    box-shadow: inset 0 0 0 1px var(--color-link)
}
.client-darkmode .oo-ui-textInputWidget.oo-ui-widget-enabled:hover .oo-ui-inputWidget-input:focus {
    border-color: var(--color-link)
}
.client-darkmode .ve-init-mw-progressBarWidget-bar {
    background-color: #228922;
    height: 0.875em;
}

/*
    --------------------------------------------------- 
    Legacy
    --------------------------------------------------- 
    le style ci-dessous doit être maintenu tant          
    que les modèles associés sont encore utilisés. 
    Ces classes doivent être supprimées.     
    ---------------------------------------------------
*/

/* Arrière-plan partagé */
.va-infobox-title,.va-navbox-title{background-color:#383020;background-image:none;background:url(/skins/Vector/images/background/foggy.png)!important}

/* Modèle:Docparam */
.va-docparam{background:#678e6c;border:1px dotted #d9d9d9;margin-bottom:3px;overflow:auto;padding:0 2px 0 20px;text-indent:-20px}.va-docparam-icon{float:left;margin:0;padding:0;width:20px}.va-docparam-default{float:right;font-size:10px}.va-docparam-params{font-family:monospace;color:#000}.va-docparam-desc{margin:0;padding:0 0 5px 20px}

/* Modèle:Console */
.va-console{background-color:#cfc;color:#000;font-family:consolas;padding:2px}.va-console-cmd{color:#555}

/* Modèle:Introduction */
.va-intro-image{padding-left:2px;padding-right:2px}.va-intro td{padding-bottom:2px}.va-intro-header{font-size:16px;font-weight:700}.va-intro-bullets{font-size:11px;line-height:16px;vertical-align:top;font-family:sans-serif}

/* Modèle:Plus */
.va-more{margin-top:.5em}.va-more-link{font-size:10px;line-height:15px}

/* MediaWiki:Newarticle */
.mw-newarticletext,.mw-newarticletextanon{border:1px solid #383838;margin-bottom:10px;padding:10px;background-color:rgba(58,58,58,.2)}.mw-newarticletext h2,.mw-newarticletextanon h2{border:none;color:#51e527;padding:0;margin:10px 0 13px 0}.new-article-game{color:#51e527}

/*
    --------------------------------------------------- 
    Extension override
    --------------------------------------------------- 
    le style ci-dessous écrase les classes ajoutées
    par les extensions MediaWiki
    ---------------------------------------------------
*/

/* ------------------------------ */
/* Extension:TabberNeue           */
/* ------------------------------ */

.tabber__header {
  box-shadow: none;
}
.tabber__tabs {
  margin-bottom: 1em;
}

/*
    --------------------------------------------------- 
    Vector override
    --------------------------------------------------- 
    le style ci-dessous écrase les classes par défaut
    de l'habillage Vector.  
    ---------------------------------------------------
*/

/* Fond principal */
body {
  background: var(--background-img);
  background-size: cover;
  background-attachment: fixed;
}
/* Cadre central */
.mw-page-container {
  background: var(--background-main);
  border-left: 1px solid var(--border-color-base);
  border-right: 1px solid var(--border-color-base);
}
/* Cadre de la barre latéral gauche */
#vector-main-menu {
    margin-left: -14px;
    margin-top: 11px;
    padding: 6px 14px;
    background-color: #f8f9fa;

}
/* Barre latérale gauche + sommaire sticky */
.sidebar-toc,
.vector-toc-enabled .mw-sidebar {
  background-color: var(--background-main);
  border-width: 0px;
}
/* Cacher l'option permettant de switcher vers l'ancien Vector */
.vector-main-menu-action-opt-out {
  display: none;
}

/* ---------------------------------- */
/* Liens interwiki de langue          */
/* ---------------------------------- */

.vector-dropdown .vector-menu-content-list {
    list-style: none;
    margin: 0;
}

/* ------------------------------ */
/* MediaWiki:Sitenotice           */
/* ------------------------------ */

.avt-sitenotice {
  border: 1px solid var(--border-color-base);
  background-color: var(--box-background-color);
  box-shadow: var(--box-shadow);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ----------------------- */
/* Galerie pages-listes    */
/* ----------------------- */

.avt-gallery-list-page {
  text-align: center;
  margin: 0.3em 0 0 0 !important;
}
.avt-gallery-list-page li.gallerybox div.thumb {
  border: none;
  background-color: transparent;
}
.avt-gallery-list-page li.gallerybox div.thumb img {
  transition: transform 0.2s;
}
.avt-gallery-list-page li.gallerybox div.thumb img:hover {
  transform: scale(1.5);
}

/* ----------------------- */
/* Tables MediaWiki        */
/* ----------------------- */

.wikitable,
.mw-datatable,
.mw_metadata {
  box-shadow: var(--box-shadow);
  background-color: var(--box-background-color);
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  font-family: sans-serif;
  overflow: auto;
  color: var(--color-base);
}
.mw-datatable tr:hover td {
  background-color: var(--background-color-dp-04);
}
.wikitable > tr > td,
.wikitable > * > tr > td,
.wikitable > tr > th,
.wikitable > * > tr > th,
.mw-datatable > tr > td,
.mw-datatable > * > tr > td,
.mw-datatable > tr > th,
.mw-datatable > * > tr > th,
.mw_metadata > tr > td,
.mw_metadata > * > tr > td,
.mw_metadata > tr > th,
.mw_metadata > * > tr > th {
  border: 1px solid var(--border-color-base);
  padding: 4px 8px;
}
.wikitable > tr > th,
.wikitable > * > tr > th,
.mw-datatable > tr > th,
.mw-datatable > * > tr > th,
.mw_metadata > tr > th,
.mw_metadata > * > tr > th {
  background-color: var(--background-color-dp-02);
  font-weight: bold;
  text-align: center;
}

.mw-datatable td,
.mw_metadata td {
  background-color: var(--box-background-color);
}

/* ----------------------- */
/* Tables personnalisées   */
/* ----------------------- */

.avt-table-large {
  table-layout: fixed;
  width: 100%;
  word-break: break-word;
}
.va-table {
  box-shadow: var(--box-shadow);
  background-color: var(--box-background-color);
  border-collapse: collapse;
  empty-cells: show;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  font-family: sans-serif;
  overflow: auto;
}
.va-table > tr > td,
.va-table > * > tr > td,
.va-table > tr > th,
.va-table > * > tr > th {
  border: 1px solid var(--border-color-base);
  padding: 4px 8px;
}
.va-table > tr > th,
.va-table > * > tr > th {
  background-color: var(--background-color-dp-02);
  font-weight: bold;
  text-align: center;
}
/* Adapting lists & paragraphs */
.va-table ul,
.va-table ol,
.va-table p {
  line-height: 16px;
  margin-bottom: 0;
}
.va-table ul,
.va-table ol {
  margin-left: 20px;
  margin-top: 0;
}
.va-table p,
.va-table * + ul,
.va-table * + ol {
  margin-top: 3px;
}
.va-table ul li,
.va-table ol li {
  margin-bottom: 0;
}
/* Highlighted rows */
.va-table > tr.va-table-highlight,
.va-table > * > tr.va-table-highlight,
.va-table > tr.va-table-highlight > th,
.va-table > * > tr.va-table-highlight > th {
  background-color: var(--background-color-dp-01);
}
/* Tables with specific vertical alignment for cells */
.va-table-top > tr > td,
.va-table-top > * > tr > td {
  vertical-align: top;
}
.va-table-middle > tr > td,
.va-table-middle > * > tr > td {
  vertical-align: middle;
}
.va-table-bottom > tr > td,
.va-table-bottom > * > tr > td {
  vertical-align: bottom;
}
/* Tables with specific horizontal alignment for cells/columns */
.va-table-center > tr > td,
.va-table-center > * > tr > td,
.va-table-center-col1 > * > tr > td:first-child,
.va-table-center-col2 > * > tr > *:first-child + td,
.va-table-center-col3 > * > tr > *:first-child + * + td,
.va-table-center-col4 > * > tr > *:first-child + * + * + td,
.va-table-center-col5 > * > tr > *:first-child + * + * + * + td,
.va-table-center-col6 > * > tr > *:first-child + * + * + * + * + td,
.va-table-center-col7 > * > tr > *:first-child + * + * + * + * + * + td,
.va-table-center-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-center-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-center-col10
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col11
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col12
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col13
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col14
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-center-col15
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td {
  text-align: center;
}
.va-table-left > tr > td,
.va-table-left > * > tr > td,
.va-table-left-col1 > * > tr > td:first-child,
.va-table-left-col2 > * > tr > *:first-child + td,
.va-table-left-col3 > * > tr > *:first-child + * + td,
.va-table-left-col4 > * > tr > *:first-child + * + * + td,
.va-table-left-col5 > * > tr > *:first-child + * + * + * + td,
.va-table-left-col6 > * > tr > *:first-child + * + * + * + * + td,
.va-table-left-col7 > * > tr > *:first-child + * + * + * + * + * + td,
.va-table-left-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-left-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-left-col10
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col11
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col12
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col13
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col14
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-left-col15
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td {
  text-align: left;
}
.va-table-right > tr > td,
.va-table-right > * > tr > td,
.va-table-right-col1 > * > tr > td:first-child,
.va-table-right-col2 > * > tr > *:first-child + td,
.va-table-right-col3 > * > tr > *:first-child + * + td,
.va-table-right-col4 > * > tr > *:first-child + * + * + td,
.va-table-right-col5 > * > tr > *:first-child + * + * + * + td,
.va-table-right-col6 > * > tr > *:first-child + * + * + * + * + td,
.va-table-right-col7 > * > tr > *:first-child + * + * + * + * + * + td,
.va-table-right-col8 > * > tr > *:first-child + * + * + * + * + * + * + td,
.va-table-right-col9 > * > tr > *:first-child + * + * + * + * + * + * + * + td,
.va-table-right-col10
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col11
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col12
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col13
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col14
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td,
.va-table-right-col15
  > *
  > tr
  > *:first-child
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + *
  + td {
  text-align: right;
}
/* Tables which are full width */
.va-table-full {
  width: 100%;
}
/* Tables which leave enough space for an infobox on the right */
.va-table-full-infobox {
  width: 100%; /*960px;*/
}
/* Tables which are floated */
.va-table-float-left {
  clear: left;
  float: left;
  margin: 0 10px 10px 0;
}
.va-table-float-right {
  clear: right;
  float: right;
  margin: 0 0 10px 10px;
}
/* Tables in which the first column starts with an icon */
.va-table-icon > tr > td:first-child,
.va-table-icon > * > tr > td:first-child {
  padding-left: 18px;
  text-indent: -18px;
}

/*
    --------------------------------------------------- 
    Portals
    --------------------------------------------------- 
    Les classes ci-dessous sont utilisées par les
    portails.
    ---------------------------------------------------
*/

/* On cache le titre des portails */
body.action-view.page-Accueil #firstHeading,
body.action-view.page-Portail_Fallout #firstHeading,
body.action-view.page-Portail_Fallout_2 #firstHeading,
body.action-view.page-Portail_Fallout_3 #firstHeading,
body.action-view.page-Portail_Fallout_4 #firstHeading,
body.action-view.page-Portail_Fallout_76 #firstHeading,
body.action-view.page-Portail_Fallout_New_Vegas #firstHeading,
body.action-view.page-Portail_Fallout_Shelter #firstHeading,
body.action-view.page-Portail_Fallout_Tactics #firstHeading {
  position: absolute;
  top: -5000px;
}
/* On cache l'en-tete fixe pour le moment sur l'accueil */
body.action-view.page-Accueil #vector-sticky-header {
  display: none;
}
/* Cadre principale et structure */
.homepage {
  display: grid;
  grid-gap: 1rem;
  grid-template-areas:
    "welcome welcome welcome"
    "serie serie serie"
    "games games games"
    "autres autres theme"
    "anecdotes anecdotes presentation"
    "articleday articleday participation";
}
/* Définition des zones */
.homepage-welcome {
  grid-area: welcome;
  background: linear-gradient(to bottom, #fff, var(--box-background-color));
  border-bottom: solid 1px var(--border-color-base);
}
.grande-annonce {
  grid-area: serie;
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
}
.homepage-portal-games {
  grid-area: games;
}
.homepage-portal-autres {
  grid-area: autres;
}
.homepage-portal-theme {
  grid-area: theme;
}
.homepage-presentation {
  grid-area: presentation;
}
.homepage-participation {
  grid-area: participation;
}
.homepage-articleday {
  grid-area: articleday;
}
.homepage-anecdotes {
  grid-area: anecdotes;
}
/* Boîte générique */
.homepage-box {
  border: 1px solid var(--border-color-base);
  background: var(--box-background-color);
  box-shadow: var(--box-shadow);
  padding: 1rem;
}
.homepage-welcome-subtitle,
.homepage-welcome-links,
.homepage-portal-theme .homepage-box-content {
  text-align: center;
}
.homepage-welcome-fogen {
  margin-bottom: 1rem;
  text-align: center;
}
.homepage-welcome-title {
  text-align: center;
  font-size: 200%;
  margin: 0 50px 5px 50px;
  border-bottom: 1px solid var(--border-color-base);
  text-shadow: 0 0 3px var(--color-link);
  color: var(--color-link);
  font-weight: bold;
}
.homepage-box-title {
  text-align: center;
  font-size: 150%;
  border-bottom: 1px solid var(--border-color-base);
  margin-bottom: 20px;
  text-shadow: 0 0 6px var(--color-link);
  color: var(--color-link);
}
.homepage-portal-autres-list {
  list-style: none;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px 0;
}
.homepage-portal-games-list {
  list-style: none;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 30px 0;
}
.homepage-portal-games-item {
  text-align: center;
  font-size: 0.85em;
}
.homepage-portal-games-logo {
  height: 60px;
}
.homepage-presentation-title,
.homepage-participation-title,
.homepage-articleday-title,
.homepage-imageday-title {
  border-bottom: 1px solid var(--border-color-base);
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--color-link);
  color: var(--color-link);
}
.homepage-presentation-content,
.homepage-participation-content,
.homepage-articleday-content,
.homepage-imageday-content {
  font-size: 0.85em;
}

/*
    --------------------------------------------------- 
    Cross classes
    --------------------------------------------------- 
    Les classes ci-dessous sont utilisées par plusieurs
    modèles ou modules
    ---------------------------------------------------
*/

/* Pour créer des listes simples, souvent appelées
dans des modèles ou des tables */
.avt-simple-list {
  margin: 0 !important;
  list-style: none;
}
/* Séparateur <hr/> */
.separator {
  background-color: var(--border-color-base);
}
/* Boîte générique */
.avt-genericbox {
  border: 1px solid var(--border-color-base);
  background: var(--box-background-color);
}

/*
    --------------------------------------------------- 
    Templates & Modules
    --------------------------------------------------- 
    le style ci-dessous défini l'apparence des modèles
    et des modules.
    Les modèles doivent être rangés dans l'ordre
    alphabétique.
    ---------------------------------------------------
*/

/* ------------------------------ */
/* Modèle:Bandeau d'avertissement  */
/* ------------------------------ */

.avt-warn-banner {
  margin: 0.5em 90px;
  display: grid;
  grid-template-columns: max-content auto;
  gap: 8px;
  padding: 0 10px;
  border-style: solid;
  border-width: 1px 1px 1px 12px;
  background-color: var(--box-background-color);
}
.avt-warn-banner-header {
  font-weight: bold;
}
.avt-warn-banner-img {
  margin: auto;
}
.avt-warn-banner-text {
  padding: 5px;
}
.avt-warn-banner-desc,
.avt-warn-banner-note {
  font-size: 0.8em;
}
/* Types de bandeau */
.avt-warn-banner-maintenance {
  border-color: var(--color-warning);
}
.avt-warn-banner-info {
  border-color: #77ccff;
}
.avt-warn-banner-license {
  border-color: #c0c0ff;
}

/* ------------------------------ */
/* Modèle:Bandeau de note         */
/* ------------------------------ */

.avt-note-banner {
  margin-top: 0.5em;
  padding-left: 2em;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  background: var(--background-main);
  font-style: italic;
  border-bottom: 1px solid var(--border-color-base);
  display: flex;
  align-items: center;
  gap: 10px;
}
.avt-note-banner + .avt-note-banner {
  margin-top: calc(-0.5em - 1.05px);
}

/* ------------------------------ */
/* Modèle:Bandeau de rubrique     */
/* ------------------------------ */

.avt-section-banner {
  padding: 0.25em 0.5em;
  border-top: 1px solid var(--border-color-base);
  border-bottom: 1px solid var(--border-color-base);
  margin: 0.5em 0 0.5em 2em;
  background-color: var(--box-background-color);
  font-size: 0.9em;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ------------------------------ */
/* Modèle:Bandeau de source       */
/* ------------------------------ */

.avt-source-banner {
  margin: 0.5em 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.avt-source-banner-text {
  padding: 5px;
  font-size: 0.9em;
  border-top: 1px solid var(--border-color-base);
  border-bottom: 1px solid var(--border-color-base);
}

/* ------------------------------ */
/* Modèle:Boîte de contenu de jeu */
/* ------------------------------ */

.avt-content-game-box {
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
  padding: 5px;
  margin: 0.5em 0;
  font-size: 0.85em;
  background-color: var(--box-background-color);
  overflow: hidden;
}
.avt-content-game-box span.mw-collapsible-toggle {
  float: right;
  padding: 0.25em 1em;
}
#avt-content-game-box-title {
  text-align: center;
  border: 1px solid var(--border-color-base);
  background-color: var(--background-color-dp-02);
  padding: 3px;
  padding: 0.25em 8em;
  font-weight: bold;
}
.avt-content-game-box-list {
  margin: 0 !important;
  padding: 5px !important;
  list-style: none;
  column-count: 2;
  column-rule: 1px solid var(--border-color-base);
}

/* ------------------------------ */
/* Modèle:Boîte déroulante        */
/* ------------------------------ */

.avt-dropdown-box {
  margin: 0.5em 0;
  padding: 3px;
  border: 1px solid var(--border-color-base);
  overflow: auto;
}
.avt-dropdown-box-title {
  background-color: var(--background-color-dp-02);
  border: 1px solid var(--border-color-base);
  font-weight: bold;
  text-align: center;
}
.avt-dropdown-box-content {
  padding: 0 5px;
}
.avt-dropdown-box .mw-collapsible-toggle {
  padding-right: 0.5em;
}

/* ------------------------------ */
/* Modèle:Citation                */
/* ------------------------------ */

.mw-body-content blockquote {
  border-left: none;
}
blockquote {
  margin: 0 auto;
}
q::before,
q::after {
  content: "";
}
blockquote small {
  margin-bottom: 10px;
  display: block;
  padding-left: 150px;
}
blockquote small,
q small {
  font-size: inherit;
}
blockquote .mediaContainer {
  display: inline-block;
}

/* ------------------------------ */
/* Modèle:Citation ligne          */
/* ------------------------------ */

.np-quote-snd-trigger {
  display: inline-block;
  position: relative;
  top: auto;
  left: auto;
  padding: 0px 2px;
}
.np-quote-snd-trigger:hover .np-quote-snd-player {
  display: block;
}
.np-quote-snd-player {
  display: none;
  position: absolute;
  top: -30px;
  left: 100%;
  z-index: 100 !important;
  width: 300px;
  overflow-x: hidden;
  margin: 0px;
  padding: 5px 10px 10px 10px;
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
  background-color: var(--box-background-color);
  text-align: left;
  font-size: 0.85em;
}
.np-quote-snd-player-img {
  float: left;
  width: 55px;
}
.np-quote-snd-player-title {
  width: 250px;
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}
.np-quote-snd-player-title span {
  font-size: 18px;
}

/* ------------------------------ */
/* Modèle:Documentation           */
/* ------------------------------ */

.va-documentation,
.va-documentation-bar-top,
.va-documentation-bar-bottom {
  border-color: var(--border-color-base);
  border-style: solid;
  clear: both;
}
.va-documentation {
  border-width: 1px;
  margin: 10px 0;
  box-shadow: var(--box-shadow);
  background: var(--box-background-color);
}
.va-documentation-bar-top,
.va-documentation-bar-bottom {
  background-color: var(--background-color-dp-02);
  margin: 0;
  padding: 10px;
}
.va-documentation-bar-top {
  border-width: 0 0 1px 0;
}
.va-documentation-bar-bottom {
  border-width: 1px 0 0 0;
  text-align: right;
}
.va-documentation-links {
  float: right;
  text-align: right;
}
.va-documentation-content {
  margin: 0;
  padding: 20px;
}
.va-documentation-small {
  font-size: 0.8em;
}
.va-documentation-bar-top .external {
  background: none !important;
  padding: 0 !important;
}

/* ---------------------------------- */
/* Modèle:En-tête Aide                */
/* ---------------------------------- */

.avt-help-frame {
  padding: 20px;
  border: 1px solid var(--border-color-base);
  background-color: var(--box-background-color);
  box-shadow: var(--box-shadow);
  margin-bottom: 1em;
}
.avt-help-welcome-title {
  text-align: center;
  font-size: 150%;
  margin: 0 50px 0.5em 50px;
  text-shadow: var(--box-shadow);
  color: #425b84;
  font-weight: bold;
}
.avt-help-search {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
}
.avt-help-rules-first-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
/* Partie à revoir */
.avt-help-homepage-title {
  color: var(--color-warning);
  text-align: center;
}
.avt-help-header {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  border: 1px solid var(--border-color-base);
  background-color: var(--box-background-color);
  box-shadow: var(--box-shadow);
  justify-items: center;
  align-items: center;
  margin: 1em 0;
}

/* ---------------------------------- */
/* Modèle:Fiche de créatur            */
/* ---------------------------------- */

.creature-card {
  margin: 1em 0 1em 0;
  display: grid;
  grid-template-columns: 3fr 2fr;
  padding: 1em;
  background-color: var(--box-background-color);
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
}
.creature-card-description {
  padding-right: 1em;
}
.creature-card-data {
  padding-left: 1em;
  border-left: 1px solid var(--border-color-base);
}
.creature-card-table {
  font-size: 12px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  display: table;
  line-height: 1rem;
  margin: 0 0 5px 0;
}
.creature-card-table caption,
.creature-card-list dt {
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 5px 0;
  padding: 4px;
  background-color: var(--background-color-dp-02);
  text-align: center;
  border: 1px solid var(--border-color-base);
}
.creature-card-table th[scope="row"] {
  text-align: left;
  padding-right: 10px;
  max-width: 140px;
  word-wrap: normal;
}
.creature-card-table th[scope="row"],
.creature-card-table td {
  padding-top: 4px;
  vertical-align: super;
}
.creature-card-list {
  font-size: 12px;
}

/* ---------------------------------- */
/* Modèle:Galerie de vidéos           */
/* ---------------------------------- */

.avt-videogallery {
  list-style: none;
  margin: 0.5em 0 !important;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

/* ------------------------------ */
/* Modèle:Infobox                 */
/* ------------------------------ */

.avt-infobox {
  box-shadow: var(--box-shadow);
  padding: 5px;
  background-color: var(--box-background-color);
  border: 1px solid var(--border-color-base);
  clear: right;
  float: right;
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0 0 0.5em 1em;
  word-wrap: break-word;
  max-width: 400px;
}
.avt-infobox-header {
  border: 1px solid var(--border-color-base);
  padding: 3px;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.1;
  margin-bottom: 10px;
  background-color: var(--background-color-dp-02);
  display: grid;
  grid-template-columns: 1fr 1.7fr 0.3fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-auto-flow: row;
  gap: 0 0;
}
.avt-infobox-header-icon,
.avt-infobox-header-title,
.avt-infobox-header-subhead {
  justify-self: center;
  align-self: center;
}
.avt-infobox-header-icon {
  grid-area: 1 / 3 / 4 / 4;
}
.avt-infobox-header-title {
  grid-area: 2 / 1 / 4 / 4;
  font-weight: bold;
}
.avt-infobox-header-subhead {
  grid-area: 1 / 1 / 2 / 4;
  font-size: 0.6em;
}
.avt-infobox-images {
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2px 0;
}
.avt-infobox-images a {
  max-width: 100%;
  flex: 0 0 auto;
}
.avt-infobox-images img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 250px;
}
.avt-infobox-images-legend {
  text-align: center;
  font-size: 0.9em;
}
.avt-infobox table {
  width: 100%;
  margin: 5px 0;
  table-layout: fixed;
  border-collapse: collapse;
  display: table;
}
.avt-infobox caption {
  text-align: center;
  border: 1px solid var(--border-color-base);
}
.avt-infobox p.bloc,
.avt-infobox caption {
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 5px 0;
  padding: 4px;
  background-color: var(--background-color-dp-02);
}
.avt-infobox th[scope="row"],
.avt-infobox td {
  padding-top: 4px;
  vertical-align: super;
}
.avt-infobox th[scope="row"] {
  text-align: left;
  padding-right: 10px;
  width: 8em;
  max-width: 140px;
  word-wrap: normal;
}
.avt-infobox span.mw-collapsible-toggle {
  float: right;
}
.avt-infobox span.mw-collapsible-toggle a {
  color: var(--color-base);
}
.avt-infobox-armor-rdsd {
  width: 3em;
  display: inline-block;
}

/* ------------------------------ */
/* Modèle:Infobulle               */
/* ------------------------------ */

.avt-tooltip {
  border-bottom: 1px dotted;
  cursor: help;
}

/* ---------------------------------- */
/* Modèle:Interactions                */
/* ---------------------------------- */

.avt-interactions {
  list-style: none;
  margin: 0.5em 0 !important;
  max-width: 32rem;
}
.avt-interactions-row {
  display: grid;
  grid-template-columns: 8rem auto;
  border: 1px solid var(--border-color-base);
  margin: 0.25em 0;
  background-color: var(--box-background-color);
  box-shadow: var(--box-shadow);
  padding: 7px;
}
.avt-interactions-img {
  margin: auto;
}
.avt-interactions-text {
  align-self: center;
  font-size: 0.85em;
}

/* ---------------------------------- */
/* Modèle:Introduction de page-liste  */
/* ---------------------------------- */

.avt-introduction {
  margin: 0.5em 0;
}

/* ------------------------------ */
/* Modèle:Liste de pages-listes   */
/* ------------------------------ */

.avt-game-listpage {
  float: right;
  border: 1px solid var(--border-color-base);
  box-shadow: var(--box-shadow);
  padding: 5px;
  margin: 0 0 0.5em 1em;
  font-size: 0.85em;
  background-color: var(--box-background-color);
  width: 100%;
  max-width: 20rem;
  text-align: center;
}
.avt-game-listpage-title {
  border: 1px solid var(--border-color-base);
  background-color: var(--background-color-dp-02);
  padding: 0.25em 8em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.avt-game-listpage-list {
  margin: 0 !important;
  list-style: none;
}

/* ------------------------ */
/* Modèle:Liste horizontale */
/* ------------------------ */

.liste-horizontale ul,
.liste-horizontale li {
  margin-left: 0;
  display: inline;
}
.liste-horizontale ul:after {
  white-space: normal;
}
.liste-horizontale li:after {
  content: " "; /* au cas ou Mediawiki supprime les retours ligne */
}
.liste-horizontale li + li:before {
  white-space: normal;
  content: "· ";
  font-weight: bold;
}
.liste-horizontale li li:first-child:before {
  white-space: normal;
  content: " (";
}
.liste-horizontale li ul:after {
  content: ")";
  margin-left: -0.28em;
}

/* ------------------------ */
/* Modèle:Palette           */
/* ------------------------ */

.palette .mw-collapsible-toggle a {
  color: var(--color-base);
}
.palette-banniere {
  border-top: 2px solid var(--box-background-color);
}
.palette-groupe {
  border-top: 2px solid var(--box-background-color);
  border-right: 2px solid var(--box-background-color);
  font-weight: bold;
  text-align: right;
  white-space: normal;
}
.palette-banniere,
.palette-groupe,
.palette-section {
  background: var(--background-color-dp-03);
}
.palette-listes .palette-groupe {
  background: var(--background-color-dp-04);
}
.palette-pair {
  background-color: var(--box-background-color);
  border-top: 2px solid transparent;
}
.palette {
  clear: both;
  margin: 1em 0 1em 0;
  padding: 3px;
  font-size: 88%;
  border: 1px solid var(--border-color-base);
}
.palette ul,
.palette li,
.palette p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.6em;
  list-style: none none;
}
.palette-liens {
  float: left;
  font-variant: small-caps;
}
.palette-liens a {
  background: none !important;
  padding: 0 !important;
}
.palette span.mw-collapsible-toggle {
  float: right;
}
.palette-liens,
.palette .mw-collapsible-toggle,
.palette-groupe {
  padding: 0.25em 1em;
}
.palette-titre {
  background-color: var(--background-color-dp-02);
}
.palette-titre,
.palette-section {
  font-size: 105%;
  font-weight: bold;
  padding: 0.25em 8em;
  text-align: center;
}
.palette-ligne {
  display: table-row;
}
.palette-groupe,
.palette-image,
.palette-liste,
.palette-listes {
  display: table-cell;
  vertical-align: middle;
}
.palette-banniere,
.palette-liste,
.palette-liste-simple {
  padding: 0.25em;
}
.palette-liste,
.palette-listes {
  width: 100%;
}
.palette-banniere,
.mw-collapsible-content > ul > li > .palette-liste-simple {
  text-align: center;
}
div.palette-image {
  padding: 0.25em 0 0.25em 0.25em;
  width: 1%;
}
div.palette + div.palette {
  margin-top: -1px;
}

/* ---------------------------------- */
/* Modèle:Portail de jeu              */
/* ---------------------------------- */

.game-portal {
  display: grid;
  grid-gap: 1rem;
  grid-template-areas: "welcome welcome" "talkto talkto" "content content" "articleday imageday";
}
.portal-welcome {
  grid-area: welcome;
}
.portal-talkto {
  grid-area: talkto;
  text-align: center;
}
.portal-content {
  grid-area: content;
}
.portal-box-title {
  text-align: center;
  font-size: 150%;
  margin: 0 50px 5px 50px;
  border-bottom: 1px solid var(--border-color-base);
  text-shadow: 0 0 8px var(--color-link);
  color: var(--color-link);
}
.portal-content-links {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
}
.portal-content-group-title {
  border-bottom: 1px dotted var(--border-color-base);
  font-size: 125%;
}
.portal-logo-fo1 {
  background-image: url(/images/6/69/Fo1_portail_armure.png);
  background-size: 123px;
  background-repeat: no-repeat;
  background-position: -3px -24px;
}
.portal-logo-fo2 {
  background-image: url(/images/2/2b/Fo2_portail_armure.png);
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: -3px -30px;
}
.portal-logo-fot {
  background-image: url(/images/3/31/Fot_portail_armure-min.png);
  background-size: 123px;
  background-repeat: no-repeat;
  background-position: -3px -24px;
}
.portal-logo-fo3 {
  background-image: url(/images/c/c7/Fo3_portail_armure.png);
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: -3px -24px;
}
.portal-logo-fnv {
  background-image: url(/images/2/28/Fnv_portail_ranger.png);
  background-size: 180px;
  background-repeat: no-repeat;
  background-position: -33px -24px;
}
.portal-logo-fo4 {
  background-image: url(/images/f/f0/Fo4_portail_h%C3%A9ros_et_son_chien.png);
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: -3px -15px;
}
.portal-logo-fos {
  background-image: url(/images/d/d4/Fos_portail_vaultboy.png);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: -3px 0px;
}

/* ---------------------------------- */
/* Modèle:Références                  */
/* ---------------------------------- */

.avt-references {
  font-size: 0.8em;
  line-height: 1.6;
}

/* ---------------------------------- */
/* Modèle:Référence Dialogue          */
/* ---------------------------------- */

.reference-dial {
  display: table;
}
.reference-dial-character {
  display: table-cell;
  text-align: right;
  white-space: nowrap;
}
.reference-dial-text {
  display: table-cell;
}
.reference-dial-row {
  display: table-row;
}

/* ---------------------------------- */
/* Modèle:Références nombreuses       */
/* ---------------------------------- */

.avt-references-many {
  height: 230px;
  overflow: auto;
  border: 1px solid var(--border-color-base);
  scrollbar-width: thin;
}

/* ---------------------------------- */
/* Modèle:SPECIAL                     */
/* ---------------------------------- */

.avt-special-label {
  width: 10rem;
  display: inline-block;
}

/* -------------------------- */
/* Modèle:Tableau d'artisanat */
/* -------------------------- */

.artisanat {
  font-size: 0.85em;
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  margin: 10px 0 10px 0;
}
.artisanat-colonne-titre {
  text-align: center;
  border: 1px solid var(--border-color-base);
  margin-bottom: 3px;
  background-color: var(--background-color-dp-02);
  padding: 3px;
  font-weight: bold;
}
.artisanat-colonne-liste > ul {
  list-style: none;
  margin: 0;
}
.artisanat-colonne-liste > ul > li {
  border: 1px solid var(--border-color-base);
  padding: 5px;
  margin-bottom: 3px;
  background: var(--box-background-color);
}
.artisanat-separateur {
  margin: auto;
}

/* ------------------------------ */
/* Modèle:Transcription           */
/* ------------------------------ */

.va-transcript {
  line-height: 18px;
  padding: 10px 25px;
}
.va-transcript-icon {
  width: 40px;
  z-index: -1;
  position: relative;
  float: left;
  left: -25px;
  margin-right: -40px;
  top: -5px;
}
.va-transcript-text {
  font-family: monospace;
  font-size: 13px;
}