Jump to content

MediaWiki:Common.css: Difference between revisions

From Knowledge Base
No edit summary
No edit summary
Line 15: Line 15:
     color: MediumSeaGreen;
     color: MediumSeaGreen;
     font-weight: bold;
     font-weight: bold;
}
/* Styling for C# variables */
.csharp-variable {
    color: DarkOrange;
    font-style: italic;
}
}

Revision as of 11:15, 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;
}