MediaWiki

Difference between revisions of "Common.css"

From Shadow Era Wiki

m
m
Line 28: Line 28:
 
     display: none !important;
 
     display: none !important;
 
}
 
}
 +
/* Appliquer les couleurs du thème Mariana pour les fichiers C# */
 +
.source-csharp .co1 { color: rgba(90, 155, 207, 0.8) !important; } /* Commentaires : bleu clair */
 +
.source-csharp .st0 { color: rgba(166, 226, 46, 0.8) !important; } /* Chaînes de caractères : vert clair */
 +
.source-csharp .nu0 { color: rgba(253, 151, 31, 0.8) !important; } /* Nombres : orange */
 +
.source-csharp .kw1 { color: rgba(174, 129, 255, 0.7) !important; } /* Mots-clés : violet pâle */
 +
.source-csharp .op0 { color: rgba(102, 217, 239, 0.7) !important; } /* Opérateurs : cyan pâle */
 +
.source-csharp { background-color: #272822 !important; color: #F8F8F2 !important; } /* Fond sombre, texte clair */

Revision as of 05:48, 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;
}
 
.mw-collapsible-toggle[data-collapsetext="Collapse"] {
    display: none !important;
}
/* Appliquer les couleurs du thème Mariana pour les fichiers C# */
.source-csharp .co1 { color: rgba(90, 155, 207, 0.8) !important; } /* Commentaires : bleu clair */
.source-csharp .st0 { color: rgba(166, 226, 46, 0.8) !important; } /* Chaînes de caractères : vert clair */
.source-csharp .nu0 { color: rgba(253, 151, 31, 0.8) !important; } /* Nombres : orange */
.source-csharp .kw1 { color: rgba(174, 129, 255, 0.7) !important; } /* Mots-clés : violet pâle */
.source-csharp .op0 { color: rgba(102, 217, 239, 0.7) !important; } /* Opérateurs : cyan pâle */
.source-csharp { background-color: #272822 !important; color: #F8F8F2 !important; } /* Fond sombre, texte clair */