Skip to content

Commit 462ec7e

Browse files
committed
System Touch
1 parent 8449899 commit 462ec7e

2 files changed

Lines changed: 28 additions & 28 deletions

File tree

docs/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
-webkit-font-smoothing: antialiased;
3232
-moz-osx-font-smoothing: grayscale;
3333
line-height: var(--line-height);
34-
overflow-y: auto;
34+
overflow-y: auto; /* page-level scrollbar on the far right */
3535
}
3636

3737
.site {
@@ -125,14 +125,6 @@
125125
color: var(--carolina-blue);
126126
}
127127

128-
/* Secondary small connectors (kept subtle) */
129-
.title-line.secondary {
130-
font-size: 1.05rem;
131-
color: var(--color-section);
132-
font-weight: 600;
133-
margin-bottom: 6px;
134-
}
135-
136128
/* Legal Protectorate line uses the current dark blue */
137129
.title-line.legal {
138130
font-size: 1.6rem;
@@ -141,6 +133,13 @@
141133
font-weight: 700;
142134
}
143135

136+
.title-line.secondary {
137+
font-size: 1.05rem;
138+
color: var(--color-section);
139+
font-weight: 600;
140+
margin-bottom: 6px;
141+
}
142+
144143
.title-line.tertiary {
145144
font-size: 0.95rem;
146145
color: #555;
@@ -157,16 +156,17 @@
157156
opacity: 0.9;
158157
}
159158

160-
/* Container: left-aligned content, constrained width for readability */
159+
/* Container: left-aligned content, now wider to fill ~95% of the center area */
161160
.container {
162-
width: 100%;
163-
max-width: var(--max-width);
161+
width: 95%; /* fill roughly 95% of the center div */
162+
max-width: calc(var(--max-width) * 1.05); /* allow slightly wider lines if viewport permits */
164163
margin: 0 auto;
165164
padding: 0;
166165
box-sizing: border-box;
167166
text-align: left;
168167
}
169168

169+
/* Ensure content elements are left-aligned */
170170
.container h1,
171171
.container h2,
172172
.container h3,
@@ -179,6 +179,7 @@
179179
margin-right: 0;
180180
}
181181

182+
/* Keep code blocks readable */
182183
.container pre, .container code {
183184
text-align: left;
184185
max-width: 100%;
@@ -225,6 +226,7 @@
225226
.title-line.legal { font-size: 1.25rem; }
226227
.title-line.secondary { font-size: 1rem; }
227228
.title-divider { width: 72%; }
229+
.container { width: 92%; max-width: none; }
228230
}
229231

230232
@media (max-width:720px){
@@ -276,11 +278,9 @@
276278
<main class="main" role="main" aria-label="Main content">
277279
<div class="container">
278280
<header class="site-header" role="banner">
279-
<!-- Project identifier above the title, in current dark blue -->
280281
<div class="project-id">Java.Web.Server.Telnet.Front.Java.21</div>
281282

282283
<div class="title-stack" aria-hidden="false">
283-
<!-- Combined lines with parentheses at end of the lines -->
284284
<span class="title-line primary">National Finance Engine (NFE)</span>
285285
<span class="title-line legal">National IQ Conservatorship &amp; Legal Protectorate (NICLP)</span>
286286
<div class="title-divider" aria-hidden="true"></div>

docs/index.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
-webkit-font-smoothing: antialiased;
3232
-moz-osx-font-smoothing: grayscale;
3333
line-height: var(--line-height);
34-
overflow-y: auto;
34+
overflow-y: auto; /* page-level scrollbar on the far right */
3535
}
3636

3737
.site {
@@ -125,14 +125,6 @@
125125
color: var(--carolina-blue);
126126
}
127127

128-
/* Secondary small connectors (kept subtle) */
129-
.title-line.secondary {
130-
font-size: 1.05rem;
131-
color: var(--color-section);
132-
font-weight: 600;
133-
margin-bottom: 6px;
134-
}
135-
136128
/* Legal Protectorate line uses the current dark blue */
137129
.title-line.legal {
138130
font-size: 1.6rem;
@@ -141,6 +133,13 @@
141133
font-weight: 700;
142134
}
143135

136+
.title-line.secondary {
137+
font-size: 1.05rem;
138+
color: var(--color-section);
139+
font-weight: 600;
140+
margin-bottom: 6px;
141+
}
142+
144143
.title-line.tertiary {
145144
font-size: 0.95rem;
146145
color: #555;
@@ -157,16 +156,17 @@
157156
opacity: 0.9;
158157
}
159158

160-
/* Container: left-aligned content, constrained width for readability */
159+
/* Container: left-aligned content, now wider to fill ~95% of the center area */
161160
.container {
162-
width: 100%;
163-
max-width: var(--max-width);
161+
width: 95%; /* fill roughly 95% of the center div */
162+
max-width: calc(var(--max-width) * 1.05); /* allow slightly wider lines if viewport permits */
164163
margin: 0 auto;
165164
padding: 0;
166165
box-sizing: border-box;
167166
text-align: left;
168167
}
169168

169+
/* Ensure content elements are left-aligned */
170170
.container h1,
171171
.container h2,
172172
.container h3,
@@ -179,6 +179,7 @@
179179
margin-right: 0;
180180
}
181181

182+
/* Keep code blocks readable */
182183
.container pre, .container code {
183184
text-align: left;
184185
max-width: 100%;
@@ -225,6 +226,7 @@
225226
.title-line.legal { font-size: 1.25rem; }
226227
.title-line.secondary { font-size: 1rem; }
227228
.title-divider { width: 72%; }
229+
.container { width: 92%; max-width: none; }
228230
}
229231

230232
@media (max-width:720px){
@@ -276,11 +278,9 @@
276278
<main class="main" role="main" aria-label="Main content">
277279
<div class="container">
278280
<header class="site-header" role="banner">
279-
<!-- Project identifier above the title, in current dark blue -->
280281
<div class="project-id">Java.Web.Server.Telnet.Front.Java.21</div>
281282

282283
<div class="title-stack" aria-hidden="false">
283-
<!-- Combined lines with parentheses at end of the lines -->
284284
<span class="title-line primary">National Finance Engine (NFE)</span>
285285
<span class="title-line legal">National IQ Conservatorship &amp; Legal Protectorate (NICLP)</span>
286286
<div class="title-divider" aria-hidden="true"></div>

0 commit comments

Comments
 (0)