Extract styles into dream.css
This commit is contained in:
parent
6dead2c8ba
commit
243e4c528b
|
@ -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;
|
||||||
|
}
|
|
@ -2,24 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>The 'dream' Scheme Interpreter</title>
|
<title>The 'dream' Scheme Interpreter</title>
|
||||||
<style type="text/css">
|
<link rel="stylesheet" href="dream.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>
|
|
||||||
</head>
|
</head>
|
||||||
<h1>The 'dream' Scheme Interpreter</h1>
|
<h1>The 'dream' Scheme Interpreter</h1>
|
||||||
by David Joseph Stith
|
by David Joseph Stith
|
||||||
|
|
Loading…
Reference in New Issue