Compose CSS with C#.
The C class is a factory class that makes it easier to build CSS styles. Examples: style with selector
C.Style(".some-class")
.FontWeightBold()
.FontSize(12)); or inline style without the class selector.
C.Style()
.FontWeightBold()
.Color("#ccc;");