@intergrav/dev.css 4.0.6 → 4.1.0
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 +1 -1
- package/dev.css +3 -4
- package/package.json +2 -2
- package/theme/boilerplate.user.css +4 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@intergrav/dev.css) [](https://cdn.jsdelivr.net/npm/@intergrav/dev.css/) [](https://discord.gg/m5tUgaM3uK) [](https://github.com/intergrav/dev.css)
|
|
4
4
|
|
|
5
|
-
dev.css is a tiny, simple, classless CSS framework inspired by
|
|
5
|
+
dev.css is a tiny, simple, classless CSS framework inspired by [new.css](https://newcss.net). It is designed to make any plain HTML file modern and responsive. The minified stylesheet weighs only **~5.5kb**. It also has some extra features, such as an optional sidebar and addons.
|
|
6
6
|
|
|
7
7
|
You can find the website at <a href="https://devcss.devins.page">devcss.devins.page</a>, which contains a demo page.
|
|
8
8
|
|
package/dev.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* dev.css v4, a lightweight CSS framework - https://github.com/intergrav/dev.css */
|
|
2
|
-
/* about: tiny, simple, classless CSS framework
|
|
2
|
+
/* about: tiny, simple, classless CSS framework inspired by new.css */
|
|
3
3
|
|
|
4
4
|
/* table of contents
|
|
5
5
|
1. configurable variables
|
|
@@ -24,9 +24,8 @@
|
|
|
24
24
|
:root {
|
|
25
25
|
/* font families */
|
|
26
26
|
--dc-font: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
|
|
27
|
-
--dc-font-mono:
|
|
28
|
-
|
|
29
|
-
Consolas, "DejaVu Sans Mono", monospace;
|
|
27
|
+
--dc-font-mono: "Geist Mono", ui-monospace, "Cascadia Code", "Source Code Pro",
|
|
28
|
+
Menlo, Consolas, "DejaVu Sans Mono", monospace;
|
|
30
29
|
|
|
31
30
|
/* light/dark colors */
|
|
32
31
|
--dc-cs: light dark; /* light and dark scrollbars, inputs, etc */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intergrav/dev.css",
|
|
3
|
-
"version": "4.0
|
|
4
|
-
"description": "Tiny, simple, classless CSS framework
|
|
3
|
+
"version": "4.1.0",
|
|
4
|
+
"description": "Tiny, simple, classless CSS framework inspired by new.css.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"css",
|
|
7
7
|
"stylesheet",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* ==userstyle==
|
|
2
2
|
@name boilerplate for dev.css
|
|
3
|
-
@description a template that you can modify.
|
|
3
|
+
@description a template that you can modify. copied from dev.css defaults. removing lines will revert to the dev.css default, for example the font lines
|
|
4
4
|
@namespace author
|
|
5
5
|
@version 1.0.0
|
|
6
6
|
@author author <author@example.com> (https://example.com)
|
|
@@ -11,8 +11,9 @@
|
|
|
11
11
|
|
|
12
12
|
:root {
|
|
13
13
|
/* font families */
|
|
14
|
-
--dc-font: sans-serif;
|
|
15
|
-
--dc-font-mono: monospace
|
|
14
|
+
--dc-font: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
|
|
15
|
+
--dc-font-mono: "Geist Mono", ui-monospace, "Cascadia Code", "Source Code Pro",
|
|
16
|
+
Menlo, Consolas, "DejaVu Sans Mono", monospace;
|
|
16
17
|
|
|
17
18
|
/* light/dark colors */
|
|
18
19
|
--dc-cs: light dark; /* light/dark scrollbars, inputs, etc */
|