I need to have same html for different client as
<body>
<div class="init">test</div>
<div class="init1"> test 1</div>
</body>
Using Ruby on rail framework,
My css need to change based on client as
for client1,
.init {color:green}
around 200 properties
for client2,
.init {color:red}
around 200 different properties
These css properties can be customised by the client in the view.
How to make this
Whether to store in database or getting input from client creating a seperate css file or any other idea?