@networkpro/web 0.10.1 → 0.10.6

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/404.html CHANGED
@@ -1,6 +1,66 @@
1
- <!DOCTYPE html>
2
- <!--==========================================================================SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
3
- This file is part of Network Pro.===========================================================================-->
4
- <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <title>Page Not Found</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="canonical" href="https://netwk.pro/404.html"> <base href="./404.html" target="_self"> <style> * { line-height: 1.2; margin: 0; } html { color: #888; display: table; font-family: sans-serif; height: 100%; text-align: center; width: 100%; } body { display: table-cell; vertical-align: middle; margin: 2em auto; } h1 { color: #555; font-size: 2em; font-weight: 400; } p { margin: 0 auto; width: 280px; } @media only screen and (max-width: 280px) { body, p { width: 95%; } h1 { font-size: 1.5em; margin: 0 0 0.3em; } } </style> </head> <body> <h1>Page Not Found</h1> <p>Sorry, but the page you were trying to view does not exist.</p> </body>
1
+ <!doctype html>
2
+
3
+ <html class="no-js" lang="en">
4
+ <head>
5
+ <meta charset="utf-8">
6
+
7
+
8
+
9
+ <title>Page Not Found</title>
10
+ <meta name="viewport" content="width=device-width,initial-scale=1">
11
+
12
+ <link rel="canonical" href="https://netwk.pro/404.html">
13
+ <base href="./404.html" target="_self">
14
+
15
+ <style>
16
+ * {
17
+ line-height: 1.2;
18
+ margin: 0;
19
+ }
20
+
21
+ html {
22
+ color: #888;
23
+ display: table;
24
+ font-family: sans-serif;
25
+ height: 100%;
26
+ text-align: center;
27
+ width: 100%;
28
+ }
29
+
30
+ body {
31
+ display: table-cell;
32
+ vertical-align: middle;
33
+ margin: 2em auto;
34
+ }
35
+
36
+ h1 {
37
+ color: #555;
38
+ font-size: 2em;
39
+ font-weight: 400;
40
+ }
41
+
42
+ p {
43
+ margin: 0 auto;
44
+ width: 280px;
45
+ }
46
+
47
+ @media only screen and (max-width: 280px) {
48
+ body,
49
+ p {
50
+ width: 95%;
51
+ }
52
+
53
+ h1 {
54
+ font-size: 1.5em;
55
+ margin: 0 0 0.3em;
56
+ }
57
+ }
58
+ </style>
59
+ <script defer="defer" src="js/runtime.52b1ac291305b90de3df.js"></script><script defer="defer" src="js/app.2f84ee2b7813ca71b913.js"></script></head>
60
+
61
+ <body>
62
+ <h1>Page Not Found</h1>
63
+ <p>Sorry, but the page you were trying to view does not exist.</p>
64
+ </body>
5
65
  </html>
6
- <!-- IE needs 512+ bytes: https://docs.microsoft.com/archive/blogs/ieinternals/friendly-http-error-pages -->
66
+
package/css/default.css CHANGED
@@ -1,152 +1 @@
1
- .full-width-section{
2
- background-position:50%;
3
- background-size:cover;
4
- margin:0 auto;
5
- max-width:1920px;
6
- width:100%;
7
- }
8
- .container{
9
- margin:0 auto;
10
- max-width:1200px;
11
- padding:0 12px;
12
- }
13
-
14
- footer,header{
15
- width:100%;
16
- }
17
-
18
-
19
- footer .container,header .container{
20
- margin:0 auto;
21
- max-width:1200px;
22
- padding:20px 12px;
23
- }
24
- .soc{
25
- border-collapse:collapse;
26
- border-spacing:0;
27
- margin:0 auto;
28
- }
29
-
30
- .soc td{
31
- border-collapse:collapse;
32
- font-family:Arial, Helvetica, sans-serif;
33
- overflow:hidden;
34
- padding:8px;
35
- word-break:normal;
36
- }
37
-
38
- .soc th{
39
- border-collapse:collapse;
40
- font-family:Arial, Helvetica, sans-serif;
41
- overflow:hidden;
42
- padding:8px;
43
- word-break:normal;
44
- }
45
-
46
- .soc .soc-fa{
47
- text-align:center;
48
- vertical-align:middle;
49
- }
50
-
51
- @media screen and (width <= 767px){
52
- .soc{
53
- width:auto !important;
54
- }
55
-
56
- .soc col{
57
- width:auto !important;
58
- }
59
-
60
- .soc-wrap{
61
- margin:auto 0;
62
- -webkit-overflow-scrolling:touch;
63
- overflow-x:auto;
64
- }
65
- }
66
-
67
- .foss{
68
- border-collapse:collapse;
69
- border-spacing:0;
70
- }
71
-
72
- .foss td{
73
- border-collapse:collapse;
74
- font-family:Arial, Helvetica, sans-serif;
75
- overflow:hidden;
76
- padding:10px 5px;
77
- word-break:normal;
78
- }
79
-
80
- .foss th{
81
- border-collapse:collapse;
82
- font-family:Arial, Helvetica, sans-serif;
83
- overflow:hidden;
84
- padding:10px 5px;
85
- word-break:normal;
86
- }
87
-
88
- .foss .foss-cell{
89
- text-align:center;
90
- vertical-align:middle;
91
- }
92
-
93
- @media screen and (width <= 767px){
94
- .foss{
95
- width:auto !important;
96
- }
97
-
98
- .foss col{
99
- width:auto !important;
100
- }
101
-
102
- .foss-wrap{
103
- -webkit-overflow-scrolling:touch;
104
- overflow-x:auto;
105
- }
106
- }
107
-
108
- .logo{
109
- display:block;
110
- margin-left:auto;
111
- margin-right:auto;
112
- }
113
-
114
- .index1{
115
- font-style:italic;
116
- font-weight:bold;
117
- letter-spacing:-.035em;
118
- line-height:2.125rem;
119
- text-align:center;
120
- }
121
-
122
- .index2{
123
- font-size:1.5em;
124
- font-variant:small-caps;
125
- letter-spacing:-.035em;
126
- line-height:1.75em;
127
- text-align:center;
128
- }
129
-
130
- .subhead{
131
- font-size:1.5em;
132
- font-variant:small-caps;
133
- letter-spacing:-.035em;
134
- line-height:1.75em;
135
- }
136
-
137
- .bolditalic{
138
- font-style:italic;
139
- font-weight:bold;
140
- }
141
-
142
- .bquote{
143
- border-left:3px solid #9e9e9e;
144
- font-style:italic;
145
- margin-left:30px;
146
- padding-left:10px;
147
- }
148
-
149
- .small-text{
150
- font-size:.75em;
151
- line-height:1.125em;
152
- }
1
+ .full-width-section{background-position:50%;background-size:cover;margin:0 auto;max-width:1920px;width:100%}.container{margin:0 auto;max-width:1200px;padding:0 12px}footer,header{width:100%}footer .container,header .container{margin:0 auto;max-width:1200px;padding:20px 12px}.soc{border-collapse:collapse;border-spacing:0;margin:0 auto}.soc td,.soc th{border-collapse:collapse;font-family:Arial,Helvetica,sans-serif;overflow:hidden;padding:8px;word-break:normal}.soc .soc-fa{text-align:center;vertical-align:middle}@media screen and (width <= 767px){.soc,.soc col{width:auto!important}.soc-wrap{margin:auto 0;-webkit-overflow-scrolling:touch;overflow-x:auto}}.foss{border-collapse:collapse;border-spacing:0}.foss td,.foss th{border-collapse:collapse;font-family:Arial,Helvetica,sans-serif;overflow:hidden;padding:10px 5px;word-break:normal}.foss .foss-cell{text-align:center;vertical-align:middle}@media screen and (width <= 767px){.foss,.foss col{width:auto!important}.foss-wrap{-webkit-overflow-scrolling:touch;overflow-x:auto}}.logo{display:block;margin-left:auto;margin-right:auto}.index1{font-style:italic;font-weight:700;letter-spacing:-.035em;line-height:2.125rem;text-align:center}.index2{text-align:center}.index2,.subhead{font-size:1.5em;font-variant:small-caps;letter-spacing:-.035em;line-height:1.75em}.bolditalic{font-style:italic;font-weight:700}.bquote{border-left:3px solid #9e9e9e;font-style:italic;margin-left:30px;padding-left:10px}.small-text{font-size:.75em;line-height:1.125em}
package/css/index.css CHANGED
@@ -1,139 +1 @@
1
- .full-width-section{
2
- background-position:50%;
3
- background-size:cover;
4
- margin:0 auto;
5
- max-width:1920px;
6
- width:100%;
7
- }
8
- .container{
9
- margin:0 auto;
10
- max-width:1200px;
11
- padding:0 12px;
12
- }
13
-
14
- footer,header{
15
- width:100%;
16
- }
17
-
18
-
19
- footer .container,header .container{
20
- margin:0 auto;
21
- max-width:1200px;
22
- padding:20px 12px;
23
- }
24
- .gh{
25
- border-collapse:collapse;
26
- border-spacing:0;
27
- margin:0 auto;
28
- }
29
-
30
- .gh td{
31
- border-collapse:collapse;
32
- font-family:Arial, Helvetica, sans-serif;
33
- overflow:hidden;
34
- padding:10px 5px;
35
- word-break:normal;
36
- }
37
-
38
- .gh th{
39
- border-collapse:collapse;
40
- font-family:Arial, Helvetica, sans-serif;
41
- overflow:hidden;
42
- padding:10px 5px;
43
- word-break:normal;
44
- }
45
-
46
- .gh .gh-tcell{
47
- text-align:center;
48
- vertical-align:middle;
49
- }
50
-
51
- @media screen and (width <= 767px){
52
- .gh{
53
- width:auto !important;
54
- }
55
-
56
- .gh col{
57
- width:auto !important;
58
- }
59
-
60
- .gh-wrap{
61
- margin:auto 0;
62
- -webkit-overflow-scrolling:touch;
63
- overflow-x:auto;
64
- }
65
- }
66
- .soc{
67
- border-collapse:collapse;
68
- border-spacing:0;
69
- margin:0 auto;
70
- }
71
-
72
- .soc td{
73
- border-collapse:collapse;
74
- font-family:Arial, Helvetica, sans-serif;
75
- overflow:hidden;
76
- padding:8px;
77
- word-break:normal;
78
- }
79
-
80
- .soc th{
81
- border-collapse:collapse;
82
- font-family:Arial, Helvetica, sans-serif;
83
- overflow:hidden;
84
- padding:8px;
85
- word-break:normal;
86
- }
87
-
88
- .soc .soc-fa{
89
- text-align:center;
90
- vertical-align:middle;
91
- }
92
-
93
- @media screen and (width <= 767px){
94
- .soc{
95
- width:auto !important;
96
- }
97
-
98
- .soc col{
99
- width:auto !important;
100
- }
101
-
102
- .soc-wrap{
103
- margin:auto 0;
104
- -webkit-overflow-scrolling:touch;
105
- overflow-x:auto;
106
- }
107
- }
108
-
109
- .logo{
110
- display:block;
111
- margin-left:auto;
112
- margin-right:auto;
113
- }
114
-
115
- .index1{
116
- font-style:italic;
117
- font-weight:bold;
118
- text-align:center;
119
- }
120
-
121
- .index2{
122
- font-size:1.25em;
123
- font-variant:small-caps;
124
- letter-spacing:-.015em;
125
- line-height:1.625em;
126
- text-align:center;
127
- }
128
-
129
- .join{
130
- font-weight:bold;
131
- text-align:center;
132
- }
133
-
134
- .bquote{
135
- border-left:3px solid #9e9e9e;
136
- font-style:italic;
137
- margin-left:30px;
138
- padding-left:10px;
139
- }
1
+ .full-width-section{background-position:50%;background-size:cover;margin:0 auto;max-width:1920px;width:100%}.container{margin:0 auto;max-width:1200px;padding:0 12px}footer,header{width:100%}footer .container,header .container{margin:0 auto;max-width:1200px;padding:20px 12px}.gh{border-collapse:collapse;border-spacing:0;margin:0 auto}.gh td,.gh th{border-collapse:collapse;font-family:Arial,Helvetica,sans-serif;overflow:hidden;padding:10px 5px;word-break:normal}.gh .gh-tcell{text-align:center;vertical-align:middle}@media screen and (width <= 767px){.gh,.gh col{width:auto!important}.gh-wrap{margin:auto 0;-webkit-overflow-scrolling:touch;overflow-x:auto}}.soc{border-collapse:collapse;border-spacing:0;margin:0 auto}.soc td,.soc th{border-collapse:collapse;font-family:Arial,Helvetica,sans-serif;overflow:hidden;padding:8px;word-break:normal}.soc .soc-fa{text-align:center;vertical-align:middle}@media screen and (width <= 767px){.soc,.soc col{width:auto!important}.soc-wrap{margin:auto 0;-webkit-overflow-scrolling:touch;overflow-x:auto}}.logo{display:block;margin-left:auto;margin-right:auto}.index1{font-style:italic;font-weight:700}.index1,.index2{text-align:center}.index2{font-size:1.25em;font-variant:small-caps;letter-spacing:-.015em;line-height:1.625em}.join{font-weight:700;text-align:center}.bquote{border-left:3px solid #9e9e9e;font-style:italic;margin-left:30px;padding-left:10px}
package/css/normalize.css CHANGED
@@ -1,173 +1 @@
1
- html{
2
- -webkit-text-size-adjust:100%;
3
- }
4
-
5
- body{
6
- margin:0;
7
- }
8
-
9
- main{
10
- display:block;
11
- }
12
-
13
- h1{
14
- font-size:2em;
15
- margin:.67em 0;
16
- }
17
-
18
- hr{
19
- box-sizing:content-box;
20
- }
21
-
22
- pre{
23
- font-family:monospace, monospace;
24
- font-size:1em;
25
- }
26
-
27
- a{
28
- background-color:transparent;
29
- }
30
-
31
- abbr[title]{
32
- border-bottom:none;
33
- text-decoration:underline;
34
- text-decoration:underline dotted;
35
- }
36
-
37
- b,
38
- strong{
39
- font-weight:bolder;
40
- }
41
-
42
- code,
43
- kbd,
44
- samp{
45
- font-family:monospace, monospace;
46
- font-size:1em;
47
- }
48
-
49
- small{
50
- font-size:80%;
51
- }
52
-
53
- sub,
54
- sup{
55
- font-size:75%;
56
- line-height:0;
57
- position:relative;
58
- vertical-align:baseline;
59
- }
60
-
61
- sub{
62
- bottom:-.25em;
63
- }
64
-
65
- sup{
66
- top:-.5em;
67
- }
68
-
69
- img{
70
- border-style:none;
71
- }
72
-
73
- button,
74
- input,
75
- optgroup,
76
- select,
77
- textarea{
78
- font-family:inherit;
79
- font-size:100%;
80
- line-height:1.15;
81
- margin:0;
82
- }
83
-
84
- button,
85
- input{
86
- overflow:visible;
87
- }
88
-
89
- button,
90
- select{
91
- text-transform:none;
92
- }
93
-
94
- [type="button"],
95
- [type="reset"],
96
- [type="submit"],button{
97
- -webkit-appearance:button;
98
- appearance:button;
99
- }
100
-
101
-
102
- [type="button"]::-moz-focus-inner,
103
- [type="reset"]::-moz-focus-inner,
104
- [type="submit"]::-moz-focus-inner,button::-moz-focus-inner{
105
- border-style:none;
106
- padding:0;
107
- }
108
-
109
-
110
- [type="button"]:-moz-focusring,
111
- [type="reset"]:-moz-focusring,
112
- [type="submit"]:-moz-focusring,button:-moz-focusring{
113
- outline:1px dotted ButtonText;
114
- }
115
-
116
- fieldset{
117
- padding:.35em .75em .625em;
118
- }
119
-
120
- legend{
121
- box-sizing:border-box;
122
- color:inherit;
123
- display:table;
124
- max-width:100%;
125
- padding:0;
126
- white-space:normal;
127
- }
128
-
129
- progress{
130
- vertical-align:baseline;
131
- }
132
-
133
- textarea{
134
- overflow:auto;
135
- }
136
-
137
- [type="checkbox"],
138
- [type="radio"]{
139
- box-sizing:border-box;
140
- padding:0;
141
- }
142
-
143
- [type="number"]::-webkit-inner-spin-button,
144
- [type="number"]::-webkit-outer-spin-button{
145
- height:auto;
146
- }
147
-
148
- [type="search"]{
149
- -webkit-appearance:textfield;
150
- appearance:textfield;
151
- outline-offset:-2px;
152
- }
153
-
154
- [type="search"]::-webkit-search-decoration{
155
- -webkit-appearance:none;
156
- }
157
-
158
- ::-webkit-file-upload-button{
159
- -webkit-appearance:button;
160
- font:inherit;
161
- }
162
-
163
- details{
164
- display:block;
165
- }
166
-
167
- summary{
168
- display:list-item;
169
- }
170
-
171
- template{
172
- display:none;
173
- }
1
+ html{-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}