minstyle.io allows you to design web interfaces for PC, tablet or mobile. For that a set of CSS class allows you to design an HTML page with preconceived elements.
The architecture of the framework is based on the concatenation of classes. For example, the ms-btn class allows to get the default design of a button, the ms-green class allows to color the button green, and the ms-rounded class allows to round the button angles :
<button class="ms-btn">Button</button>
<button class="ms-btn ms-green">Button</button>
<button class="ms-btn ms-green ms-rounded">Button</button>
To install the css framework, three options are available. The first download directly the sources (CSS file) of the framework, the second use the <link> tag and the CDN, or install the sources via NPM.
Copy and paste the following line into your <head> tag to integrate minstyle.io on your HTML page.
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/minstyle.io@0.2.3/css/minstyle.io.min.css">
npm install minstyle.io