@punkfairie/98.css 1.1.21
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/.devenv/load-exports +1 -0
- package/.devenv/root +1 -0
- package/.devenv/tasks.db +0 -0
- package/.devenv/tasks.db-shm +0 -0
- package/.devenv/tasks.db-wal +0 -0
- package/.direnv/bin/nix-direnv-reload +19 -0
- package/.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc +2228 -0
- package/.editorconfig +18 -0
- package/.envrc +17 -0
- package/LICENSE +7 -0
- package/README.md +76 -0
- package/build.js +81 -0
- package/dist/98.css +2 -0
- package/dist/98.css.map +1 -0
- package/dist/docs.css +152 -0
- package/dist/icon.png +0 -0
- package/dist/index.html +1673 -0
- package/dist/index.html.ejs +1129 -0
- package/dist/ms_sans_serif.woff +0 -0
- package/dist/ms_sans_serif.woff2 +0 -0
- package/dist/ms_sans_serif_bold.woff +0 -0
- package/dist/ms_sans_serif_bold.woff2 +0 -0
- package/dist/vs.css +67 -0
- package/dist/window.png +0 -0
- package/dist/zoom.png +0 -0
- package/docs/docs.css +152 -0
- package/docs/icon.png +0 -0
- package/docs/index.html.ejs +1129 -0
- package/docs/vs.css +67 -0
- package/docs/window.png +0 -0
- package/docs/zoom.png +0 -0
- package/flake.nix +60 -0
- package/fonts/converted/ms_sans_serif.woff +0 -0
- package/fonts/converted/ms_sans_serif.woff2 +0 -0
- package/fonts/converted/ms_sans_serif_bold.woff +0 -0
- package/fonts/converted/ms_sans_serif_bold.woff2 +0 -0
- package/fonts/src/ms-sans-serif/MS Sans Serif.ttf +0 -0
- package/fonts/src/ms-sans-serif/license.txt +4 -0
- package/fonts/src/ms-sans-serif/readme.txt +26 -0
- package/fonts/src/ms-sans-serif-bold/MS Sans Serif Bold.ttf +0 -0
- package/fonts/src/ms-sans-serif-bold/license.txt +4 -0
- package/fonts/src/ms-sans-serif-bold/readme.txt +26 -0
- package/icon/button-down-active.svg +5 -0
- package/icon/button-down.svg +8 -0
- package/icon/button-left.svg +8 -0
- package/icon/button-right.svg +8 -0
- package/icon/button-up.svg +8 -0
- package/icon/checkmark-disabled.svg +3 -0
- package/icon/checkmark.svg +3 -0
- package/icon/close.svg +3 -0
- package/icon/groupbox-border.svg +4 -0
- package/icon/help.svg +8 -0
- package/icon/indicator-horizontal.svg +6 -0
- package/icon/indicator-rectangle-horizontal.svg +6 -0
- package/icon/maximize-disabled.svg +4 -0
- package/icon/maximize.svg +3 -0
- package/icon/minimize.svg +3 -0
- package/icon/radio-border-disabled.svg +7 -0
- package/icon/radio-border.svg +8 -0
- package/icon/radio-dot-disabled.svg +3 -0
- package/icon/radio-dot.svg +3 -0
- package/icon/restore.svg +10 -0
- package/icon/scrollbar-background.svg +4 -0
- package/icon/sunken-panel-border.svg +10 -0
- package/now.json +4 -0
- package/package.json +48 -0
- package/server.js +16 -0
- package/style.css +1052 -0
package/docs/vs.css
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/*
|
|
2
|
+
|
|
3
|
+
Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
|
|
4
|
+
|
|
5
|
+
*/
|
|
6
|
+
.hljs {
|
|
7
|
+
display: block;
|
|
8
|
+
overflow-x: auto;
|
|
9
|
+
padding: 0.5em;
|
|
10
|
+
background: white;
|
|
11
|
+
color: black;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.hljs-comment,
|
|
15
|
+
.hljs-quote,
|
|
16
|
+
.hljs-variable {
|
|
17
|
+
color: #008000;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.hljs-keyword,
|
|
21
|
+
.hljs-selector-tag,
|
|
22
|
+
.hljs-built_in,
|
|
23
|
+
.hljs-name,
|
|
24
|
+
.hljs-tag {
|
|
25
|
+
color: #00f;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.hljs-string,
|
|
29
|
+
.hljs-title,
|
|
30
|
+
.hljs-section,
|
|
31
|
+
.hljs-attribute,
|
|
32
|
+
.hljs-literal,
|
|
33
|
+
.hljs-template-tag,
|
|
34
|
+
.hljs-template-variable,
|
|
35
|
+
.hljs-type,
|
|
36
|
+
.hljs-addition {
|
|
37
|
+
color: #a31515;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.hljs-deletion,
|
|
41
|
+
.hljs-selector-attr,
|
|
42
|
+
.hljs-selector-pseudo,
|
|
43
|
+
.hljs-meta {
|
|
44
|
+
color: #2b91af;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.hljs-doctag {
|
|
48
|
+
color: #808080;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.hljs-attr {
|
|
52
|
+
color: #f00;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.hljs-symbol,
|
|
56
|
+
.hljs-bullet,
|
|
57
|
+
.hljs-link {
|
|
58
|
+
color: #00b0e8;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.hljs-emphasis {
|
|
62
|
+
font-style: italic;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.hljs-strong {
|
|
66
|
+
font-weight: bold;
|
|
67
|
+
}
|
package/docs/window.png
ADDED
|
Binary file
|
package/docs/zoom.png
ADDED
|
Binary file
|
package/flake.nix
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
description = "Wrap It Up";
|
|
3
|
+
|
|
4
|
+
inputs = {
|
|
5
|
+
devenv-root = {
|
|
6
|
+
url = "file+file:///dev/null";
|
|
7
|
+
flake = false;
|
|
8
|
+
};
|
|
9
|
+
nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling";
|
|
10
|
+
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
11
|
+
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
12
|
+
devenv.url = "github:cachix/devenv";
|
|
13
|
+
nix2container.url = "github:nlewo/nix2container";
|
|
14
|
+
nix2container.inputs.nixpkgs.follows = "nixpkgs";
|
|
15
|
+
mk-shell-bin.url = "github:rrbutani/nix-mk-shell-bin";
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
nixConfig = {
|
|
19
|
+
extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
|
|
20
|
+
extra-substituters = "https://devenv.cachix.org";
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
outputs = inputs @ {
|
|
24
|
+
flake-parts,
|
|
25
|
+
# devenv-root,
|
|
26
|
+
...
|
|
27
|
+
}:
|
|
28
|
+
flake-parts.lib.mkFlake {inherit inputs;} {
|
|
29
|
+
imports = [
|
|
30
|
+
inputs.devenv.flakeModule
|
|
31
|
+
];
|
|
32
|
+
systems = [
|
|
33
|
+
"x86_64-linux"
|
|
34
|
+
"i686-linux"
|
|
35
|
+
"x86_64-darwin"
|
|
36
|
+
"aarch64-linux"
|
|
37
|
+
"aarch64-darwin"
|
|
38
|
+
];
|
|
39
|
+
|
|
40
|
+
perSystem = _: {
|
|
41
|
+
devenv.shells.default = {
|
|
42
|
+
name = "98.css";
|
|
43
|
+
|
|
44
|
+
# packages = with pkgs; [
|
|
45
|
+
# ];
|
|
46
|
+
|
|
47
|
+
languages = {
|
|
48
|
+
javascript = {
|
|
49
|
+
enable = true;
|
|
50
|
+
|
|
51
|
+
npm = {
|
|
52
|
+
enable = true;
|
|
53
|
+
install.enable = true;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
The font file in this archive was created using Fontstruct the free, online
|
|
2
|
+
font-building tool.
|
|
3
|
+
This font was created by “lou”.
|
|
4
|
+
This font has a homepage where this archive and other versions may be found:
|
|
5
|
+
https://fontstruct.com/fontstructions/show/1384746
|
|
6
|
+
|
|
7
|
+
Try Fontstruct at http://fontstruct.com
|
|
8
|
+
It’s easy and it’s fun.
|
|
9
|
+
|
|
10
|
+
NOTE FOR FLASH USERS: Fontstruct fonts (fontstructions) are optimized for Flash.
|
|
11
|
+
If the font in this archive is a pixel font, it is best displayed at a font-size
|
|
12
|
+
of 11.
|
|
13
|
+
|
|
14
|
+
Fontstruct is sponsored by FontShop.
|
|
15
|
+
Visit them at https://fontshop.com
|
|
16
|
+
FontShop is the original independent font retailer. We’ve been around since
|
|
17
|
+
the dawn of digital type. Whether you need the right font or need to create the
|
|
18
|
+
right font from scratch, let our 26 years of experience work for you.
|
|
19
|
+
|
|
20
|
+
Fontstruct is copyright ©2017 Rob Meek
|
|
21
|
+
|
|
22
|
+
LEGAL NOTICE:
|
|
23
|
+
In using this font you must comply with the licensing terms described in the
|
|
24
|
+
file “license.txt” included with this archive.
|
|
25
|
+
If you redistribute the font file in this archive, it must be accompanied by all
|
|
26
|
+
the other files from this archive, including this one.
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
The font file in this archive was created using Fontstruct the free, online
|
|
2
|
+
font-building tool.
|
|
3
|
+
This font was created by “lou”.
|
|
4
|
+
This font has a homepage where this archive and other versions may be found:
|
|
5
|
+
https://fontstruct.com/fontstructions/show/1384862
|
|
6
|
+
|
|
7
|
+
Try Fontstruct at http://fontstruct.com
|
|
8
|
+
It’s easy and it’s fun.
|
|
9
|
+
|
|
10
|
+
NOTE FOR FLASH USERS: Fontstruct fonts (fontstructions) are optimized for Flash.
|
|
11
|
+
If the font in this archive is a pixel font, it is best displayed at a font-size
|
|
12
|
+
of 11.
|
|
13
|
+
|
|
14
|
+
Fontstruct is sponsored by FontShop.
|
|
15
|
+
Visit them at https://fontshop.com
|
|
16
|
+
FontShop is the original independent font retailer. We’ve been around since
|
|
17
|
+
the dawn of digital type. Whether you need the right font or need to create the
|
|
18
|
+
right font from scratch, let our 26 years of experience work for you.
|
|
19
|
+
|
|
20
|
+
Fontstruct is copyright ©2017 Rob Meek
|
|
21
|
+
|
|
22
|
+
LEGAL NOTICE:
|
|
23
|
+
In using this font you must comply with the licensing terms described in the
|
|
24
|
+
file “license.txt” included with this archive.
|
|
25
|
+
If you redistribute the font file in this archive, it must be accompanied by all
|
|
26
|
+
the other files from this archive, including this one.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H15H16V17H15H0V16V1V0ZM1 16H15V1H1V16Z" fill="#808080"/>
|
|
3
|
+
<rect x="1" y="1" width="14" height="15" fill="#C0C0C0"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 7H5V8H6V9H7V10H8V11H9V10H10V9H11V8H12V7Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 0H0V1V16H1V1H15V0Z" fill="#DFDFDF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1H1V15H2V2H14V1H2Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 17H15H0V16H15V0H16V17Z" fill="black"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 1H14V15H1V16H14H15V1Z" fill="#808080"/>
|
|
6
|
+
<rect x="2" y="2" width="12" height="13" fill="#C0C0C0"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 6H4V7H5V8H6V9H7V10H8V9H9V8H10V7H11V6Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 0H0V1V16H1V1H15V0Z" fill="#DFDFDF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1H1V15H2V2H14V1H2Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 17H15H0V16H15V0H16V17Z" fill="black"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 1H14V15H1V16H14H15V1Z" fill="#808080"/>
|
|
6
|
+
<rect x="2" y="2" width="12" height="13" fill="#C0C0C0"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 4H8V5H7V6H6V7H5V8H6V9H7V10H8V11H9V4Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 0H0V1V16H1V1H15V0Z" fill="#DFDFDF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1H1V15H2V2H14V1H2Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 17H15H0V16H15V0H16V17Z" fill="black"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 1H14V15H1V16H14H15V1Z" fill="#808080"/>
|
|
6
|
+
<rect x="2" y="2" width="12" height="13" fill="#C0C0C0"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 4H6V11H7V10H8V9H9V8H10V7H9V6H8V5H7V4Z" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 0H0V1V16H1V1H15V0Z" fill="#DFDFDF"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 1H1V15H2V2H14V1H2Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 17H15H0V16H15V0H16V17Z" fill="black"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 1H14V15H1V16H14H15V1Z" fill="#808080"/>
|
|
6
|
+
<rect x="2" y="2" width="12" height="13" fill="#C0C0C0"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 6H7V7H6V8H5V9H4V10H11V9H10V8H9V7H8V6Z" fill="black"/>
|
|
8
|
+
</svg>
|
package/icon/close.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="5" height="5" viewBox="0 0 5 5" fill="grey" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H5V5H0V2H2V3H3V2H0" fill="white" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H4V4H0V1H1V3H3V1H0" fill="#808080" />
|
|
4
|
+
</svg>
|
package/icon/help.svg
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="6" height="9" viewBox="0 0 6 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect y="1" width="2" height="2" fill="black"/>
|
|
3
|
+
<rect x="1" width="4" height="1" fill="black"/>
|
|
4
|
+
<rect x="4" y="1" width="2" height="2" fill="black"/>
|
|
5
|
+
<rect x="3" y="3" width="2" height="1" fill="black"/>
|
|
6
|
+
<rect x="2" y="4" width="2" height="2" fill="black"/>
|
|
7
|
+
<rect x="2" y="7" width="2" height="2" fill="black"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="11" height="21" viewBox="0 0 11 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0V16H2V18H4V20H5V19H3V17H1V1H10V0Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 1V16H2V17H3V18H4V19H6V18H7V17H8V16H9V1Z" fill="#C0C7C8"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 1H10V16H8V18H6V20H5V19H7V17H9Z" fill="#87888F"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 0H11V16H9V18H7V20H5V21H6V19H8V17H10Z" fill="black"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="11" height="21" viewBox="0 0 11 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0V20H1V1H10V0Z" fill="white"/>
|
|
3
|
+
<rect x="1" y="1" width="8" height="18" fill="#C0C7C8"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 1H10V20H1V19H9Z" fill="#87888F"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 0H11V21H0V20H10Z" fill="black"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 1H1V3V9V10H2H9H10V9V3V1ZM9 3H2V9H9V3Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 0H0V2V8V9H1H8H9V8V2V0ZM8 2H1V8H8V2Z" fill="#808080"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 0H4V1H2V2H1V4H0V8H1V10H2V8H1V4H2V2H4V1H8V2H10V1H8V0Z" fill="#808080"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1H4V2H2V3V4H1V8H2V9H3V8H2V4H3V3H4V2H8V3H10V2H8V1Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 3H10V4H9V3ZM10 8V4H11V8H10ZM8 10V9H9V8H10V9V10H8ZM4 10V11H8V10H4ZM4 10V9H2V10H4Z" fill="#DFDFDF"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 2H10V4H11V8H10V10H8V11H4V10H2V11H4V12H8V11H10V10H11V8H12V4H11V2Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2H8V3H9V4H10V8H9V9H8V10H4V9H3V8H2V4H3V3H4V2Z" fill="#C0C0C0"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 0H4V1H2V2H1V4H0V8H1V10H2V8H1V4H2V2H4V1H8V2H10V1H8V0Z" fill="#808080"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1H4V2H2V3V4H1V8H2V9H3V8H2V4H3V3H4V2H8V3H10V2H8V1Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 3H10V4H9V3ZM10 8V4H11V8H10ZM8 10V9H9V8H10V9V10H8ZM4 10V11H8V10H4ZM4 10V9H2V10H4Z" fill="#DFDFDF"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 2H10V4H11V8H10V10H8V11H4V10H2V11H4V12H8V11H10V10H11V8H12V4H11V2Z" fill="white"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2H8V3H9V4H10V8H9V9H8V10H4V9H3V8H2V4H3V3H4V2Z" fill="white"/>
|
|
7
|
+
</svg>
|
|
8
|
+
|
package/icon/restore.svg
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="2" width="6" height="2" fill="black"/>
|
|
3
|
+
<rect x="7" y="2" width="1" height="4" fill="black"/>
|
|
4
|
+
<rect x="2" y="2" width="1" height="1" fill="black"/>
|
|
5
|
+
<rect x="6" y="5" width="1" height="1" fill="black"/>
|
|
6
|
+
<rect y="3" width="6" height="2" fill="black"/>
|
|
7
|
+
<rect x="5" y="5" width="1" height="4" fill="black"/>
|
|
8
|
+
<rect y="5" width="1" height="4" fill="black"/>
|
|
9
|
+
<rect x="1" y="8" width="4" height="1" fill="black"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="2" height="2" viewBox="0 0 2 2" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 0H0V1H1V2H2V1H1V0Z" fill="#C0C0C0"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 0H1V1H0V2H1V1H2V0Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="5" height="5" viewBox="0 0 5 5" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="4" height="1" x="0" y="0" fill="#808080"/>
|
|
3
|
+
<rect width="1" height="4" x="0" y="0" fill="#808080"/>
|
|
4
|
+
<rect width="2" height="1" x="1" y="1" fill="#0a0a0a"/>
|
|
5
|
+
<rect width="1" height="2" x="1" y="1" fill="#0a0a0a"/>
|
|
6
|
+
<rect width="5" height="1" x="0" y="4" fill="#fff"/>
|
|
7
|
+
<rect width="1" height="5" x="4" y="0" fill="#fff"/>
|
|
8
|
+
<rect width="1" height="3" x="3" y="1" fill="#dfdfdf"/>
|
|
9
|
+
<rect width="3" height="1" x="1" y="3" fill="#dfdfdf"/>
|
|
10
|
+
</svg>
|
package/now.json
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@punkfairie/98.css",
|
|
3
|
+
"version": "1.1.21",
|
|
4
|
+
"description": "A design system for building faithful recreations of old UIs",
|
|
5
|
+
"main": "dist/98.css",
|
|
6
|
+
"directories": {
|
|
7
|
+
"doc": "docs"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "node build.js",
|
|
11
|
+
"deploy:docs": "npm run build && gh-pages -d dist",
|
|
12
|
+
"release": "npm run build && npm publish --access public"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://codewith.babesonthe.net/punkfairie/98.css.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"css",
|
|
20
|
+
"windows98"
|
|
21
|
+
],
|
|
22
|
+
"author": "Marley Rae <marley@punkfairie.net> (https://punkfairie.net)",
|
|
23
|
+
"contributors": [
|
|
24
|
+
"Jordan Scales <scalesjordan@gmail.com>"
|
|
25
|
+
],
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://codewith.babesonthe.net/punkfairie/98.css/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://codewith.babesonthe.net/punkfairie/98.css",
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"chokidar": "^3.3.1",
|
|
33
|
+
"cssnano": "^5.0.1",
|
|
34
|
+
"dedent": "^0.7.0",
|
|
35
|
+
"ejs": "^3.0.2",
|
|
36
|
+
"gh-pages": "^2.2.0",
|
|
37
|
+
"glob": "^7.1.6",
|
|
38
|
+
"highlight.js": "^10.4.1",
|
|
39
|
+
"live-server": "^1.2.1",
|
|
40
|
+
"mkdirp": "^1.0.4",
|
|
41
|
+
"postcss": "^8.2.12",
|
|
42
|
+
"postcss-calc": "^7.0.2",
|
|
43
|
+
"postcss-copy": "^7.1.0",
|
|
44
|
+
"postcss-css-variables": "^0.14.0",
|
|
45
|
+
"postcss-inline": "^1.2.0",
|
|
46
|
+
"postcss-inline-svg": "^4.1.0"
|
|
47
|
+
}
|
|
48
|
+
}
|
package/server.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
const chokidar = require("chokidar");
|
|
2
|
+
const build = require("./build");
|
|
3
|
+
|
|
4
|
+
chokidar
|
|
5
|
+
.watch(["style.css", "build.js", "docs", "fonts", "icon"], {
|
|
6
|
+
usePolling: true,
|
|
7
|
+
})
|
|
8
|
+
.on("change", (file) => {
|
|
9
|
+
console.log(
|
|
10
|
+
`[${new Date().toLocaleTimeString()}] ${file} changed -- rebuilding...`
|
|
11
|
+
);
|
|
12
|
+
build();
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
var liveServer = require("live-server");
|
|
16
|
+
liveServer.start({ port: 3000, root: "dist" });
|