Extract styles into dream.css

This commit is contained in:
Lassi Kortela 2023-02-22 17:08:07 +02:00
parent 6dead2c8ba
commit 243e4c528b
2 changed files with 21 additions and 18 deletions

20
www/dream.css Normal file
View File

@ -0,0 +1,20 @@
body {
background-color: black;
color: white;
font-family: sans-serif;
}
a {
text-decoration: underline;
}
table.border {
border-collapse: separate;
border-spacing: 2px;
border: thin outset gray;
}
table.border td,
th {
border: thin inset gray;
}

View File

@ -2,24 +2,7 @@
<html>
<head>
<title>The 'dream' Scheme Interpreter</title>
<style type="text/css">
body {
background-color: black;
color: white;
font-family: sans-serif;
}
a {
text-decoration: underline;
}
table.border {
border-collapse: separate;
border-spacing: 2px;
border: thin outset gray;
}
table.border td, th {
border: thin inset gray;
}
</style>
<link rel="stylesheet" href="dream.css">
</head>
<h1>The 'dream' Scheme Interpreter</h1>
by David Joseph Stith