Add the following css <link>
to the <head>
of your HTML document:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jonasfroeller/JoneCSS/jonecss.css">
Or download the file ./jonecss.css
and add it to your project:
<link rel="stylesheet" href="./jonecss.css">
To prevent jonecss.css from overwriting your own styles, make sure to import it as the very first CSS import.
You can customize the look and feel of jonecss.css by overwriting the CSS variables. For example, to change the primary color, add the following code to your own CSS file, or if you downloaded jonecss.css, just change the value in the file itself:
:root {
--primary-color: orange;
}