MediaWiki

Difference between revisions of "Common.css"

From Shadow Era Wiki

m
m (Changed the color when displaying C#)
Line 34: Line 34:
 
}
 
}
  
/* Couleur de fond et texte général pour les blocs de code */
+
/* Supprime le fond des blocs de code */
 
.syntaxhighlight {
 
.syntaxhighlight {
     background-color: hsl(210, 15%, 22%) !important; /* Fond */
+
     background: none !important;
    color: hsl(219, 28%, 88%) !important;  /* Couleur générale du texte */
+
 
}
 
}
  
/* Styliser les mots-clés de type kw1 (mots-clés principaux comme public, class, etc.) */
+
/* Couleurs pour les différents éléments de C# basées sur le thème Mariana */
.csharp.source-csharp .kw1 {
+
 
     color: hsl(300, 30%, 68%) !important; /* Couleur rose pour les mots-clés principaux */
+
/* 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 */
 
}
 
}
  
/* Styliser les mots-clés de type kw4 (autres mots-clés) */
+
/* Opérateurs (comme =, +, :, etc.) */
.csharp.source-csharp .kw4 {
+
.syntaxhighlight .sy0 {
     color: hsl(300, 30%, 68%) !important; /* Même couleur rose pour uniformité */
+
     color: #f07178; /* rouge vif */
 
}
 
}
  
/* Styliser les chaînes de caractères (ex: strings) */
+
/* Nombres */
.csharp.source-csharp .st0 {
+
.syntaxhighlight .nu0 {
     color: hsl(114, 31%, 68%) !important; /* Vert clair pour les chaînes de caractères */
+
     color: #f99157; /* orange */
 
}
 
}
  
/* Styliser les méthodes (fonctions comme UnhighlightCards, SetGameState) */
+
/* Chaînes de caractères */
.csharp.source-csharp .me1 {
+
.syntaxhighlight .st0 {
     color: hsl(210, 50%, 60%) !important; /* Bleu clair pour les méthodes */
+
     color: #99c794; /* vert */
 
}
 
}
  
/* Styliser les symboles (comme ;, =, <, >, .) */
+
/* Commentaires */
.csharp.source-csharp .sy0 {
+
.syntaxhighlight .co1 {
     color: hsl(57, 93%, 66%) !important; /* Jaune pour les symboles */
+
     color: #a6accd; /* bleu-gris */
 
}
 
}
  
/* Styliser les parenthèses (comme () ) */
+
/* Types (comme int, string, etc.) */
.csharp.source-csharp .br0 {
+
.syntaxhighlight .kw5 {
     color: hsl(32, 93%, 66%) !important; /* Orange pour les parenthèses */
+
     color: #c594c5; /* rose pâle */
 
}
 
}
  
/* Styliser les nombres (numéros) */
+
/* Accolades, parenthèses, crochets */
.csharp.source-csharp .nu0 {
+
.syntaxhighlight .br0 {
     color: hsl(32, 93%, 66%) !important; /* Orange pour les nombres */
+
     color: #f07178; /* rouge vif */
 
}
 
}
  
/* Styliser les mots-clés supplémentaires (kw3) */
+
/* Appels de méthodes */
.csharp.source-csharp .kw3 {
+
.syntaxhighlight .me2 {
     color: hsl(300, 30%, 68%) !important; /* Rose pour uniformité des mots-clés */
+
     color: #6699cc; /* bleu clair */
 
}
 
}
  
/* Styliser les commentaires */
+
/* Punctuation (like ; , . etc.) */
.csharp.source-csharp .co1 {
+
.syntaxhighlight .pun {
     color: hsl(221, 12%, 69%) !important; /* Bleu clair pour les commentaires */
+
     color: #a6accd; /* bleu-gris */
 
}
 
}

Revision as of 23:39, 6 September 2024

/* 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 */
}