@@ -18,9 +18,9 @@ document.body.style.textAlign = 'center';
1818const style = document . createElement ( 'style' ) ;
1919style . textContent = `
2020 h1 {
21- color: #000080;
21+ color: #00ffff; /* Classic light blue heading */
2222 font-family: 'Courier New', Courier, monospace;
23- border-bottom: 2px solid #000080 ;
23+ border-bottom: 2px solid #00ffff ;
2424 padding-bottom: 10px;
2525 margin: 0;
2626 }
@@ -29,15 +29,19 @@ style.textContent = `
2929 max-width: 800px;
3030 margin: 0 auto;
3131 padding: 20px;
32- background-color: #fff;
33- border: 2px solid #000;
34- box-shadow: 5px 5px 0 #333;
32+ background-color: #000; /* Black container */
33+ border: 2px solid #fff;
34+ box-shadow: 5px 5px 0 #666;
35+ }
36+
37+ a {
38+ color: #00ff00; /* Classic green links */
3539 }
3640
3741 .footer {
3842 margin-top: 20px;
3943 padding-top: 10px;
40- border-top: 1px dashed #000 ;
44+ border-top: 1px dashed #fff ;
4145 font-size: 0.8em;
4246 }
4347
@@ -63,15 +67,16 @@ if (h1) {
6367if ( pre ) {
6468 container . appendChild ( pre ) ;
6569 // Apply styles to the pre tag
66- pre . style . whiteSpace = 'pre-wrap' ;
70+ pre . style . white - space = 'pre-wrap' ;
6771 pre . style . textAlign = 'left' ;
72+ // Explicitly set the font and color to override any other styles
73+ pre . style . color = '#fff' ;
74+ pre . style . fontFamily = "'Times New Roman', serif" ;
6875}
6976
70-
7177// Append the container to the body
7278document . body . appendChild ( container ) ;
7379
74-
7580// Create the footer div with visitor counter and HTML checkmark
7681const footer = document . createElement ( 'div' ) ;
7782footer . classList . add ( 'footer' ) ;
@@ -85,7 +90,9 @@ footer.innerHTML = `
8590 <img src="https://blacknite4ever.github.io/TelehackProfile/images/e-dos.gif" alt="e-dos" height="31" width="88">
8691 <img src="https://blacknite4ever.github.io/TelehackProfile/images/gateway_2000.gif" alt="gateway_2000" height="31" width="88">
8792 <img src="https://blacknite4ever.github.io/TelehackProfile/images/keep.gif" alt="keep" height="31" width="88">
93+ <p>This page was last updated: August 10, 2025<
8894 </p>
95+ <p>This page was last updated: August 10, 2025</p>
8996` ;
9097container . appendChild ( footer ) ;
9198
0 commit comments