MediaWiki:Common.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
} | } | ||
/* Styling for C# types | /* Styling for C# data types */ | ||
.csharp-type { | .csharp-data-type { | ||
color: DarkOrange; | color: DarkOrange; | ||
font-weight: bold; | font-weight: bold; | ||
} | } | ||
/* Styling for C# | /* Styling for C# operators */ | ||
.csharp- | .csharp-operator { | ||
color: | color: MediumSeaGreen; | ||
} | } | ||
/* Styling for comments (both single-line and multi-line) */ | /* Styling for comments (both single-line and multi-line) */ | ||
.csharp-comment { | .csharp-comment { | ||
color: | color: Gray; | ||
font-style: italic; | font-style: italic; | ||
} | } | ||
/* Styling for | /* Styling for C# strings */ | ||
.csharp-string { | .csharp-string { | ||
color: | color: DarkOrchid; | ||
} | } | ||
Revision as of 11:07, 18 January 2025
/* 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;
}