MediaWiki

Common.css

From Shadow Era Wiki

Revision as of 23:39, 6 September 2024 by Blopi (Talk | contribs)

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* CSS placed here will be applied to all skins */
/* wikitable/prettytable */
table.wikitable,
table.prettytable {
    margin: 13px 13px 13px 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}
.wikitable > tr > th, .wikitable > tr > td,
.wikitable > * > tr > th, .wikitable > * > tr > td,
.prettytable > tr > th, .prettytable > tr > td,
.prettytable > * > tr > th, .prettytable > * > tr > td {
    border: 1px #aaa solid;
    padding: 3px;
}
.wikitable > tr > th, .wikitable > * > tr > th,
.prettytable > tr > th, .prettytable > * > tr > th {
    background: #f2f2f2;
    text-align: center;
}
.wikitable > caption,
.prettytable > caption {
    font-weight: bold;
}
 
/* style the backtick text */
.backtick-style {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 0.2em 0.4em;
    border: 1px solid #d1d5da;
    border-radius: 3px;
}
 
/* Supprime le fond des blocs de code */
.syntaxhighlight {
    background: none !important;
}
 
/* Couleurs pour les différents éléments de C# basées sur le thème Mariana */
 
/* Mots-clés (comme public, private, etc.) */
.syntaxhighlight .kw1 {
    color: #c594c5; /* rose pâle */
}
 
/* Modificateurs (comme static, override, etc.) */
.syntaxhighlight .kw3 {
    color: #6699cc; /* bleu clair */
}
 
/* Méthodes et variables de membre */
.syntaxhighlight .me1 {
    color: #6699cc; /* bleu clair */
}
 
/* Constantes booléennes (true, false) et autres constantes intégrées */
.syntaxhighlight .kw2 {
    color: #f07178; /* rouge */
}
 
/* Opérateurs (comme =, +, :, etc.) */
.syntaxhighlight .sy0 {
    color: #f07178; /* rouge vif */
}
 
/* Nombres */
.syntaxhighlight .nu0 {
    color: #f99157; /* orange */
}
 
/* Chaînes de caractères */
.syntaxhighlight .st0 {
    color: #99c794; /* vert */
}
 
/* Commentaires */
.syntaxhighlight .co1 {
    color: #a6accd; /* bleu-gris */
}
 
/* Types (comme int, string, etc.) */
.syntaxhighlight .kw5 {
    color: #c594c5; /* rose pâle */
}
 
/* Accolades, parenthèses, crochets */
.syntaxhighlight .br0 {
    color: #f07178; /* rouge vif */
}
 
/* Appels de méthodes */
.syntaxhighlight .me2 {
    color: #6699cc; /* bleu clair */
}
 
/* Punctuation (like ; , . etc.) */
.syntaxhighlight .pun {
    color: #a6accd; /* bleu-gris */
}