@intergrav/dev.css 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/demo.html +12 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# intergrav/dev.css
|
|
2
2
|
|
|
3
|
-
Extremely simple, small, classless CSS framework in the style of Vercel's Geist. It weighs only
|
|
3
|
+
Extremely simple, small, classless CSS framework in the style of Vercel's Geist. It weighs only **~5kb** 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
4
|
|
|
5
5
|
## Importing
|
|
6
6
|
|
|
7
|
-
In your HTML's `<head>` all you have to
|
|
7
|
+
In your HTML's `<head>` all you have to write is this, and you're done!
|
|
8
8
|
|
|
9
9
|
```html
|
|
10
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1
|
|
10
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1">
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
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.
|
|
13
|
+
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 otherwise.
|
|
14
14
|
|
|
15
15
|
### Geist Font
|
|
16
16
|
|
package/demo.html
CHANGED
|
@@ -4,9 +4,18 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>dev.css Demo</title>
|
|
7
|
-
<link
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
<link
|
|
8
|
+
rel="stylesheet"
|
|
9
|
+
href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1"
|
|
10
|
+
/>
|
|
11
|
+
<link
|
|
12
|
+
rel="stylesheet"
|
|
13
|
+
href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist.min.css"
|
|
14
|
+
/>
|
|
15
|
+
<link
|
|
16
|
+
rel="stylesheet"
|
|
17
|
+
href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css"
|
|
18
|
+
/>
|
|
10
19
|
</head>
|
|
11
20
|
<body>
|
|
12
21
|
<header>
|
package/package.json
CHANGED