MediaWiki:Common.css
Note: After publishing, 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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Styling for C# keywords */
.csharp-keyword {
color: DodgerBlue;
font-weight: bold;
}
/* Styling for C# data types */
.csharp-data-type {
color: DarkOrange;
font-weight: bold;
}
/* Styling for C# operators */
.csharp-operator {
color: MediumSeaGreen;
}
/* Styling for comments (both single-line and multi-line) */
.csharp-comment {
color: Gray;
font-style: italic;
}
/* Styling for C# strings */
.csharp-string {
color: DarkOrchid;
}