Skip to content

Commit 06ecbf3

Browse files
author
Example
committed
1.1.3
1 parent 90113c0 commit 06ecbf3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A classless CSS framework to write modern websites using only HTML. It weighs **
66

77
Take a look at the demo on [newcss.net](https://newcss.net/), or the quick-start guide on [newcss.net/usage](https://newcss.net/usage/). It's on npm as `@exampledev/new.css`.
88

9-
[Vercel](https://vercel.com?utm_source=xz&utm_campaign=new.css)'s impossibly fast CDN delivers new.css and the font [Inter](https://rsms.me/inter) using [xz/fonts](https://github.com/xz/fonts), so there's virtually no bloat added to your pages.
9+
[Vercel](https://vercel.com?utm_source=xz&utm_campaign=new.css)'s impossibly fast CDN delivers the font [Inter](https://rsms.me/inter) using [xz/fonts](https://github.com/xz/fonts), so there's virtually no bloat added to your pages.
1010

1111
And of course, there's a dark mode. It automatically applies a light/dark theme based on your browser's preference.
1212

@@ -36,7 +36,7 @@ Here's your configuration:
3636

3737
Add this code to the end of your `<head>`:
3838
```html
39-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/open-fonts@1.1.1/fonts/inter.min.css">
39+
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
4040
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected]/new.min.css">
4141
```
4242

@@ -175,7 +175,7 @@ By loading a secondary style sheet after new.css in your HTML, you can override
175175
<meta charset="UTF-8">
176176
<meta name="viewport" content="width=device-width, initial-scale=1.0">
177177
<title>Document</title>
178-
<link rel="stylesheet" href="<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected].0/new.min.css">">
178+
<link rel="stylesheet" href="<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected].3/new.min.css">">
179179
<link rel="stylesheet" href="https://example.com/MY-CUSTOM-THEME.css">
180180
</head>
181181
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@exampledev/new.css",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "A classless CSS framework to write modern websites using only HTML.",
55
"main": "new.css",
66
"repository": {

theme/night.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>new.css Night Theme</title>
7+
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
78
<link rel="stylesheet" href="/new.css">
89
<link rel="stylesheet" href="../night.css">
910
</head>

theme/terminal.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>new.css Terminal Theme</title>
7+
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
78
<link rel="stylesheet" href="/new.css">
89
<link rel="stylesheet" href="../terminal.css">
910
</head>

0 commit comments

Comments
 (0)