@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.
Files changed (68) hide show
  1. package/.devenv/load-exports +1 -0
  2. package/.devenv/root +1 -0
  3. package/.devenv/tasks.db +0 -0
  4. package/.devenv/tasks.db-shm +0 -0
  5. package/.devenv/tasks.db-wal +0 -0
  6. package/.direnv/bin/nix-direnv-reload +19 -0
  7. package/.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc +2228 -0
  8. package/.editorconfig +18 -0
  9. package/.envrc +17 -0
  10. package/LICENSE +7 -0
  11. package/README.md +76 -0
  12. package/build.js +81 -0
  13. package/dist/98.css +2 -0
  14. package/dist/98.css.map +1 -0
  15. package/dist/docs.css +152 -0
  16. package/dist/icon.png +0 -0
  17. package/dist/index.html +1673 -0
  18. package/dist/index.html.ejs +1129 -0
  19. package/dist/ms_sans_serif.woff +0 -0
  20. package/dist/ms_sans_serif.woff2 +0 -0
  21. package/dist/ms_sans_serif_bold.woff +0 -0
  22. package/dist/ms_sans_serif_bold.woff2 +0 -0
  23. package/dist/vs.css +67 -0
  24. package/dist/window.png +0 -0
  25. package/dist/zoom.png +0 -0
  26. package/docs/docs.css +152 -0
  27. package/docs/icon.png +0 -0
  28. package/docs/index.html.ejs +1129 -0
  29. package/docs/vs.css +67 -0
  30. package/docs/window.png +0 -0
  31. package/docs/zoom.png +0 -0
  32. package/flake.nix +60 -0
  33. package/fonts/converted/ms_sans_serif.woff +0 -0
  34. package/fonts/converted/ms_sans_serif.woff2 +0 -0
  35. package/fonts/converted/ms_sans_serif_bold.woff +0 -0
  36. package/fonts/converted/ms_sans_serif_bold.woff2 +0 -0
  37. package/fonts/src/ms-sans-serif/MS Sans Serif.ttf +0 -0
  38. package/fonts/src/ms-sans-serif/license.txt +4 -0
  39. package/fonts/src/ms-sans-serif/readme.txt +26 -0
  40. package/fonts/src/ms-sans-serif-bold/MS Sans Serif Bold.ttf +0 -0
  41. package/fonts/src/ms-sans-serif-bold/license.txt +4 -0
  42. package/fonts/src/ms-sans-serif-bold/readme.txt +26 -0
  43. package/icon/button-down-active.svg +5 -0
  44. package/icon/button-down.svg +8 -0
  45. package/icon/button-left.svg +8 -0
  46. package/icon/button-right.svg +8 -0
  47. package/icon/button-up.svg +8 -0
  48. package/icon/checkmark-disabled.svg +3 -0
  49. package/icon/checkmark.svg +3 -0
  50. package/icon/close.svg +3 -0
  51. package/icon/groupbox-border.svg +4 -0
  52. package/icon/help.svg +8 -0
  53. package/icon/indicator-horizontal.svg +6 -0
  54. package/icon/indicator-rectangle-horizontal.svg +6 -0
  55. package/icon/maximize-disabled.svg +4 -0
  56. package/icon/maximize.svg +3 -0
  57. package/icon/minimize.svg +3 -0
  58. package/icon/radio-border-disabled.svg +7 -0
  59. package/icon/radio-border.svg +8 -0
  60. package/icon/radio-dot-disabled.svg +3 -0
  61. package/icon/radio-dot.svg +3 -0
  62. package/icon/restore.svg +10 -0
  63. package/icon/scrollbar-background.svg +4 -0
  64. package/icon/sunken-panel-border.svg +10 -0
  65. package/now.json +4 -0
  66. package/package.json +48 -0
  67. package/server.js +16 -0
  68. package/style.css +1052 -0
Binary file
Binary file
Binary file
Binary file
package/dist/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
+ }
Binary file
package/dist/zoom.png ADDED
Binary file
package/docs/docs.css ADDED
@@ -0,0 +1,152 @@
1
+ body {
2
+ margin: 0;
3
+ padding: 0;
4
+ background: #c0c0c0;
5
+ }
6
+
7
+ main {
8
+ width: 65rem;
9
+ margin-left: 240px;
10
+ margin-bottom: 60px;
11
+ }
12
+
13
+ aside {
14
+ width: 200px;
15
+ position: fixed;
16
+ top: 0;
17
+ bottom: 0;
18
+ padding: 8px;
19
+ display: flex;
20
+ align-items: stretch;
21
+ }
22
+
23
+ aside .tree-view {
24
+ width: 100%;
25
+ /* TODO: Move scrollbar into the recessed region? */
26
+ overflow-y: scroll;
27
+ }
28
+
29
+ h1 {
30
+ margin: 12px 0;
31
+ }
32
+
33
+ hr {
34
+ margin: 0;
35
+ border: none;
36
+ width: 400px;
37
+ height: 1px;
38
+ opacity: 0.5;
39
+ background: linear-gradient(
40
+ to right,
41
+ red 20%,
42
+ yellow 20%,
43
+ yellow 36%,
44
+ green 36%,
45
+ green 60%,
46
+ blue 60%,
47
+ blue 100%
48
+ );
49
+ }
50
+
51
+ h2 {
52
+ margin-bottom: 12px;
53
+ }
54
+
55
+ h3 {
56
+ font-size: 1.6rem;
57
+ }
58
+
59
+ h3,
60
+ h4 {
61
+ /* Swap the margin for a top-padding so linking to this section
62
+ results in a better scroll position */
63
+ padding-top: 20px;
64
+ margin-top: 0;
65
+ display: block;
66
+ flex: 0 0 180px;
67
+ }
68
+
69
+ p {
70
+ max-width: 50rem;
71
+ line-height: 1.5;
72
+ }
73
+
74
+ .component {
75
+ display: flex;
76
+ margin-top: 24px;
77
+ }
78
+
79
+ blockquote {
80
+ margin: 0 0 20px;
81
+ padding: 20px;
82
+ background: #dfdfdf;
83
+ }
84
+
85
+ blockquote footer {
86
+ margin: 12px 0 0 12px;
87
+ }
88
+
89
+ .example {
90
+ margin: 16px 0;
91
+ padding: 12px 24px;
92
+ border-left: 1px solid #808080;
93
+ }
94
+
95
+ details {
96
+ margin-top: 12px;
97
+ }
98
+
99
+ summary {
100
+ user-select: none;
101
+ cursor: pointer;
102
+ display: inline;
103
+ }
104
+
105
+ details[open] summary {
106
+ margin-bottom: 8px;
107
+ }
108
+
109
+ button.focused {
110
+ outline: 1px dotted #000000;
111
+ outline-offset: -4px;
112
+ }
113
+
114
+ button.active {
115
+ box-shadow: inset -1px -1px #ffffff, inset 1px 1px #0a0a0a,
116
+ inset -2px -2px #dfdfdf, inset 2px 2px #808080;
117
+ }
118
+
119
+ @media (max-width: 480px) {
120
+ aside {
121
+ display: none;
122
+ }
123
+
124
+ main {
125
+ box-sizing: border-box;
126
+ width: 100%;
127
+ margin: 0;
128
+ padding: 16px;
129
+ }
130
+
131
+ hr {
132
+ width: 100%;
133
+ }
134
+
135
+ p {
136
+ width: 100%;
137
+ }
138
+
139
+ h3,
140
+ h4 {
141
+ flex: 0;
142
+ }
143
+
144
+ .component {
145
+ display: block;
146
+ margin-top: 24px;
147
+ }
148
+
149
+ pre {
150
+ overflow-x: scroll;
151
+ }
152
+ }
package/docs/icon.png ADDED
Binary file