@intergrav/dev.css 1.0.0 → 1.0.1
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Extremely simple, small, classless CSS framework in the style of Vercel's Geist.
|
|
|
7
7
|
In your HTML's `<head>` all you have to do is this, and you're done!
|
|
8
8
|
|
|
9
9
|
```html
|
|
10
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/
|
|
10
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/dev.css@1/dev.min.css">
|
|
11
11
|
```
|
|
12
12
|
|
|
13
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.
|
|
@@ -15,14 +15,14 @@ I also recommend adding a font through [intergrav/fonts](https://github.com/inte
|
|
|
15
15
|
### Geist Font
|
|
16
16
|
|
|
17
17
|
```html
|
|
18
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/
|
|
18
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist.min.css">
|
|
19
19
|
```
|
|
20
20
|
```html
|
|
21
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/
|
|
21
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css">
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Inter Font
|
|
25
25
|
|
|
26
26
|
```html
|
|
27
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/
|
|
27
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/inter.min.css">
|
|
28
28
|
```
|
package/package.json
CHANGED