Jump to content

MediaWiki:Common.css: Difference between revisions

From Knowledge Base
No edit summary
No edit summary
Line 20: Line 20:
.csharp-variable {
.csharp-variable {
     color: DarkOrange;
     color: DarkOrange;
    font-style: italic;
}
/* Styling for C# class names */
.csharp-class {
    color: DarkOrchid;
    font-weight: bold;
}
/* Styling for C# property names */
.csharp-property {
    color: DodgerBlue;
     font-style: italic;
     font-style: italic;
}
}

Revision as of 11:27, 18 January 2025

/* Styling for C# keywords */
.csharp-keyword {
    color: DodgerBlue;
    font-weight: bold;
}

/* Styling for C# types */
.csharp-type {
    color: MediumOrchid;
    font-weight: bold;
}

/* Styling for C# method names */
.csharp-method {
    color: MediumSeaGreen;
    font-weight: bold;
}

/* Styling for C# variables */
.csharp-variable {
    color: DarkOrange;
    font-style: italic;
}

/* Styling for C# class names */
.csharp-class {
    color: DarkOrchid;
    font-weight: bold;
}

/* Styling for C# property names */
.csharp-property {
    color: DodgerBlue;
    font-style: italic;
}