@intergrav/dev.css 2.0.9 → 2.0.11
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/LICENSE +21 -21
- package/README.md +84 -84
- package/demo.html +274 -267
- package/dev.css +499 -499
- package/package.json +15 -15
- package/theme/boilerplate.css +19 -19
- package/theme/night.css +16 -16
- package/theme/terminal.css +21 -21
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@intergrav/dev.css",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "Extremely simple, small, classless CSS framework in the style of Vercel's Geist design system. Fork of xz/new.css.",
|
|
5
|
-
"main": "dev.css",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/intergrav/dev.css.git"
|
|
9
|
-
},
|
|
10
|
-
"author": "intergrav (intergrav@proton.me)",
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/intergrav/dev.css/issues"
|
|
14
|
-
},
|
|
15
|
-
"homepage": "https://github.com/intergrav/dev.css#readme"
|
|
1
|
+
{
|
|
2
|
+
"name": "@intergrav/dev.css",
|
|
3
|
+
"version": "2.0.11",
|
|
4
|
+
"description": "Extremely simple, small, classless CSS framework in the style of Vercel's Geist design system. Fork of xz/new.css.",
|
|
5
|
+
"main": "dev.css",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/intergrav/dev.css.git"
|
|
9
|
+
},
|
|
10
|
+
"author": "intergrav (intergrav@proton.me)",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/intergrav/dev.css/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/intergrav/dev.css#readme"
|
|
16
16
|
}
|
package/theme/boilerplate.css
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
/* This theme is a template that you can modify */
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
/* Fonts */
|
|
5
|
-
--dc-font-sans: sans-serif; /* Sans Serif */
|
|
6
|
-
--dc-font-mono: monospace; /* Monospace */
|
|
7
|
-
/* Colors */
|
|
8
|
-
--dc-tx-1: #000000; /* Primary text */
|
|
9
|
-
--dc-tx-2: #1a1a1a; /* Secondary text */
|
|
10
|
-
--dc-bg-1: #fafafa; /* Main background */
|
|
11
|
-
--dc-bg-2: #fff; /* Secondary background */
|
|
12
|
-
--dc-bg-3: #ebebeb; /* Outlines */
|
|
13
|
-
--dc-lk-1: #0068d6; /* Link text */
|
|
14
|
-
--dc-lkb-1: #0072f5; /* Link button background */
|
|
15
|
-
--dc-lkb-2: #0062d1; /* Link button background (hover) */
|
|
16
|
-
--dc-lkb-tx: #ededed; /* Link button text */
|
|
17
|
-
--dc-ac-1: #8e4ec6; /* Accent color */
|
|
18
|
-
--dc-ac-tx: #ededed; /* Accent color text */
|
|
19
|
-
}
|
|
1
|
+
/* This theme is a template that you can modify */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
/* Fonts */
|
|
5
|
+
--dc-font-sans: sans-serif; /* Sans Serif */
|
|
6
|
+
--dc-font-mono: monospace; /* Monospace */
|
|
7
|
+
/* Colors */
|
|
8
|
+
--dc-tx-1: #000000; /* Primary text */
|
|
9
|
+
--dc-tx-2: #1a1a1a; /* Secondary text */
|
|
10
|
+
--dc-bg-1: #fafafa; /* Main background */
|
|
11
|
+
--dc-bg-2: #fff; /* Secondary background */
|
|
12
|
+
--dc-bg-3: #ebebeb; /* Outlines */
|
|
13
|
+
--dc-lk-1: #0068d6; /* Link text */
|
|
14
|
+
--dc-lkb-1: #0072f5; /* Link button background */
|
|
15
|
+
--dc-lkb-2: #0062d1; /* Link button background (hover) */
|
|
16
|
+
--dc-lkb-tx: #ededed; /* Link button text */
|
|
17
|
+
--dc-ac-1: #8e4ec6; /* Accent color */
|
|
18
|
+
--dc-ac-tx: #ededed; /* Accent color text */
|
|
19
|
+
}
|
package/theme/night.css
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
/* This theme will make it always dark, regardless of device setting */
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
/* Colors */
|
|
5
|
-
--dc-tx-1: #ededed;
|
|
6
|
-
--dc-tx-2: #a1a1a1;
|
|
7
|
-
--dc-bg-1: #000;
|
|
8
|
-
--dc-bg-2: #ffffff0f;
|
|
9
|
-
--dc-bg-3: #ffffff24;
|
|
10
|
-
--dc-lk-1: #52a8ff;
|
|
11
|
-
--dc-lkb-1: #0072f5;
|
|
12
|
-
--dc-lkb-2: #0062d1;
|
|
13
|
-
--dc-lkb-tx: #ededed;
|
|
14
|
-
--dc-ac-1: #8e4ec6;
|
|
15
|
-
--dc-ac-tx: #ededed;
|
|
16
|
-
}
|
|
1
|
+
/* This theme will make it always dark, regardless of device setting */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
/* Colors */
|
|
5
|
+
--dc-tx-1: #ededed;
|
|
6
|
+
--dc-tx-2: #a1a1a1;
|
|
7
|
+
--dc-bg-1: #000;
|
|
8
|
+
--dc-bg-2: #ffffff0f;
|
|
9
|
+
--dc-bg-3: #ffffff24;
|
|
10
|
+
--dc-lk-1: #52a8ff;
|
|
11
|
+
--dc-lkb-1: #0072f5;
|
|
12
|
+
--dc-lkb-2: #0062d1;
|
|
13
|
+
--dc-lkb-tx: #ededed;
|
|
14
|
+
--dc-ac-1: #8e4ec6;
|
|
15
|
+
--dc-ac-tx: #ededed;
|
|
16
|
+
}
|
package/theme/terminal.css
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
/* This theme has a similar look to a computer terminal */
|
|
2
|
-
|
|
3
|
-
@import url("https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css");
|
|
4
|
-
|
|
5
|
-
:root {
|
|
6
|
-
/* Fonts */
|
|
7
|
-
--dc-font-sans: "Geist Mono", monospace;
|
|
8
|
-
--dc-font-mono: "Geist Mono", monospace;
|
|
9
|
-
/* Colors */
|
|
10
|
-
--dc-tx-1: #ffffff;
|
|
11
|
-
--dc-tx-2: #eeeeee;
|
|
12
|
-
--dc-bg-1: #000000;
|
|
13
|
-
--dc-bg-2: #002700;
|
|
14
|
-
--dc-bg-3: #005800;
|
|
15
|
-
--dc-lk-1: #00ff00;
|
|
16
|
-
--dc-lkb-1: #00ff00;
|
|
17
|
-
--dc-lkb-2: #00d400;
|
|
18
|
-
--dc-lkb-tx: #000000;
|
|
19
|
-
--dc-ac-1: #00ff00;
|
|
20
|
-
--dc-ac-tx: #000000;
|
|
21
|
-
}
|
|
1
|
+
/* This theme has a similar look to a computer terminal */
|
|
2
|
+
|
|
3
|
+
@import url("https://cdn.jsdelivr.net/npm/@intergrav/fonts@1/serve/geist-mono.min.css");
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
/* Fonts */
|
|
7
|
+
--dc-font-sans: "Geist Mono", monospace;
|
|
8
|
+
--dc-font-mono: "Geist Mono", monospace;
|
|
9
|
+
/* Colors */
|
|
10
|
+
--dc-tx-1: #ffffff;
|
|
11
|
+
--dc-tx-2: #eeeeee;
|
|
12
|
+
--dc-bg-1: #000000;
|
|
13
|
+
--dc-bg-2: #002700;
|
|
14
|
+
--dc-bg-3: #005800;
|
|
15
|
+
--dc-lk-1: #00ff00;
|
|
16
|
+
--dc-lkb-1: #00ff00;
|
|
17
|
+
--dc-lkb-2: #00d400;
|
|
18
|
+
--dc-lkb-tx: #000000;
|
|
19
|
+
--dc-ac-1: #00ff00;
|
|
20
|
+
--dc-ac-tx: #000000;
|
|
21
|
+
}
|