Copy dream.css from dream-website repo
This commit is contained in:
parent
af38d51fd3
commit
418ef56e5a
|
@ -0,0 +1,24 @@
|
|||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: red;
|
||||
}
|
||||
|
||||
table.border {
|
||||
border-collapse: separate;
|
||||
border-spacing: 2px;
|
||||
border: thin outset gray;
|
||||
}
|
||||
|
||||
table.border td,
|
||||
th {
|
||||
border: thin inset gray;
|
||||
}
|
|
@ -1,12 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>The Dream Scheme Operating System</title>
|
||||
<style type="text/css">
|
||||
body { background-color:black; color:white; font-family:sans-serif; }
|
||||
a { text-decoration:underline; }
|
||||
</style>
|
||||
<link rel="stylesheet" href="dream.css">
|
||||
</head>
|
||||
<div style="color:white; font-family:sans-serif;">
|
||||
<body>
|
||||
<h1>DreamOS</h1>
|
||||
<pre>
|
||||
______________________________________________________________________________
|
||||
|
@ -67,7 +65,7 @@ Have fun! :-)
|
|||
<hr>
|
||||
Hard-disk installation is possible. Do not call <b>(sys-save)</b> unless your hard-drive data is expendable!
|
||||
<br>
|
||||
To install on your hard-drive <font color="red">(but only do this if you don't mind overwriting your hard-drive entirely!)</font>:
|
||||
To install on your hard-drive <span class="red">(but only do this if you don't mind overwriting your hard-drive entirely!)</span>:
|
||||
<br>use <b>(sys-copy)</b> to read everything from the floppy into RAM,
|
||||
<br>use <b>(edit "make.scm")</b> then change the value of BOOT_FLOPPY to #f,
|
||||
<br>use <b>(load "make.scm")</b> to recompile,
|
||||
|
@ -78,8 +76,8 @@ This version works on my Dell Inspiron 7500, 5000 and Dell Latitude CPi laptops,
|
|||
My son Matthew has used DreamOS to code a number of games.
|
||||
Here is the latest copy of his programs: <a href="/cgi-bin/wiki_joey/matthew.img">matthew.img</a> (bootable DreamOS using SVGA)
|
||||
<br>
|
||||
Not all of them are yet in working order, but definitely try <b>(load "robot-war.scm")</b> and <b>(load "blockade.scm")</b>.
|
||||
</div>
|
||||
Not all of them are yet in working order, but definitely try <b>(load "robot-war.scm")</b> and <b>(load "blockade.scm")</b>.<br>
|
||||
<a href="home.html">home</a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue