tiny, simple, classless CSS framework inspired by new.css devcss.devins.page
framework lightweight css classless stylesheet

feat: more improvements

+5 -2
+5 -2
README.md
··· 8 8 9 9 ## Importing 10 10 11 - In your HTML's `<head>` all you have to write is this, and you're done! 11 + In your HTML's `<head>` all you have to write is this, and you're done! (`.min` means to minify the file) 12 12 13 13 ```html 14 14 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1"> ··· 33 33 34 34 ## Themes 35 35 36 - You can also use custom colors and fonts in dev.css through themes. See the `/theme` folder to view some premade ones. You can also copy the `boilerplate.css` and make a theme yourself. Simply apply it after the dev.css stylesheet. 36 + You can also use custom colors and custom fonts in dev.css through themes. See the `/theme` folder to view some premade ones. You can also copy the `boilerplate.css` and make a theme yourself. Simply apply it after the dev.css stylesheet. For example, to apply the terminal theme, put this after your main stylesheet: 37 + ```html 38 + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1/theme/terminal.min.css"> 39 + ```