@networkpro/web 0.13.1 → 1.0.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.
Files changed (282) hide show
  1. package/CODE_OF_CONDUCT.md +172 -0
  2. package/LICENSE.md +4 -4
  3. package/README.md +11 -10
  4. package/assets/bin/contact.vcf +13 -0
  5. package/assets/bin/contact@s.neteng.pro.aexpk +17 -0
  6. package/assets/bin/contact@s.neteng.pro.asc +17 -0
  7. package/assets/bin/github@sl.neteng.cc.aexpk +29 -0
  8. package/assets/bin/github@sl.neteng.cc.asc +29 -0
  9. package/assets/bin/linksheet.json +8 -0
  10. package/assets/bin/support@neteng.pro.aexpk +47 -0
  11. package/assets/bin/support@neteng.pro.asc +47 -0
  12. package/assets/consulting-terms.pdf +0 -0
  13. package/eslint.config.mjs +112 -0
  14. package/jsconfig.json +28 -0
  15. package/netlify.toml +13 -0
  16. package/package.json +64 -61
  17. package/playwright.config.js +79 -0
  18. package/postcss.config.mjs +14 -0
  19. package/scripts/bundleCss.js +40 -0
  20. package/src/app.d.ts +15 -0
  21. package/src/app.html +81 -0
  22. package/src/demo.spec.js +14 -0
  23. package/src/lib/components/Badges.svelte +74 -0
  24. package/src/lib/components/ContainerSection.svelte +19 -0
  25. package/src/lib/components/FullWidthSection.svelte +13 -0
  26. package/src/lib/components/LegalNav.svelte +75 -0
  27. package/src/lib/components/Logo.svelte +110 -0
  28. package/src/lib/components/SocialMedia.svelte +70 -0
  29. package/src/lib/components/foss/FossFeatures.svelte +24 -0
  30. package/src/lib/components/foss/FossItemContent.svelte +153 -0
  31. package/src/lib/components/layout/Footer.svelte +188 -0
  32. package/src/lib/components/layout/HeaderDefault.svelte +86 -0
  33. package/src/lib/components/layout/HeaderHome.svelte +84 -0
  34. package/src/lib/data/fossData.js +233 -0
  35. package/src/lib/images.js +77 -0
  36. package/src/lib/img/badges/cc-by-badge.png +0 -0
  37. package/src/lib/img/badges/gpl-badge.svg +1 -0
  38. package/src/lib/img/by.svg +1 -0
  39. package/src/lib/img/cc.svg +1 -0
  40. package/src/lib/img/logo-web.png +0 -0
  41. package/src/lib/img/logo-web.webp +0 -0
  42. package/src/lib/img/obtainium.webp +0 -0
  43. package/src/lib/img/posts/acode.png +0 -0
  44. package/src/lib/img/posts/acode.webp +0 -0
  45. package/src/lib/img/posts/linksheet.png +0 -0
  46. package/src/lib/img/posts/linksheet.webp +0 -0
  47. package/src/lib/img/posts/pmx.png +0 -0
  48. package/src/lib/img/posts/pmx.webp +0 -0
  49. package/src/lib/img/posts/tosdr.png +0 -0
  50. package/src/lib/img/posts/tosdr.webp +0 -0
  51. package/src/lib/img/posts/urlcheck.png +0 -0
  52. package/src/lib/img/posts/urlcheck.webp +0 -0
  53. package/src/lib/index.js +43 -0
  54. package/src/lib/pages/AboutContent.svelte +294 -0
  55. package/src/lib/pages/FossContent.svelte +109 -0
  56. package/src/lib/pages/HomeContent.svelte +120 -0
  57. package/src/lib/pages/LicenseContent.svelte +486 -0
  58. package/src/lib/pages/PrivacyContent.svelte +249 -0
  59. package/src/lib/pages/TermsConditionsContent.svelte +240 -0
  60. package/src/lib/pages/TermsUseContent.svelte +236 -0
  61. package/src/lib/registerServiceWorker.js +65 -0
  62. package/src/lib/styles/css/brands.css +76 -0
  63. package/src/lib/styles/css/brands.min.css +6 -0
  64. package/src/lib/styles/css/default.css +454 -0
  65. package/src/lib/styles/css/fontawesome.min.css +9 -0
  66. package/src/lib/styles/css/global.css +10 -0
  67. package/src/lib/styles/css/normalize.css +349 -0
  68. package/src/lib/styles/css/offline.css +120 -0
  69. package/src/lib/styles/css/solid.min.css +6 -0
  70. package/src/lib/styles/css/style.css +310 -0
  71. package/src/lib/styles/fa-global.css +10 -0
  72. package/src/lib/styles/global.min.css +9 -0
  73. package/src/lib/styles/index.js +11 -0
  74. package/src/lib/styles/webfonts/fa-brands-400.ttf +0 -0
  75. package/src/lib/styles/webfonts/fa-brands-400.woff2 +0 -0
  76. package/src/lib/styles/webfonts/fa-solid-900.ttf +0 -0
  77. package/src/lib/styles/webfonts/fa-solid-900.woff2 +0 -0
  78. package/src/routes/+error.svelte +43 -0
  79. package/src/routes/+layout.js +94 -0
  80. package/src/routes/+layout.svelte +110 -0
  81. package/src/routes/+page.svelte +77 -0
  82. package/src/routes/about/+page.svelte +61 -0
  83. package/src/routes/contact/+page.server.js +24 -0
  84. package/src/routes/example.svx +9 -0
  85. package/src/routes/foss-spotlight/+page.svelte +63 -0
  86. package/src/routes/license/+page.svelte +63 -0
  87. package/src/routes/page.svelte.test.js +18 -0
  88. package/src/routes/privacy-policy/+page.svelte +63 -0
  89. package/src/routes/privacy-rights/+page.server.js +24 -0
  90. package/src/routes/terms-conditions/+page.svelte +63 -0
  91. package/src/routes/terms-of-use/+page.svelte +63 -0
  92. package/src/service-worker.d.ts +4 -0
  93. package/src/service-worker.js +90 -0
  94. package/static/icon-512x512-maskable.png +0 -0
  95. package/static/icon-contact.png +0 -0
  96. package/static/icon-services.png +0 -0
  97. package/static/img/svelte.png +0 -0
  98. package/static/manifest.json +64 -0
  99. package/static/offline.html +79 -0
  100. package/static/offline.min.css +7 -0
  101. package/{robots.txt → static/robots.txt} +0 -2
  102. package/static/sitemap.xml +102 -0
  103. package/stylelint.config.js +118 -0
  104. package/svelte.config.js +56 -0
  105. package/tests/app.spec.js +67 -0
  106. package/tests/mobile.spec.js +58 -0
  107. package/tests-examples/demo-todo-app.spec.js +504 -0
  108. package/tsconfig.custom.json +39 -0
  109. package/vite.config.js +19 -0
  110. package/vitest-setup-client.js +33 -0
  111. package/vitest.config.client.js +34 -0
  112. package/vitest.config.server.js +30 -0
  113. package/404.html +0 -84
  114. package/about.html +0 -334
  115. package/about.html.br +0 -0
  116. package/about.html.gz +0 -0
  117. package/bundle-report.html +0 -39
  118. package/css/default.css +0 -1
  119. package/css/normalize.css +0 -1
  120. package/css/style.css +0 -1
  121. package/docs/404.html +0 -1187
  122. package/docs/assets/external/avatars.githubusercontent.com/u/170266279.png +0 -0
  123. package/docs/assets/external/img.shields.io/badge/GitHub_Package_Registry-white.ed8def48.svg +0 -1
  124. package/docs/assets/external/img.shields.io/badge/npmjs-white.681714c1.svg +0 -1
  125. package/docs/assets/external/mirrors.creativecommons.org/presskit/icons/by.svg +0 -20
  126. package/docs/assets/external/mirrors.creativecommons.org/presskit/icons/cc.svg +0 -27
  127. package/docs/assets/external/unpkg.com/mermaid@11/dist/mermaid.min.js +0 -2607
  128. package/docs/assets/images/favicon.png +0 -0
  129. package/docs/assets/javascripts/bundle.c8b220af.min.js +0 -16
  130. package/docs/assets/javascripts/bundle.c8b220af.min.js.map +0 -7
  131. package/docs/assets/javascripts/lunr/min/lunr.ar.min.js +0 -1
  132. package/docs/assets/javascripts/lunr/min/lunr.da.min.js +0 -18
  133. package/docs/assets/javascripts/lunr/min/lunr.de.min.js +0 -18
  134. package/docs/assets/javascripts/lunr/min/lunr.du.min.js +0 -18
  135. package/docs/assets/javascripts/lunr/min/lunr.el.min.js +0 -1
  136. package/docs/assets/javascripts/lunr/min/lunr.es.min.js +0 -18
  137. package/docs/assets/javascripts/lunr/min/lunr.fi.min.js +0 -18
  138. package/docs/assets/javascripts/lunr/min/lunr.fr.min.js +0 -18
  139. package/docs/assets/javascripts/lunr/min/lunr.he.min.js +0 -1
  140. package/docs/assets/javascripts/lunr/min/lunr.hi.min.js +0 -1
  141. package/docs/assets/javascripts/lunr/min/lunr.hu.min.js +0 -18
  142. package/docs/assets/javascripts/lunr/min/lunr.hy.min.js +0 -1
  143. package/docs/assets/javascripts/lunr/min/lunr.it.min.js +0 -18
  144. package/docs/assets/javascripts/lunr/min/lunr.ja.min.js +0 -1
  145. package/docs/assets/javascripts/lunr/min/lunr.jp.min.js +0 -1
  146. package/docs/assets/javascripts/lunr/min/lunr.kn.min.js +0 -1
  147. package/docs/assets/javascripts/lunr/min/lunr.ko.min.js +0 -1
  148. package/docs/assets/javascripts/lunr/min/lunr.multi.min.js +0 -1
  149. package/docs/assets/javascripts/lunr/min/lunr.nl.min.js +0 -18
  150. package/docs/assets/javascripts/lunr/min/lunr.no.min.js +0 -18
  151. package/docs/assets/javascripts/lunr/min/lunr.pt.min.js +0 -18
  152. package/docs/assets/javascripts/lunr/min/lunr.ro.min.js +0 -18
  153. package/docs/assets/javascripts/lunr/min/lunr.ru.min.js +0 -18
  154. package/docs/assets/javascripts/lunr/min/lunr.sa.min.js +0 -1
  155. package/docs/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +0 -1
  156. package/docs/assets/javascripts/lunr/min/lunr.sv.min.js +0 -18
  157. package/docs/assets/javascripts/lunr/min/lunr.ta.min.js +0 -1
  158. package/docs/assets/javascripts/lunr/min/lunr.te.min.js +0 -1
  159. package/docs/assets/javascripts/lunr/min/lunr.th.min.js +0 -1
  160. package/docs/assets/javascripts/lunr/min/lunr.tr.min.js +0 -18
  161. package/docs/assets/javascripts/lunr/min/lunr.vi.min.js +0 -1
  162. package/docs/assets/javascripts/lunr/min/lunr.zh.min.js +0 -1
  163. package/docs/assets/javascripts/lunr/tinyseg.js +0 -206
  164. package/docs/assets/javascripts/lunr/wordcut.js +0 -6708
  165. package/docs/assets/javascripts/workers/search.f8cc74c7.min.js +0 -42
  166. package/docs/assets/javascripts/workers/search.f8cc74c7.min.js.map +0 -7
  167. package/docs/assets/stylesheets/main.2afb09e1.min.css +0 -1
  168. package/docs/assets/stylesheets/main.2afb09e1.min.css.map +0 -1
  169. package/docs/assets/stylesheets/palette.06af60db.min.css +0 -1
  170. package/docs/assets/stylesheets/palette.06af60db.min.css.map +0 -1
  171. package/docs/blog/2015/01/04/secure-secure-shell/index.html +0 -1771
  172. package/docs/blog/2025/04/30/our-blog-is-live/index.html +0 -1436
  173. package/docs/blog/archive/2015/index.html +0 -1303
  174. package/docs/blog/archive/2025/index.html +0 -1291
  175. package/docs/blog/category/security/index.html +0 -1303
  176. package/docs/blog/index.html +0 -1350
  177. package/docs/conduct/index.html +0 -1509
  178. package/docs/feed_json_created.json +0 -1
  179. package/docs/feed_json_updated.json +0 -1
  180. package/docs/feed_rss_created.xml +0 -1
  181. package/docs/feed_rss_updated.xml +0 -1
  182. package/docs/fontawesome/LICENSE.txt +0 -165
  183. package/docs/fontawesome/brands/facebook.svg +0 -1
  184. package/docs/fontawesome/brands/instagram.svg +0 -1
  185. package/docs/fontawesome/brands/linkedin.svg +0 -1
  186. package/docs/fontawesome/brands/mastodon.svg +0 -1
  187. package/docs/fontawesome/solid/at.svg +0 -1
  188. package/docs/index.html +0 -1395
  189. package/docs/legal/index.html +0 -1740
  190. package/docs/privacy/index.html +0 -1615
  191. package/docs/search/search_index.json +0 -1
  192. package/docs/sitemap.xml +0 -55
  193. package/docs/sitemap.xml.gz +0 -0
  194. package/docs/tags/index.html +0 -2084
  195. package/docs/terms-conditions/index.html +0 -1655
  196. package/docs/terms-use/index.html +0 -1584
  197. package/favicon-192.png +0 -0
  198. package/favicon-512.png +0 -0
  199. package/favicon.svg.br +0 -0
  200. package/favicon.svg.gz +0 -0
  201. package/html/spotlight.html +0 -435
  202. package/html/spotlight.html.br +0 -0
  203. package/html/spotlight.html.gz +0 -0
  204. package/img/banner-1280x640.png +0 -0
  205. package/img/banner-1440.png +0 -0
  206. package/img/banner-og-1200x630.png +0 -0
  207. package/img/favicon-template.png +0 -0
  208. package/img/fb-cover.png +0 -0
  209. package/img/fb-cover2.png +0 -0
  210. package/img/fsf-member.png +0 -0
  211. package/img/gh-logo.png +0 -0
  212. package/img/gpl3-small.png +0 -0
  213. package/img/gpl3.png +0 -0
  214. package/img/linkedin-banner-new.png +0 -0
  215. package/img/linkedin-banner.png +0 -0
  216. package/img/linkedin-banner2.png +0 -0
  217. package/img/logo-1024x1024.png +0 -0
  218. package/img/logo-alt.png +0 -0
  219. package/img/logo-elevated.png +0 -0
  220. package/img/logo-light-elevated.png +0 -0
  221. package/img/logo-light-slogan.png +0 -0
  222. package/img/logo-light.png +0 -0
  223. package/img/logo-slogan.png +0 -0
  224. package/img/logo-transparent-black-small.png +0 -0
  225. package/img/logo-transparent-black.png +0 -0
  226. package/img/logo-transparent-elevated.png +0 -0
  227. package/img/logo-transparent-slogan.png +0 -0
  228. package/img/mastodon-banner.png +0 -0
  229. package/img/netpro-logo-transparent.png +0 -0
  230. package/img/posts/acode.png +0 -0
  231. package/img/posts/linksheet.png +0 -0
  232. package/img/posts/tosdr.png +0 -0
  233. package/img/posts/urlcheck.png +0 -0
  234. package/img/qr/pgp-github.png +0 -0
  235. package/img/qr/pgp-support.png +0 -0
  236. package/img/qr/vcard.png +0 -0
  237. package/img/sd311.png +0 -0
  238. package/img/shield.png +0 -0
  239. package/img/shield.svg +0 -1
  240. package/img/shield.svg.br +0 -0
  241. package/img/shield.svg.gz +0 -0
  242. package/img/shield2.png +0 -0
  243. package/img/shield3-2000x2000.png +0 -0
  244. package/img/shield3-black-1024x1024.png +0 -0
  245. package/img/shield3-black.png +0 -0
  246. package/img/shield3-white.png +0 -0
  247. package/img/trademark.jpg +0 -0
  248. package/index.html +0 -268
  249. package/index.html.br +0 -0
  250. package/index.html.gz +0 -0
  251. package/js/app.d544156ea2ba85a7d486.mjs +0 -1
  252. package/js/runtime.52b1ac291305b90de3df.mjs +0 -1
  253. package/js/vendor/.gitkeep +0 -0
  254. package/legal.html +0 -535
  255. package/legal.html.br +0 -0
  256. package/legal.html.gz +0 -0
  257. package/privacy.html +0 -404
  258. package/privacy.html.br +0 -0
  259. package/privacy.html.gz +0 -0
  260. package/site.webmanifest +0 -25
  261. package/sitemap.xml +0 -177
  262. package/terms-and-conditions.html +0 -409
  263. package/terms-and-conditions.html.br +0 -0
  264. package/terms-and-conditions.html.gz +0 -0
  265. package/terms-of-use.html +0 -380
  266. package/terms-of-use.html.br +0 -0
  267. package/terms-of-use.html.gz +0 -0
  268. /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/assets → assets}/nsa-happy-dance.png +0 -0
  269. /package/{favicon.svg → src/lib/img/favicon.svg} +0 -0
  270. /package/{favicon-180.png → src/lib/img/icon-180x180.png} +0 -0
  271. /package/{img/badge_obtainium.png → src/lib/img/obtainium.png} +0 -0
  272. /package/{img → src/lib/img}/qr/pgp-contact.png +0 -0
  273. /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master → src/lib}/img/qr/pgp-github.png +0 -0
  274. /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master → src/lib}/img/qr/pgp-support.png +0 -0
  275. /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master → src/lib}/img/qr/vcard.png +0 -0
  276. /package/{CNAME → static/CNAME} +0 -0
  277. /package/{favicon.ico → static/favicon.ico} +0 -0
  278. /package/{docs/img/favicon.png → static/icon-192x192.png} +0 -0
  279. /package/{docs/img/logo.png → static/icon-512x512.png} +0 -0
  280. /package/{favicon-splash.png → static/icon-splash.png} +0 -0
  281. /package/{img → static/img}/logo-transparent.png +0 -0
  282. /package/{img → static/img}/logo.png +0 -0
@@ -0,0 +1,349 @@
1
+ /*! ==========================================================================
2
+ src/lib/styles/normalize.css
3
+
4
+ SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
5
+ This file is part of Network Pro.
6
+ =========================================================================== */
7
+
8
+ /*! Modified from normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
9
+
10
+ /* Document
11
+ ========================================================================== */
12
+
13
+ /**
14
+ * 1. Prevent adjustments of font size after orientation changes in iOS.
15
+ */
16
+
17
+ html {
18
+ -webkit-text-size-adjust: 100%; /* 1 */
19
+ }
20
+
21
+ /* Sections
22
+ ========================================================================== */
23
+
24
+ /**
25
+ * Remove the margin in all browsers.
26
+ */
27
+
28
+ body {
29
+ margin: 0;
30
+ }
31
+
32
+ /**
33
+ * Render the `main` element consistently in IE.
34
+ */
35
+
36
+ main {
37
+ display: block;
38
+ }
39
+
40
+ /**
41
+ * Correct the font size and margin on `h1` elements within `section` and
42
+ * `article` contexts in Chrome, Firefox, and Safari.
43
+ */
44
+
45
+ h1 {
46
+ margin: 0.67em 0;
47
+ font-size: 2em;
48
+ }
49
+
50
+ /* Grouping content
51
+ ========================================================================== */
52
+
53
+ /**
54
+ * 1. Add the correct box sizing in Firefox.
55
+ */
56
+
57
+ hr {
58
+ box-sizing: content-box; /* 1 */
59
+ }
60
+
61
+ /**
62
+ * 1. Correct the inheritance and scaling of font size in all browsers.
63
+ * 2. Correct the odd `em` font sizing in all browsers.
64
+ */
65
+
66
+ pre {
67
+ font-size: 1em; /* 2 */
68
+ font-family: monospace, monospace; /* 1 */
69
+ }
70
+
71
+ /* Text-level semantics
72
+ ========================================================================== */
73
+
74
+ /**
75
+ * Remove the gray background on active links in IE 10.
76
+ */
77
+
78
+ a {
79
+ background-color: transparent;
80
+ }
81
+
82
+ /**
83
+ * 1. Remove the bottom border in Chrome 57-
84
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
85
+ */
86
+
87
+ abbr[title] {
88
+ border-bottom: none; /* 1 */
89
+ text-decoration: underline; /* 2 */
90
+ text-decoration: underline dotted; /* 2 */
91
+ }
92
+
93
+ /**
94
+ * Add the correct font weight in Chrome, Edge, and Safari.
95
+ */
96
+
97
+ b,
98
+ strong {
99
+ font-weight: bolder;
100
+ }
101
+
102
+ /**
103
+ * 1. Correct the inheritance and scaling of font size in all browsers.
104
+ * 2. Correct the odd `em` font sizing in all browsers.
105
+ */
106
+
107
+ code,
108
+ kbd,
109
+ samp {
110
+ font-size: 1em; /* 2 */
111
+ font-family: monospace, monospace; /* 1 */
112
+ }
113
+
114
+ /**
115
+ * Add the correct font size in all browsers.
116
+ */
117
+
118
+ small {
119
+ font-size: 80%;
120
+ }
121
+
122
+ /**
123
+ * Prevent `sub` and `sup` elements from affecting the line height in
124
+ * all browsers.
125
+ */
126
+
127
+ sub,
128
+ sup {
129
+ position: relative;
130
+ font-size: 75%;
131
+ line-height: 0;
132
+ vertical-align: baseline;
133
+ }
134
+
135
+ sub {
136
+ bottom: -0.25em;
137
+ }
138
+
139
+ sup {
140
+ top: -0.5em;
141
+ }
142
+
143
+ /* Embedded content
144
+ ========================================================================== */
145
+
146
+ /**
147
+ * Remove the border on images inside links in IE 10.
148
+ */
149
+
150
+ img {
151
+ border-style: none;
152
+ }
153
+
154
+ /* Forms
155
+ ========================================================================== */
156
+
157
+ /**
158
+ * 1. Change the font styles in all browsers.
159
+ * 2. Remove the margin in Firefox and Safari.
160
+ */
161
+
162
+ button,
163
+ input,
164
+ optgroup,
165
+ select,
166
+ textarea {
167
+ margin: 0; /* 2 */
168
+ font-size: 100%; /* 1 */
169
+ line-height: 1.15; /* 1 */
170
+ font-family: inherit; /* 1 */
171
+ }
172
+
173
+ /**
174
+ * Show the overflow in IE.
175
+ * 1. Show the overflow in Edge.
176
+ */
177
+
178
+ button,
179
+ input {
180
+ /* 1 */
181
+ overflow: visible;
182
+ }
183
+
184
+ /**
185
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
186
+ * 1. Remove the inheritance of text transform in Firefox.
187
+ */
188
+
189
+ button,
190
+ select {
191
+ /* 1 */
192
+ text-transform: none;
193
+ }
194
+
195
+ /**
196
+ * Correct the inability to style clickable types in iOS and Safari.
197
+ */
198
+
199
+ /* stylelint-disable declaration-property-value-keyword-no-deprecated -- Maintain stylesheet consistency */
200
+ button,
201
+ [type="button"],
202
+ [type="reset"],
203
+ [type="submit"] {
204
+ -webkit-appearance: button;
205
+ appearance: button;
206
+ }
207
+ /* stylelint-enable declaration-property-value-keyword-no-deprecated */
208
+
209
+ /**
210
+ * Remove the inner border and padding in Firefox.
211
+ */
212
+
213
+ button::-moz-focus-inner,
214
+ [type="button"]::-moz-focus-inner,
215
+ [type="reset"]::-moz-focus-inner,
216
+ [type="submit"]::-moz-focus-inner {
217
+ padding: 0;
218
+ border-style: none;
219
+ }
220
+
221
+ /**
222
+ * Restore the focus styles unset by the previous rule.
223
+ */
224
+
225
+ button:-moz-focusring,
226
+ [type="button"]:-moz-focusring,
227
+ [type="reset"]:-moz-focusring,
228
+ [type="submit"]:-moz-focusring {
229
+ outline: 1px dotted ButtonText;
230
+ }
231
+
232
+ /**
233
+ * Correct the padding in Firefox.
234
+ */
235
+
236
+ fieldset {
237
+ padding: 0.35em 0.75em 0.625em;
238
+ }
239
+
240
+ /**
241
+ * 1. Correct the text wrapping in Edge and IE.
242
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
243
+ * 3. Remove the padding so developers are not caught out when they zero out
244
+ * `fieldset` elements in all browsers.
245
+ */
246
+
247
+ legend {
248
+ display: table; /* 1 */
249
+ padding: 0; /* 3 */
250
+ color: inherit; /* 2 */
251
+ box-sizing: border-box; /* 1 */
252
+ max-width: 100%; /* 1 */
253
+ white-space: normal; /* 1 */
254
+ }
255
+
256
+ /**
257
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
258
+ */
259
+
260
+ progress {
261
+ vertical-align: baseline;
262
+ }
263
+
264
+ /**
265
+ * Remove the default vertical scrollbar in IE 10+.
266
+ */
267
+
268
+ textarea {
269
+ overflow: auto;
270
+ }
271
+
272
+ /**
273
+ * 1. Add the correct box sizing in IE 10.
274
+ * 2. Remove the padding in IE 10.
275
+ */
276
+
277
+ [type="checkbox"],
278
+ [type="radio"] {
279
+ padding: 0; /* 2 */
280
+ box-sizing: border-box; /* 1 */
281
+ }
282
+
283
+ /**
284
+ * Correct the cursor style of increment and decrement buttons in Chrome.
285
+ */
286
+
287
+ [type="number"]::-webkit-inner-spin-button,
288
+ [type="number"]::-webkit-outer-spin-button {
289
+ height: auto;
290
+ }
291
+
292
+ /**
293
+ * 1. Correct the odd appearance in Chrome and Safari.
294
+ * 2. Correct the outline style in Safari.
295
+ */
296
+
297
+ [type="search"] {
298
+ -webkit-appearance: textfield; /* 1 */
299
+ appearance: textfield; /* 1 */
300
+ outline-offset: -2px; /* 2 */
301
+ }
302
+
303
+ /**
304
+ * Remove the inner padding in Chrome and Safari on macOS.
305
+ */
306
+
307
+ [type="search"]::-webkit-search-decoration {
308
+ -webkit-appearance: none;
309
+ }
310
+
311
+ /**
312
+ * 1. Correct the inability to style clickable types in iOS and Safari.
313
+ * 2. Change font properties to `inherit` in Safari.
314
+ */
315
+
316
+ ::-webkit-file-upload-button {
317
+ font: inherit; /* 2 */
318
+ -webkit-appearance: button; /* 1 */
319
+ }
320
+
321
+ /* Interactive
322
+ ========================================================================== */
323
+
324
+ /*
325
+ * Add the correct display in Edge, IE 10+, and Firefox.
326
+ */
327
+
328
+ details {
329
+ display: block;
330
+ }
331
+
332
+ /*
333
+ * Add the correct display in all browsers.
334
+ */
335
+
336
+ summary {
337
+ display: list-item;
338
+ }
339
+
340
+ /* Misc
341
+ ========================================================================== */
342
+
343
+ /**
344
+ * Add the correct display in IE 10+.
345
+ */
346
+
347
+ template {
348
+ display: none;
349
+ }
@@ -0,0 +1,120 @@
1
+ /*! ==========================================================================
2
+ src/lib/styles/css/offline.css
3
+
4
+ SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
5
+ This file is part of Network Pro.
6
+ =========================================================================== */
7
+
8
+ html,
9
+ body {
10
+ height: 100%;
11
+ padding: 0;
12
+ margin: 0;
13
+ }
14
+
15
+ body {
16
+ display: flex;
17
+ justify-content: center;
18
+ align-items: center;
19
+ padding: 0 1rem;
20
+ margin: 10px;
21
+ color: #fafafa;
22
+ text-align: center;
23
+ background-color: #191919;
24
+ flex-direction: column;
25
+ font-family: Arial, Helvetica, sans-serif;
26
+ }
27
+
28
+ .container {
29
+ margin: 0 auto;
30
+ max-width: 600px;
31
+ }
32
+
33
+ h1 {
34
+ font-size: 2rem;
35
+ color: #fafafa;
36
+ margin-bottom: 1rem;
37
+ }
38
+
39
+ p {
40
+ font-size: 1.1rem;
41
+ line-height: 1.5;
42
+ margin-bottom: 1.5rem;
43
+ }
44
+
45
+ .icon {
46
+ font-size: 4rem;
47
+ color: #ff5252;
48
+ margin-bottom: 1rem;
49
+ }
50
+
51
+ .retry-button {
52
+ padding: 12px 24px;
53
+ border: none;
54
+ font-size: 1rem;
55
+ color: #fafafa;
56
+ background-color: #2e7d32;
57
+ transition: background-color 0.2s;
58
+ border-radius: 4px;
59
+ cursor: pointer;
60
+ font-family: Arial, Helvetica, sans-serif;
61
+ margin-top: 1rem;
62
+ }
63
+
64
+ .retry-button:hover {
65
+ background-color: #388e3c;
66
+ }
67
+
68
+ .status {
69
+ padding: 1rem;
70
+ margin: 1rem 0;
71
+ font-size: 0.9rem;
72
+ color: #bdbdbd;
73
+ background-color: rgba(255, 255, 255, 0.05);
74
+ border-radius: 4px;
75
+ }
76
+
77
+ /* Link styles from the user's CSS */
78
+ a {
79
+ text-decoration: none;
80
+ }
81
+
82
+ /* unvisited link */
83
+ a:link {
84
+ color: #ffc627;
85
+ }
86
+
87
+ /* mouse over link */
88
+ a:hover {
89
+ color: #ffc627;
90
+ text-decoration: underline;
91
+ }
92
+
93
+ /* selected link */
94
+ a:active {
95
+ color: #ffc627;
96
+ text-decoration: underline;
97
+ }
98
+
99
+ /* focused link */
100
+ a:focus {
101
+ color: #191919; /* Black text when focused */
102
+ background-color: #ffc627; /* Gold background when focused */
103
+ }
104
+
105
+ /* visited link */
106
+ a:visited {
107
+ color: #7f6227;
108
+ }
109
+
110
+ /* visited and mouse over */
111
+ a:visited:hover {
112
+ color: #7f6227;
113
+ }
114
+
115
+ /* For the help text with link */
116
+ .help-text {
117
+ font-size: 0.9rem;
118
+ color: #bdbdbd;
119
+ margin-top: 2rem;
120
+ }
@@ -0,0 +1,6 @@
1
+ /*!
2
+ * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2024 Fonticons, Inc.
5
+ */
6
+ :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}