lightweight, simple, classless CSS framework inspired by new.css
devcss.devins.page
framework
lightweight
css
classless
stylesheet
1# intergrav/dev.css
2
3Extremely simple, small, classless CSS framework in the style of Vercel's Geist. It weighs only ***~5.0kb***, and makes any plain HTML file look great. It has a light and dark theme, and the header turns into a sidebar on wider displays so that you get more vertical space.
4
5## Importing
6
7In your HTML's `<head>` all you have to do is this, and you're done!
8
9```html
10<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/intergrav/dev.css@1/dev.min.css">
11```
12
13I also recommend adding a font through [intergrav/fonts](https://github.com/intergrav/fonts). Geist or Inter work with dev.css out of the box.
14
15### Geist Font
16
17```html
18<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/intergrav/fonts@1/serve/geist.min.css">
19```
20```html
21<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/intergrav/fonts@1/serve/geist-mono.min.css">
22```
23
24### Inter Font
25
26```html
27<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/intergrav/fonts@1/serve/inter.min.css">
28```