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

fix: use v3 for usage instructions

+2 -2
+2 -2
README.md
··· 11 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 - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@2"> 14 + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@3"> 15 15 ``` 16 16 17 17 I also recommend adding a font through [intergrav/fonts](https://github.com/intergrav/fonts). Geist or Inter work with dev.css out of the box. It will use the default system/browser san-serif fonts if those are not available. ··· 86 86 You can 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: 87 87 88 88 ```html 89 - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@2/theme/terminal.min.css"> 89 + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@3/theme/terminal.min.css"> 90 90 ```