I am trying to find a solution to build a CSS string within my ASP.NET MVC Web Application. I would expect this to be at the selector level. So for example I may have a class "TableFormat" which might have the following CSS string.
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
text-align: left;
background-color: green;
color: White;
Instead of having my users needing to know CSS, it would be far better to have a widget that allows them to select a font, color etc and then behind the scenes the widget would construct the above string. I then store this away into the DB for future use in a Razor View. I suspect it is the sort of thing that might exist as a JS widget. However I have not found anything apart from the dedicated CSS builders within bigger packages such as DW.
So my question is:
Do you know of a Javascript Control that does this, or another control perhaps within the ASP.NET MVC world that provides the above features. This would map to a textarea field. Otherwise I may need to write my own control.