Skip to content

Commit

Permalink
added h2s
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Valentino committed Aug 5, 2024
1 parent 003b7d5 commit 5caabfb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h1 id="biosTitle">𓍰 Sacred OS Boot Menu</h1><button id="about" class="biosBu
<hr class="biosHrSub mt-20" />
</section>
<section id="sysChecks">
<div class="biosTextMain mt-20">System Checks</div>
<h2 class="mt-20">System Checks:</h2>
<div id="screenRes" class="biosTextSub"></div>
<div id="screenResWarning" class="warning"></div>
<div id="inputDev" class="biosTextSub"></div>
Expand All @@ -70,7 +70,7 @@ <h1 id="biosTitle">𓍰 Sacred OS Boot Menu</h1><button id="about" class="biosBu
<div id="userAgentWarning" class="warning"></div>
</section>
<section id="freshInstallInfo">
<div class="biosTextMain mt-20">Compiling OS From Source</div>
<h2 class="mt-20">Compiling OS From Source:</h2>
<div id="compile" class="biosTextSub"></div>
</section>
</div>
Expand Down Expand Up @@ -271,7 +271,7 @@ <h1 id="biosTitle">𓍰 Sacred OS Boot Menu</h1><button id="about" class="biosBu
tempFileContent[key][item] = await fetchContent(fileURL);
compileElement.innerHTML += `<div>Loaded: ${fileURL}</div>`;
lineCount++;

while (lineCount > 20) {
compileElement.removeChild(compileElement.firstChild);
lineCount--;
Expand Down
10 changes: 9 additions & 1 deletion public/outsideTheOS/bios.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
}

.biosTextMain {
font-size: 20px;
font-size: 18px;
font-family: 'Courier New', Courier, monospace;
color: #fff;
}
Expand All @@ -183,6 +183,14 @@
color: #e7e7e7;
}

h2 {
font-weight: 500;
font-size: 22px;
font-family: 'Courier New', Courier, monospace;
color: #fff;
margin-bottom: 16px;
}

#closeAbout {
display: block;
margin: auto;
Expand Down

0 comments on commit 5caabfb

Please sign in to comment.