fixed width menu and extra hillbilly bits

This commit is contained in:
daviac 2024-02-19 21:53:22 +11:00
parent 17c6a60be7
commit d31235da88
3 changed files with 14 additions and 7 deletions

View File

@ -17,7 +17,7 @@
<h2> The Hillibilly1 Assembler </h2>
<p> The DOS binary and potentially source code will be provided at a later date </p>
<p> The program's <a href="/hillbilly1/Hillbill1txt">help output</a> provides the assembler -> machine code mappings: </p>
<p> The program's <a href="/hillbilly1/Hillbilly1.txt">help output</a> provides the assembler -> machine code mappings: </p>
<pre>
Relay Computer Assembler: Ver. Beta 0.4.3
@ -88,6 +88,8 @@ WAIT : 0c 00001100
\ :
</pre>
<p> <a href="/hillbilly1/ADD16.asm">Here</a> is an example 16 bit adder program for the DAVIAC-1.</p>
<p> The Assembler produces the <a href="/hillbilly1/ADD16.hex">Hex</a> and a <a href="/hillbilly1/ADD16.lst">run list</a>.
</div>
<?php include("footer.php"); ?>

View File

@ -14,9 +14,9 @@
<?php include("sidebar.php"); ?>
<div id="main-text" class="main">
<h2>Architectural Overview (click image for PDF)</h2>
<p><a href="pdf/Arch.pdf"><img src="images/Arch-1.png" alt="A block diagram of the architecture of the DAVIAC-1 along with the instruction set and machine code" width=100%; /></a></p>
<a href="pdf/Arch.pdf"><img src="images/Arch-1.png" alt="A block diagram of the architecture of the DAVIAC-1 along with the instruction set and machine code" /></a>
<h2>Physical Build Overview</h2>
<p><a href="/images/DAVIAC-1.jpg"><img src="/images/DAVIAC-1.jpg" alt="All the PCBs for the DAVIAC-1 populated with relays, LEDs and other miscellaneous parts mounted neatly on some particle hinged board mounted to the wall. Miscellaneous vintage test equipment and a laptop with a lot of stickers on it in the foreground." width=100% /></a></p>
<a href="/images/DAVIAC-1.jpg"><img src="/images/DAVIAC-1.jpg" alt="All the PCBs for the DAVIAC-1 populated with relays, LEDs and other miscellaneous parts mounted neatly on some particle hinged board mounted to the wall. Miscellaneous vintage test equipment and a laptop with a lot of stickers on it in the foreground." /></a>
</div>
<?php include("footer.php"); ?>
</div>

View File

@ -3,17 +3,21 @@
padding: 15px;
margin-right: 15px;
border-radius: 15px; }
.main { grid-area: main; }
.main { grid-area: main;
width: 100%; }
img { width: 100%; }
}
.footer { grid-area: footer; }
.grid-container {
display: grid;
grid-template-areas:
'header header'
'sidebar main'
'sidebar footer';
'header header header header'
'sidebar main main main'
'sidebar footer footer footer';
gap: 10px;
padding: 10px;
grid-template-columns: 400px 1fr;
}
.shown-mobile {
@ -35,6 +39,7 @@
'footer';
gap: 1px;
padding:1px;
grid-template-columns: unset;
}
.header, main, .footer {
width: 100%;