@networkpro/blog 1.2.6 → 1.2.7
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/CHANGELOG.md +48 -0
- package/CHANGELOG.template.md +64 -0
- package/cspell.json +1 -0
- package/package.json +4 -4
- package/src/img/cryptomator-promo.png +0 -0
- package/src/img/cryptomator-promo.webp +0 -0
- package/src/posts/2025-06-16-cryptomator.md +73 -0
- package/src/sitemap.xml +26 -2
- package/src/stylesheets/default.css +0 -475
- package/src/stylesheets/global.css +0 -11
- package/src/stylesheets/normalize.css +0 -369
- package/src/stylesheets/style.css +0 -315
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
<!-- markdownlint-disable MD024 -->
|
|
4
|
+
|
|
5
|
+
<!-- Use sections: Added, Changed, Deprecated, Removed, Fixed, Security -->
|
|
6
|
+
|
|
7
|
+
All notable changes to this project will be documented in this file.
|
|
8
|
+
|
|
9
|
+
This project attempts to follow
|
|
10
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), though versioning and
|
|
11
|
+
formatting may vary.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## [Unreleased]
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## [1.2.7] - 2025-06-16
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- Introduced `CHANGELOG.md` and `CHANGELOG.template.md` to begin structured
|
|
24
|
+
change tracking for the blog repository
|
|
25
|
+
- Added new post: _FOSS Spotlight: Cryptomator_ (`2025-06-16-cryptomator.md`)
|
|
26
|
+
- Included associated promotional images: `cryptomator-promo.png` and
|
|
27
|
+
`cryptomator-promo.webp`
|
|
28
|
+
- Added `check-codeql.yml` reusable workflow for static analysis
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Updated VS Code workspace settings (`.vscode/settings.json`) to disable
|
|
33
|
+
Markdown validation via `"markdown.validate.enabled": false,`
|
|
34
|
+
- Replaced inline `check-codeql` job in `build-and-deploy.yml` with call to new
|
|
35
|
+
reusable workflow
|
|
36
|
+
- Updated links in `sitemap.xml` to reflect current posts and site structure
|
|
37
|
+
|
|
38
|
+
### Removed
|
|
39
|
+
|
|
40
|
+
- Deleted unused stylesheets: `default.css`, `global.css`, `normalize.css`, and
|
|
41
|
+
`style.css`
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
<!-- Link references -->
|
|
46
|
+
|
|
47
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.2.7...HEAD
|
|
48
|
+
[1.2.7]: https://github.com/netwk-pro/blog/releases/tag/v1.2.7
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
<!-- markdownlint-disable -->
|
|
4
|
+
|
|
5
|
+
All notable changes to this project will be documented in this file.
|
|
6
|
+
|
|
7
|
+
This project adheres to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
8
|
+
and uses [Semantic Versioning](https://semver.org/).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## [Unreleased]
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- _(Describe new features or significant additions)_
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- _(Describe updates or breaking changes to existing behavior)_
|
|
21
|
+
|
|
22
|
+
### Deprecated
|
|
23
|
+
|
|
24
|
+
- _(Note anything slated for removal in the future)_
|
|
25
|
+
|
|
26
|
+
### Removed
|
|
27
|
+
|
|
28
|
+
- _(List features, APIs, or code that has been removed)_
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- _(Detail bug fixes or patches)_
|
|
33
|
+
|
|
34
|
+
### Security
|
|
35
|
+
|
|
36
|
+
- _(Note any vulnerabilities addressed)_
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## [x.y.z] – YYYY-MM-DD
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- ...
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
|
|
48
|
+
- ...
|
|
49
|
+
|
|
50
|
+
### Deprecated
|
|
51
|
+
|
|
52
|
+
- ...
|
|
53
|
+
|
|
54
|
+
### Removed
|
|
55
|
+
|
|
56
|
+
- ...
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- ...
|
|
61
|
+
|
|
62
|
+
### Security
|
|
63
|
+
|
|
64
|
+
- ...
|
package/cspell.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -49,16 +49,16 @@
|
|
|
49
49
|
"upgrade": "npx npm-check-updates -u"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@eslint/js": "^9.
|
|
52
|
+
"@eslint/js": "^9.29.0",
|
|
53
53
|
"@eslint/json": "^0.12.0",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
55
|
"browserslist": "^4.25.0",
|
|
56
|
-
"eslint": "^9.
|
|
56
|
+
"eslint": "^9.29.0",
|
|
57
57
|
"eslint-config-prettier": "^10.1.5",
|
|
58
58
|
"globals": "^16.2.0",
|
|
59
59
|
"markdownlint": "^0.38.0",
|
|
60
60
|
"markdownlint-cli2": "^0.18.1",
|
|
61
|
-
"postcss": "^8.5.
|
|
61
|
+
"postcss": "^8.5.6",
|
|
62
62
|
"prettier": "3.5.3",
|
|
63
63
|
"stylelint": "^16.20.0",
|
|
64
64
|
"stylelint-config-html": "^1.1.0",
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-06-16
|
|
4
|
+
title: 'FOSS Spotlight: Cryptomator'
|
|
5
|
+
summary: 'FOSS Spotlight: Cryptomator - Vault Up Your Cloud Privacy'
|
|
6
|
+
authors:
|
|
7
|
+
- team
|
|
8
|
+
categories:
|
|
9
|
+
- Open-Source
|
|
10
|
+
- Privacy
|
|
11
|
+
- Security
|
|
12
|
+
- Android
|
|
13
|
+
- Windows
|
|
14
|
+
- Linux
|
|
15
|
+
tags:
|
|
16
|
+
- foss-spotlight
|
|
17
|
+
- open-source
|
|
18
|
+
- privacy
|
|
19
|
+
- security
|
|
20
|
+
- android
|
|
21
|
+
- windows
|
|
22
|
+
- linux
|
|
23
|
+
- cryptomator
|
|
24
|
+
- encryption
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# 🔦 FOSS Spotlight: Cryptomator
|
|
28
|
+
|
|
29
|
+
## Vault Up Your Cloud Privacy
|
|
30
|
+
|
|
31
|
+
Tired of feeling like your cloud files are just floating out there, unprotected?
|
|
32
|
+
Say hello to **Cryptomator**—your personal vault for keeping sensitive data safe
|
|
33
|
+
in the cloud, _without giving up open-source freedom_.
|
|
34
|
+
|
|
35
|
+
🛡️ **Cryptomator** provides transparent client-side encryption for your cloud
|
|
36
|
+
storage. Whether you're using Google Drive, Dropbox, OneDrive or another
|
|
37
|
+
service, Cryptomator keeps your files **encrypted and private**—before they even
|
|
38
|
+
leave your device.
|
|
39
|
+
|
|
40
|
+
<!-- more -->
|
|
41
|
+
|
|
42
|
+
📋 Why Cryptomator stands out:
|
|
43
|
+
🔐 **Zero-knowledge encryption**—not even Cryptomator can access your data
|
|
44
|
+
🆓 **Completely free and open-source** (GPLv3)
|
|
45
|
+
💻 **Cross-platform** – Windows, macOS, Linux, iOS & Android
|
|
46
|
+
📂 **Folder-level encryption** integrated with your file system
|
|
47
|
+
💬 **No account needed**, no tracking, no ads
|
|
48
|
+
|
|
49
|
+
📈 Why privacy-conscious users are switching:
|
|
50
|
+
✅ **User-friendly interface**
|
|
51
|
+
✅ **End-to-end encryption** without needing to trust any cloud provider
|
|
52
|
+
✅ **Community-driven** with regular updates
|
|
53
|
+
✅ **Works with any cloud provider**
|
|
54
|
+
✅ **100% local key management**
|
|
55
|
+
|
|
56
|
+
Your cloud deserves more than blind trust. Cryptomator empowers you to _own your
|
|
57
|
+
data_ with ease and elegance.
|
|
58
|
+
|
|
59
|
+
🔗 Learn more and secure your files with Cryptomator:
|
|
60
|
+
Official Site: [cryptomator.org](https://cryptomator.org)
|
|
61
|
+
GitHub: [github.com/cryptomator/cryptomator](https://github.com/cryptomator/cryptomator)
|
|
62
|
+
|
|
63
|
+
> Your digital freedom matters. That’s why we share tools like Cryptomator each
|
|
64
|
+
> week in our FOSS Spotlight series.
|
|
65
|
+
> Keep exploring with us and take control of your tech future!
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
<figure class="poster-figure">
|
|
70
|
+
<source srcset="/img/cryptomator-promo.webp" type="image/webp" />
|
|
71
|
+
<img src="/img/cryptomator-promo.png" alt="FOSS Spotlight: Cryptomator" style="width: 60%; height: 60%;">
|
|
72
|
+
<figcaption>FOSS Spotlight: Cryptomator – featured visual</figcaption>
|
|
73
|
+
</figure>
|
package/src/sitemap.xml
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<loc>https://blog.netwk.pro</loc>
|
|
9
9
|
|
|
10
|
-
<lastmod>2025-06-
|
|
10
|
+
<lastmod>2025-06-12</lastmod>
|
|
11
11
|
|
|
12
12
|
<changefreq>weekly</changefreq>
|
|
13
13
|
|
|
@@ -15,6 +15,30 @@
|
|
|
15
15
|
|
|
16
16
|
</url>
|
|
17
17
|
|
|
18
|
+
<url>
|
|
19
|
+
|
|
20
|
+
<loc>https://blog.netwk.pro/2025/06/12/whats-a-backdoor-in-encryption/</loc>
|
|
21
|
+
|
|
22
|
+
<lastmod>2025-06-12</lastmod>
|
|
23
|
+
|
|
24
|
+
<changefreq>monthly</changefreq>
|
|
25
|
+
|
|
26
|
+
<priority>0.8</priority>
|
|
27
|
+
|
|
28
|
+
</url>
|
|
29
|
+
|
|
30
|
+
<url>
|
|
31
|
+
|
|
32
|
+
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight---squircle-ce/</loc>
|
|
33
|
+
|
|
34
|
+
<lastmod>2025-06-12</lastmod>
|
|
35
|
+
|
|
36
|
+
<changefreq>monthly</changefreq>
|
|
37
|
+
|
|
38
|
+
<priority>0.8</priority>
|
|
39
|
+
|
|
40
|
+
</url>
|
|
41
|
+
|
|
18
42
|
<url>
|
|
19
43
|
|
|
20
44
|
<loc>https://blog.netwk.pro/2025/06/03/google-gemini-now-reads-your-emails-heres-why-you-should-switch/</loc>
|
|
@@ -47,7 +71,7 @@
|
|
|
47
71
|
|
|
48
72
|
<changefreq>monthly</changefreq>
|
|
49
73
|
|
|
50
|
-
<priority>0.
|
|
74
|
+
<priority>0.7</priority>
|
|
51
75
|
|
|
52
76
|
</url>
|
|
53
77
|
|
|
@@ -1,475 +0,0 @@
|
|
|
1
|
-
/*! ==========================================================================
|
|
2
|
-
src/stylesheets/default.css
|
|
3
|
-
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
-
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
-
This file is part of Network Pro.
|
|
7
|
-
=========================================================================== */
|
|
8
|
-
|
|
9
|
-
/* ===========================================================================
|
|
10
|
-
Document Spacing
|
|
11
|
-
=========================================================================== */
|
|
12
|
-
|
|
13
|
-
/* Ensures backgrounds scale up to 1920px but stop expanding beyond */
|
|
14
|
-
.full-width-section {
|
|
15
|
-
width: 100%;
|
|
16
|
-
margin: 0 auto; /* Centers background */
|
|
17
|
-
background-position: center;
|
|
18
|
-
background-size: cover;
|
|
19
|
-
max-width: 1920px;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* Content container constrained to 1200px */
|
|
23
|
-
.container {
|
|
24
|
-
padding: 0 12px; /* Half of gutter for balance */
|
|
25
|
-
margin: 0 auto;
|
|
26
|
-
max-width: 1200px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/* Header & Footer follow the same container width */
|
|
30
|
-
header,
|
|
31
|
-
footer {
|
|
32
|
-
width: 100%;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
header .container,
|
|
36
|
-
footer .container {
|
|
37
|
-
padding: 20px 12px;
|
|
38
|
-
margin: 0 auto;
|
|
39
|
-
max-width: 1200px;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/* ===========================================================================
|
|
43
|
-
Responsive Tables
|
|
44
|
-
=========================================================================== */
|
|
45
|
-
|
|
46
|
-
/* github table */
|
|
47
|
-
.gh {
|
|
48
|
-
margin: 0 auto;
|
|
49
|
-
border-collapse: collapse;
|
|
50
|
-
border-spacing: 0;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.gh td {
|
|
54
|
-
padding: 10px 5px;
|
|
55
|
-
border-collapse: collapse;
|
|
56
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
57
|
-
overflow: hidden;
|
|
58
|
-
word-break: normal;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.gh th {
|
|
62
|
-
padding: 10px 5px;
|
|
63
|
-
border-collapse: collapse;
|
|
64
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
65
|
-
overflow: hidden;
|
|
66
|
-
word-break: normal;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.gh .gh-tcell {
|
|
70
|
-
text-align: center;
|
|
71
|
-
vertical-align: middle;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
@media screen and (width <= 767px) {
|
|
75
|
-
.gh {
|
|
76
|
-
width: auto !important;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.gh col {
|
|
80
|
-
width: auto !important;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.gh-wrap {
|
|
84
|
-
margin: auto 0;
|
|
85
|
-
-webkit-overflow-scrolling: touch;
|
|
86
|
-
overflow-x: auto;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/* social media table */
|
|
91
|
-
.soc {
|
|
92
|
-
margin: 0 auto;
|
|
93
|
-
border-collapse: collapse;
|
|
94
|
-
border-spacing: 0;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.soc td {
|
|
98
|
-
padding: 8px;
|
|
99
|
-
border-collapse: collapse;
|
|
100
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
101
|
-
overflow: hidden;
|
|
102
|
-
word-break: normal;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.soc th {
|
|
106
|
-
padding: 8px;
|
|
107
|
-
border-collapse: collapse;
|
|
108
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
109
|
-
overflow: hidden;
|
|
110
|
-
word-break: normal;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.soc .soc-fa {
|
|
114
|
-
text-align: center;
|
|
115
|
-
vertical-align: middle;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
@media screen and (width <= 767px) {
|
|
119
|
-
.soc {
|
|
120
|
-
width: auto !important;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.soc col {
|
|
124
|
-
width: auto !important;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.soc-wrap {
|
|
128
|
-
margin: auto 0;
|
|
129
|
-
-webkit-overflow-scrolling: touch;
|
|
130
|
-
overflow-x: auto;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.foss {
|
|
135
|
-
border-collapse: collapse;
|
|
136
|
-
border-spacing: 0;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.foss td {
|
|
140
|
-
padding: 10px 5px;
|
|
141
|
-
border-collapse: collapse;
|
|
142
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
143
|
-
overflow: hidden;
|
|
144
|
-
word-break: normal;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.foss th {
|
|
148
|
-
padding: 10px 5px;
|
|
149
|
-
border-collapse: collapse;
|
|
150
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
151
|
-
overflow: hidden;
|
|
152
|
-
word-break: normal;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.foss .foss-cell {
|
|
156
|
-
text-align: center;
|
|
157
|
-
vertical-align: middle;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
@media screen and (width <= 767px) {
|
|
161
|
-
.foss {
|
|
162
|
-
width: auto !important;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.foss col {
|
|
166
|
-
width: auto !important;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.foss-wrap {
|
|
170
|
-
-webkit-overflow-scrolling: touch;
|
|
171
|
-
overflow-x: auto;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.bnav {
|
|
176
|
-
margin: 0 auto;
|
|
177
|
-
border-collapse: collapse;
|
|
178
|
-
border-spacing: 0;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.bnav td {
|
|
182
|
-
padding: 10px;
|
|
183
|
-
font-size: 0.875rem;
|
|
184
|
-
font-weight: bold;
|
|
185
|
-
line-height: 1.125rem;
|
|
186
|
-
border-style: none;
|
|
187
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
188
|
-
overflow: hidden;
|
|
189
|
-
word-break: normal;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.bnav th {
|
|
193
|
-
padding: 10px;
|
|
194
|
-
font-size: 0.875rem;
|
|
195
|
-
line-height: 1.125rem;
|
|
196
|
-
border-style: none;
|
|
197
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
198
|
-
overflow: hidden;
|
|
199
|
-
word-break: normal;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.bnav .bnav-cell {
|
|
203
|
-
text-align: center;
|
|
204
|
-
align-content: center;
|
|
205
|
-
vertical-align: middle;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
@media screen and (width <= 767px) {
|
|
209
|
-
.bnav {
|
|
210
|
-
width: auto !important;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.bnav col {
|
|
214
|
-
width: auto !important;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.bnav-wrap {
|
|
218
|
-
margin: auto 0;
|
|
219
|
-
-webkit-overflow-scrolling: touch;
|
|
220
|
-
overflow-x: auto;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
.bnav2 {
|
|
225
|
-
margin: 0 auto;
|
|
226
|
-
border-collapse: collapse;
|
|
227
|
-
border-spacing: 0;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.bnav2 td {
|
|
231
|
-
padding: 10px;
|
|
232
|
-
font-size: 0.875rem;
|
|
233
|
-
font-weight: bold;
|
|
234
|
-
line-height: 1.125rem;
|
|
235
|
-
border-style: none;
|
|
236
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
237
|
-
overflow: hidden;
|
|
238
|
-
word-break: normal;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
.bnav2 th {
|
|
242
|
-
padding: 12px;
|
|
243
|
-
font-size: 0.875rem;
|
|
244
|
-
line-height: 1.125rem;
|
|
245
|
-
border-style: none;
|
|
246
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
247
|
-
overflow: hidden;
|
|
248
|
-
word-break: normal;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.bnav2 .bnav2-cell {
|
|
252
|
-
text-align: center;
|
|
253
|
-
align-content: center;
|
|
254
|
-
vertical-align: middle;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
@media screen and (width <= 767px) {
|
|
258
|
-
.bnav2 {
|
|
259
|
-
width: auto !important;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.bnav2 col {
|
|
263
|
-
width: auto !important;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.bnav2-wrap {
|
|
267
|
-
margin: auto 0;
|
|
268
|
-
-webkit-overflow-scrolling: touch;
|
|
269
|
-
overflow-x: auto;
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.pgp {
|
|
274
|
-
margin: 0 auto;
|
|
275
|
-
border-collapse: collapse;
|
|
276
|
-
border-spacing: 0;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.pgp td {
|
|
280
|
-
padding: 10px;
|
|
281
|
-
font-size: 0.875rem;
|
|
282
|
-
line-height: 1.125rem;
|
|
283
|
-
border-style: none;
|
|
284
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
285
|
-
overflow: hidden;
|
|
286
|
-
word-break: normal;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.pgp th {
|
|
290
|
-
padding: 10px;
|
|
291
|
-
font-size: 0.875rem;
|
|
292
|
-
line-height: 1.125rem;
|
|
293
|
-
border-color: black;
|
|
294
|
-
border-style: solid;
|
|
295
|
-
border-width: 1px;
|
|
296
|
-
font-family: Arial, sans-serif;
|
|
297
|
-
overflow: hidden;
|
|
298
|
-
word-break: normal;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
.pgp .pgp-col1 {
|
|
302
|
-
text-align: right;
|
|
303
|
-
padding-right: 1rem; /* Add spacing between columns */
|
|
304
|
-
vertical-align: middle;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.pgp .pgp-col2 {
|
|
308
|
-
text-align: left;
|
|
309
|
-
padding-left: 1rem; /* Add spacing between columns */
|
|
310
|
-
vertical-align: middle;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
@media screen and (width <= 767px) {
|
|
314
|
-
.pgp {
|
|
315
|
-
width: auto !important;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.pgp col {
|
|
319
|
-
width: auto !important;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.pgp-wrap {
|
|
323
|
-
margin: auto 0;
|
|
324
|
-
margin-top: 2rem;
|
|
325
|
-
-webkit-overflow-scrolling: touch;
|
|
326
|
-
overflow-x: auto;
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
/* ===========================================================================
|
|
331
|
-
Custom CSS
|
|
332
|
-
=========================================================================== */
|
|
333
|
-
|
|
334
|
-
.logo {
|
|
335
|
-
display: block;
|
|
336
|
-
margin-left: auto;
|
|
337
|
-
margin-right: auto;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.index-title1 {
|
|
341
|
-
font-weight: bold;
|
|
342
|
-
text-align: center;
|
|
343
|
-
font-style: italic;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
.index-title2 {
|
|
347
|
-
font-size: 1.25rem;
|
|
348
|
-
line-height: 1.625rem;
|
|
349
|
-
letter-spacing: -0.015em;
|
|
350
|
-
text-align: center;
|
|
351
|
-
font-variant: small-caps;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.index1 {
|
|
355
|
-
font-weight: bold;
|
|
356
|
-
line-height: 2.125rem;
|
|
357
|
-
letter-spacing: -0.035em;
|
|
358
|
-
text-align: center;
|
|
359
|
-
font-style: italic;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.index2 {
|
|
363
|
-
font-size: 1.5rem;
|
|
364
|
-
line-height: 1.75rem;
|
|
365
|
-
letter-spacing: -0.035em;
|
|
366
|
-
text-align: center;
|
|
367
|
-
font-variant: small-caps;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
.index3 {
|
|
371
|
-
font-size: 1.5rem;
|
|
372
|
-
line-height: 1.75rem;
|
|
373
|
-
letter-spacing: -0.035em;
|
|
374
|
-
text-align: center;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
.subhead {
|
|
378
|
-
font-size: 1.5rem;
|
|
379
|
-
line-height: 1.75rem;
|
|
380
|
-
letter-spacing: -0.035em;
|
|
381
|
-
font-variant: small-caps;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.bolditalic {
|
|
385
|
-
font-weight: bold;
|
|
386
|
-
font-style: italic;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.bquote {
|
|
390
|
-
border-left: 3px solid #9e9e9e;
|
|
391
|
-
font-style: italic;
|
|
392
|
-
margin-left: 30px;
|
|
393
|
-
padding-left: 10px;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.small-text {
|
|
397
|
-
font-size: 0.75rem;
|
|
398
|
-
line-height: 1.125rem;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.large-text-center {
|
|
402
|
-
font-size: 1.25rem;
|
|
403
|
-
line-height: 1.75rem;
|
|
404
|
-
text-align: center;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.join {
|
|
408
|
-
font-weight: bold;
|
|
409
|
-
text-align: center;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.prewrap {
|
|
413
|
-
display: block;
|
|
414
|
-
white-space: pre-wrap;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.emphasis {
|
|
418
|
-
font-weight: bold;
|
|
419
|
-
font-style: italic;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
.hr-styled {
|
|
423
|
-
width: 75%;
|
|
424
|
-
margin: auto;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.center-text {
|
|
428
|
-
text-align: center;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.copyright {
|
|
432
|
-
font-size: 0.75rem;
|
|
433
|
-
line-height: 1.125rem;
|
|
434
|
-
text-align: center;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.visited {
|
|
438
|
-
color: #7f6227;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
.center-nav {
|
|
442
|
-
padding: 5px;
|
|
443
|
-
font-size: 0.875rem;
|
|
444
|
-
line-height: 1.125rem;
|
|
445
|
-
text-align: center;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
/* code block for legal text */
|
|
449
|
-
.block {
|
|
450
|
-
width: 100%;
|
|
451
|
-
border: none;
|
|
452
|
-
font-size: 0.75rem;
|
|
453
|
-
line-height: 1.125rem;
|
|
454
|
-
background: none;
|
|
455
|
-
border-radius: 0;
|
|
456
|
-
outline: none;
|
|
457
|
-
resize: none;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.fingerprint {
|
|
461
|
-
display: block;
|
|
462
|
-
font-weight: bold;
|
|
463
|
-
white-space: pre-line; /* Ensures newlines are respected for "\n" */
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.pgp-image {
|
|
467
|
-
width: 125px;
|
|
468
|
-
height: 125px;
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.spacer {
|
|
472
|
-
margin: 2rem 0;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
/* cspell:ignore bolditalic tcell bquote prewrap imgtext */
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/*! ==========================================================================
|
|
2
|
-
src/stylesheets/global.css
|
|
3
|
-
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
-
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
-
This file is part of Network Pro.
|
|
7
|
-
=========================================================================== */
|
|
8
|
-
|
|
9
|
-
@import './normalize.css';
|
|
10
|
-
@import './style.css';
|
|
11
|
-
@import './default.css';
|
|
@@ -1,369 +0,0 @@
|
|
|
1
|
-
/* ===========================================================================
|
|
2
|
-
src/stylesheets/normalize.css
|
|
3
|
-
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
-
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
-
This file is part of Network Pro.
|
|
7
|
-
=========================================================================== */
|
|
8
|
-
|
|
9
|
-
/*! Modified from normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
10
|
-
|
|
11
|
-
/* Document
|
|
12
|
-
========================================================================== */
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* 1. Correct the line height in all browsers. CONFLICTS WITH STYLE.CSS
|
|
16
|
-
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
html {
|
|
20
|
-
/* line-height: 1.15; /* 1 */
|
|
21
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/* Sections
|
|
25
|
-
========================================================================== */
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Remove the margin in all browsers.
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
|
-
body {
|
|
32
|
-
margin: 0;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* Render the `main` element consistently in IE.
|
|
37
|
-
*/
|
|
38
|
-
|
|
39
|
-
main {
|
|
40
|
-
display: block;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* Correct the font size and margin on `h1` elements within `section` and
|
|
45
|
-
* `article` contexts in Chrome, Firefox, and Safari.
|
|
46
|
-
*/
|
|
47
|
-
|
|
48
|
-
h1 {
|
|
49
|
-
margin: 0.67em 0;
|
|
50
|
-
font-size: 2em;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/* Grouping content
|
|
54
|
-
========================================================================== */
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* 1. Add the correct box sizing in Firefox.
|
|
58
|
-
* 2. Show the overflow in Edge and IE. CONFLICTS WITH STYLE.CSS
|
|
59
|
-
*/
|
|
60
|
-
|
|
61
|
-
hr {
|
|
62
|
-
box-sizing: content-box; /* 1 */
|
|
63
|
-
|
|
64
|
-
/* height: 0; /* CONFLICTS /* 1 */
|
|
65
|
-
|
|
66
|
-
/* overflow: visible; /* 2 */
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/**
|
|
70
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
71
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
72
|
-
*/
|
|
73
|
-
|
|
74
|
-
pre {
|
|
75
|
-
font-size: 1em; /* 2 */
|
|
76
|
-
font-family: monospace, monospace; /* 1 */
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
/* Text-level semantics
|
|
80
|
-
========================================================================== */
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* Remove the gray background on active links in IE 10.
|
|
84
|
-
*/
|
|
85
|
-
|
|
86
|
-
a {
|
|
87
|
-
background-color: transparent;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* 1. Remove the bottom border in Chrome 57-
|
|
92
|
-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
|
-
abbr[title] {
|
|
96
|
-
border-bottom: none; /* 1 */
|
|
97
|
-
text-decoration: underline; /* 2 */
|
|
98
|
-
text-decoration: underline dotted; /* 2 */
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
/**
|
|
102
|
-
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
103
|
-
*/
|
|
104
|
-
|
|
105
|
-
b,
|
|
106
|
-
strong {
|
|
107
|
-
font-weight: bolder;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
/**
|
|
111
|
-
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
112
|
-
* 2. Correct the odd `em` font sizing in all browsers.
|
|
113
|
-
*/
|
|
114
|
-
|
|
115
|
-
code,
|
|
116
|
-
kbd,
|
|
117
|
-
samp {
|
|
118
|
-
font-size: 1em; /* 2 */
|
|
119
|
-
font-family: monospace, monospace; /* 1 */
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Add the correct font size in all browsers.
|
|
124
|
-
*/
|
|
125
|
-
|
|
126
|
-
small {
|
|
127
|
-
font-size: 80%;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/**
|
|
131
|
-
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
132
|
-
* all browsers.
|
|
133
|
-
*/
|
|
134
|
-
|
|
135
|
-
sub,
|
|
136
|
-
sup {
|
|
137
|
-
position: relative;
|
|
138
|
-
font-size: 75%;
|
|
139
|
-
line-height: 0;
|
|
140
|
-
vertical-align: baseline;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
sub {
|
|
144
|
-
bottom: -0.25em;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
sup {
|
|
148
|
-
top: -0.5em;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
/* Embedded content
|
|
152
|
-
========================================================================== */
|
|
153
|
-
|
|
154
|
-
/**
|
|
155
|
-
* Remove the border on images inside links in IE 10.
|
|
156
|
-
*/
|
|
157
|
-
|
|
158
|
-
img {
|
|
159
|
-
border-style: none;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/* Forms
|
|
163
|
-
========================================================================== */
|
|
164
|
-
|
|
165
|
-
/**
|
|
166
|
-
* 1. Change the font styles in all browsers.
|
|
167
|
-
* 2. Remove the margin in Firefox and Safari.
|
|
168
|
-
*/
|
|
169
|
-
|
|
170
|
-
button,
|
|
171
|
-
input,
|
|
172
|
-
optgroup,
|
|
173
|
-
select,
|
|
174
|
-
textarea {
|
|
175
|
-
margin: 0; /* 2 */
|
|
176
|
-
font-size: 100%; /* 1 */
|
|
177
|
-
line-height: 1.15; /* 1 */
|
|
178
|
-
font-family: inherit; /* 1 */
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* Show the overflow in IE.
|
|
183
|
-
* 1. Show the overflow in Edge.
|
|
184
|
-
*/
|
|
185
|
-
|
|
186
|
-
button,
|
|
187
|
-
input {
|
|
188
|
-
/* 1 */
|
|
189
|
-
overflow: visible;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
/**
|
|
193
|
-
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
194
|
-
* 1. Remove the inheritance of text transform in Firefox.
|
|
195
|
-
*/
|
|
196
|
-
|
|
197
|
-
button,
|
|
198
|
-
select {
|
|
199
|
-
/* 1 */
|
|
200
|
-
text-transform: none;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
/**
|
|
204
|
-
* Correct the inability to style clickable types in iOS and Safari.
|
|
205
|
-
*/
|
|
206
|
-
|
|
207
|
-
/* stylelint-disable declaration-property-value-keyword-no-deprecated -- Maintain stylesheet consistency */
|
|
208
|
-
button,
|
|
209
|
-
[type='button'],
|
|
210
|
-
[type='reset'],
|
|
211
|
-
[type='submit'] {
|
|
212
|
-
-webkit-appearance: button;
|
|
213
|
-
appearance: button;
|
|
214
|
-
}
|
|
215
|
-
/* stylelint-enable declaration-property-value-keyword-no-deprecated */
|
|
216
|
-
|
|
217
|
-
/**
|
|
218
|
-
* Remove the inner border and padding in Firefox.
|
|
219
|
-
*/
|
|
220
|
-
|
|
221
|
-
button::-moz-focus-inner,
|
|
222
|
-
[type='button']::-moz-focus-inner,
|
|
223
|
-
[type='reset']::-moz-focus-inner,
|
|
224
|
-
[type='submit']::-moz-focus-inner {
|
|
225
|
-
padding: 0;
|
|
226
|
-
border-style: none;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
/**
|
|
230
|
-
* Restore the focus styles unset by the previous rule.
|
|
231
|
-
*/
|
|
232
|
-
|
|
233
|
-
button:-moz-focusring,
|
|
234
|
-
[type='button']:-moz-focusring,
|
|
235
|
-
[type='reset']:-moz-focusring,
|
|
236
|
-
[type='submit']:-moz-focusring {
|
|
237
|
-
outline: 1px dotted ButtonText;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
/**
|
|
241
|
-
* Correct the padding in Firefox.
|
|
242
|
-
*/
|
|
243
|
-
|
|
244
|
-
fieldset {
|
|
245
|
-
padding: 0.35em 0.75em 0.625em;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
/**
|
|
249
|
-
* 1. Correct the text wrapping in Edge and IE.
|
|
250
|
-
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
251
|
-
* 3. Remove the padding so developers are not caught out when they zero out
|
|
252
|
-
* `fieldset` elements in all browsers.
|
|
253
|
-
*/
|
|
254
|
-
|
|
255
|
-
legend {
|
|
256
|
-
display: table; /* 1 */
|
|
257
|
-
padding: 0; /* 3 */
|
|
258
|
-
color: inherit; /* 2 */
|
|
259
|
-
box-sizing: border-box; /* 1 */
|
|
260
|
-
max-width: 100%; /* 1 */
|
|
261
|
-
white-space: normal; /* 1 */
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
/**
|
|
265
|
-
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
266
|
-
*/
|
|
267
|
-
|
|
268
|
-
progress {
|
|
269
|
-
vertical-align: baseline;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
/**
|
|
273
|
-
* Remove the default vertical scrollbar in IE 10+.
|
|
274
|
-
*/
|
|
275
|
-
|
|
276
|
-
textarea {
|
|
277
|
-
overflow: auto;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
/**
|
|
281
|
-
* 1. Add the correct box sizing in IE 10.
|
|
282
|
-
* 2. Remove the padding in IE 10.
|
|
283
|
-
*/
|
|
284
|
-
|
|
285
|
-
[type='checkbox'],
|
|
286
|
-
[type='radio'] {
|
|
287
|
-
padding: 0; /* 2 */
|
|
288
|
-
box-sizing: border-box; /* 1 */
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
/**
|
|
292
|
-
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
293
|
-
*/
|
|
294
|
-
|
|
295
|
-
[type='number']::-webkit-inner-spin-button,
|
|
296
|
-
[type='number']::-webkit-outer-spin-button {
|
|
297
|
-
height: auto;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
/**
|
|
301
|
-
* 1. Correct the odd appearance in Chrome and Safari.
|
|
302
|
-
* 2. Correct the outline style in Safari.
|
|
303
|
-
*/
|
|
304
|
-
|
|
305
|
-
[type='search'] {
|
|
306
|
-
-webkit-appearance: textfield; /* 1 */
|
|
307
|
-
appearance: textfield; /* 1 */
|
|
308
|
-
outline-offset: -2px; /* 2 */
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
/**
|
|
312
|
-
* Remove the inner padding in Chrome and Safari on macOS.
|
|
313
|
-
*/
|
|
314
|
-
|
|
315
|
-
[type='search']::-webkit-search-decoration {
|
|
316
|
-
-webkit-appearance: none;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
/**
|
|
320
|
-
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
321
|
-
* 2. Change font properties to `inherit` in Safari.
|
|
322
|
-
*/
|
|
323
|
-
|
|
324
|
-
::-webkit-file-upload-button {
|
|
325
|
-
font: inherit; /* 2 */
|
|
326
|
-
-webkit-appearance: button; /* 1 */
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
/* Interactive
|
|
330
|
-
========================================================================== */
|
|
331
|
-
|
|
332
|
-
/*
|
|
333
|
-
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
334
|
-
*/
|
|
335
|
-
|
|
336
|
-
details {
|
|
337
|
-
display: block;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
/*
|
|
341
|
-
* Add the correct display in all browsers.
|
|
342
|
-
*/
|
|
343
|
-
|
|
344
|
-
summary {
|
|
345
|
-
display: list-item;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
/* Misc
|
|
349
|
-
========================================================================== */
|
|
350
|
-
|
|
351
|
-
/**
|
|
352
|
-
* Add the correct display in IE 10+.
|
|
353
|
-
*/
|
|
354
|
-
|
|
355
|
-
template {
|
|
356
|
-
display: none;
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
/**
|
|
360
|
-
* CONFLICTS WITH STYLE.CSS
|
|
361
|
-
* Add the correct display in IE 10.
|
|
362
|
-
*/
|
|
363
|
-
|
|
364
|
-
/*
|
|
365
|
-
[hidden] {
|
|
366
|
-
display: none;
|
|
367
|
-
} */
|
|
368
|
-
|
|
369
|
-
/* cspell:ignore necolas */
|
|
@@ -1,315 +0,0 @@
|
|
|
1
|
-
/* ==========================================================================
|
|
2
|
-
src/stylesheets/style.css
|
|
3
|
-
|
|
4
|
-
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
-
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
-
This file is part of Network Pro.
|
|
7
|
-
=========================================================================== */
|
|
8
|
-
|
|
9
|
-
/*! Modified from HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
|
|
10
|
-
|
|
11
|
-
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
|
|
12
|
-
|
|
13
|
-
/*
|
|
14
|
-
* What follows is the result of much research on cross-browser styling.
|
|
15
|
-
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
|
|
16
|
-
* Kroc Camen, and the H5BP dev community and team.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/*! ==========================================================================
|
|
20
|
-
Base styles: opinionated defaults
|
|
21
|
-
=========================================================================== */
|
|
22
|
-
|
|
23
|
-
html {
|
|
24
|
-
font-size: 1em;
|
|
25
|
-
line-height: 1.4;
|
|
26
|
-
color: #222;
|
|
27
|
-
scroll-behavior: smooth;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/*
|
|
31
|
-
* Remove text-shadow in selection highlight:
|
|
32
|
-
* https://twitter.com/miketaylr/status/12228805301
|
|
33
|
-
*
|
|
34
|
-
* Customize the background color to match your design.
|
|
35
|
-
*/
|
|
36
|
-
|
|
37
|
-
::-moz-selection {
|
|
38
|
-
background: #191919;
|
|
39
|
-
text-shadow: none;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
::selection {
|
|
43
|
-
background: #191919;
|
|
44
|
-
text-shadow: none;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
/*
|
|
48
|
-
* A better looking default horizontal rule
|
|
49
|
-
* 1. Show the overflow in Edge and IE.
|
|
50
|
-
*/
|
|
51
|
-
|
|
52
|
-
hr {
|
|
53
|
-
display: block;
|
|
54
|
-
height: 1px;
|
|
55
|
-
padding: 0;
|
|
56
|
-
margin: 1em 0;
|
|
57
|
-
border: 0;
|
|
58
|
-
border-top: 1px solid #ccc;
|
|
59
|
-
overflow: visible; /* 1 */
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/*
|
|
63
|
-
* Remove the gap between audio, canvas, iframes,
|
|
64
|
-
* images, videos and the bottom of their containers:
|
|
65
|
-
* https://github.com/h5bp/html5-boilerplate/issues/440
|
|
66
|
-
*/
|
|
67
|
-
|
|
68
|
-
audio,
|
|
69
|
-
canvas,
|
|
70
|
-
iframe,
|
|
71
|
-
img,
|
|
72
|
-
svg,
|
|
73
|
-
video {
|
|
74
|
-
vertical-align: middle;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/*
|
|
78
|
-
* Remove default fieldset styles.
|
|
79
|
-
*/
|
|
80
|
-
|
|
81
|
-
fieldset {
|
|
82
|
-
padding: 0;
|
|
83
|
-
margin: 0;
|
|
84
|
-
border: 0;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
/*
|
|
88
|
-
* Allow only vertical resizing of textareas.
|
|
89
|
-
*/
|
|
90
|
-
|
|
91
|
-
textarea {
|
|
92
|
-
resize: vertical;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
/*! ==========================================================================
|
|
96
|
-
Author's custom styles
|
|
97
|
-
=========================================================================== */
|
|
98
|
-
|
|
99
|
-
/*
|
|
100
|
-
* Additional line added to hr{} under 'Base Styles'
|
|
101
|
-
*/
|
|
102
|
-
|
|
103
|
-
body {
|
|
104
|
-
margin: 10px;
|
|
105
|
-
color: #fafafa;
|
|
106
|
-
background-color: #191919;
|
|
107
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
/* parent link element */
|
|
111
|
-
a {
|
|
112
|
-
/* align-content: center; */
|
|
113
|
-
text-decoration: none;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
/* unvisited link */
|
|
117
|
-
a:link {
|
|
118
|
-
color: #ffc627;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
/* mouse over link */
|
|
122
|
-
a:hover {
|
|
123
|
-
color: #ffc627;
|
|
124
|
-
text-decoration: underline;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
/* selected link */
|
|
128
|
-
a:active {
|
|
129
|
-
color: #ffc627;
|
|
130
|
-
text-decoration: underline;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/* focused link */
|
|
134
|
-
a:focus {
|
|
135
|
-
color: #191919; /* Black text when focused */
|
|
136
|
-
background-color: #ffc627; /* Gold background when focused */
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
/* visited link */
|
|
140
|
-
a:visited {
|
|
141
|
-
color: #7f6227;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/* visited and mouse over */
|
|
145
|
-
a:visited:hover {
|
|
146
|
-
color: #7f6227;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/*! ==========================================================================
|
|
150
|
-
Helper classes
|
|
151
|
-
=========================================================================== */
|
|
152
|
-
|
|
153
|
-
/*
|
|
154
|
-
* Hide visually and from screen readers
|
|
155
|
-
*/
|
|
156
|
-
|
|
157
|
-
.hidden,
|
|
158
|
-
[hidden] {
|
|
159
|
-
display: none !important;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/*
|
|
163
|
-
* Hide only visually, but have it available for screen readers:
|
|
164
|
-
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
|
|
165
|
-
*
|
|
166
|
-
* 1. For long content, line feeds are not interpreted as spaces and small width
|
|
167
|
-
* causes content to wrap 1 word per line:
|
|
168
|
-
* https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
|
|
169
|
-
*/
|
|
170
|
-
|
|
171
|
-
.visually-hidden {
|
|
172
|
-
position: absolute;
|
|
173
|
-
width: 1px;
|
|
174
|
-
height: 1px;
|
|
175
|
-
padding: 0;
|
|
176
|
-
margin: -1px;
|
|
177
|
-
border: 0;
|
|
178
|
-
clip: rect(0, 0, 0, 0);
|
|
179
|
-
overflow: hidden;
|
|
180
|
-
white-space: nowrap;
|
|
181
|
-
|
|
182
|
-
/* 1 */
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
/*
|
|
186
|
-
* Extends the .visually-hidden class to allow the element
|
|
187
|
-
* to be focusable when navigated to via the keyboard:
|
|
188
|
-
* https://www.drupal.org/node/897638
|
|
189
|
-
*/
|
|
190
|
-
|
|
191
|
-
.visually-hidden.focusable:active,
|
|
192
|
-
.visually-hidden.focusable:focus {
|
|
193
|
-
position: static;
|
|
194
|
-
width: auto;
|
|
195
|
-
height: auto;
|
|
196
|
-
margin: 0;
|
|
197
|
-
clip: auto;
|
|
198
|
-
overflow: visible;
|
|
199
|
-
white-space: inherit;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
/*
|
|
203
|
-
* Hide visually and from screen readers, but maintain layout
|
|
204
|
-
*/
|
|
205
|
-
|
|
206
|
-
.invisible {
|
|
207
|
-
visibility: hidden;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
/*
|
|
211
|
-
* Clearfix: contain floats
|
|
212
|
-
*
|
|
213
|
-
* The use of `table` rather than `block` is only necessary if using
|
|
214
|
-
* `::before` to contain the top-margins of child elements.
|
|
215
|
-
*/
|
|
216
|
-
|
|
217
|
-
.clearfix::before,
|
|
218
|
-
.clearfix::after {
|
|
219
|
-
display: table;
|
|
220
|
-
content: '';
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.clearfix::after {
|
|
224
|
-
clear: both;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
/*! ==========================================================================
|
|
228
|
-
EXAMPLE Media Queries for Responsive Design.
|
|
229
|
-
These examples override the primary ('mobile first') styles.
|
|
230
|
-
Modify as content requires.
|
|
231
|
-
=========================================================================== */
|
|
232
|
-
|
|
233
|
-
/*
|
|
234
|
-
@media only screen and (width >= 35em) {
|
|
235
|
-
/* Style adjustments for viewports that meet the condition
|
|
236
|
-
}*/
|
|
237
|
-
|
|
238
|
-
/*@media print,
|
|
239
|
-
(-webkit-min-device-pixel-ratio: 1.25),
|
|
240
|
-
(resolution >= 1.25dppx),
|
|
241
|
-
(resolution >= 120dpi) {
|
|
242
|
-
/* Style adjustments for high resolution devices
|
|
243
|
-
}*/
|
|
244
|
-
|
|
245
|
-
/*! ==========================================================================
|
|
246
|
-
Print styles.
|
|
247
|
-
Inlined to avoid the additional HTTP request:
|
|
248
|
-
https://www.phpied.com/delay-loading-your-print-css/
|
|
249
|
-
=========================================================================== */
|
|
250
|
-
|
|
251
|
-
/* stylelint-disable order/properties-order -- Maintain spreadsheet consistency */
|
|
252
|
-
@media print {
|
|
253
|
-
*,
|
|
254
|
-
*::before,
|
|
255
|
-
*::after {
|
|
256
|
-
background: #fff !important;
|
|
257
|
-
color: #000 !important;
|
|
258
|
-
|
|
259
|
-
/* Black prints faster */
|
|
260
|
-
box-shadow: none !important;
|
|
261
|
-
text-shadow: none !important;
|
|
262
|
-
}
|
|
263
|
-
/* stylelint-enable order/properties-order */
|
|
264
|
-
|
|
265
|
-
a,
|
|
266
|
-
a:visited {
|
|
267
|
-
text-decoration: underline;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
a[href]::after {
|
|
271
|
-
content: ' (' attr(href) ')';
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
abbr[title]::after {
|
|
275
|
-
content: ' (' attr(title) ')';
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/*
|
|
279
|
-
* Don't show links that are fragment identifiers,
|
|
280
|
-
* or use the `javascript:` pseudo protocol
|
|
281
|
-
*/
|
|
282
|
-
a[href^='#']::after,
|
|
283
|
-
a[href^='javascript:']::after {
|
|
284
|
-
content: '';
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
pre {
|
|
288
|
-
white-space: pre-wrap !important;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
pre,
|
|
292
|
-
blockquote {
|
|
293
|
-
border: 1px solid #999;
|
|
294
|
-
page-break-inside: avoid;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
tr,
|
|
298
|
-
img {
|
|
299
|
-
page-break-inside: avoid;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
p,
|
|
303
|
-
h2,
|
|
304
|
-
h3 {
|
|
305
|
-
orphans: 3;
|
|
306
|
-
widows: 3;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
h2,
|
|
310
|
-
h3 {
|
|
311
|
-
page-break-after: avoid;
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/* cspell:ignore camen textareas */
|