From 243e4c528b18919becaa7200186e8a625dc5b0a9 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Wed, 22 Feb 2023 17:08:07 +0200 Subject: [PATCH] Extract styles into dream.css --- www/dream.css | 20 ++++++++++++++++++++ www/index.html | 19 +------------------ 2 files changed, 21 insertions(+), 18 deletions(-) create mode 100644 www/dream.css diff --git a/www/dream.css b/www/dream.css new file mode 100644 index 0000000..67ba4d2 --- /dev/null +++ b/www/dream.css @@ -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; +} diff --git a/www/index.html b/www/index.html index b42941a..e53146c 100644 --- a/www/index.html +++ b/www/index.html @@ -2,24 +2,7 @@ The 'dream' Scheme Interpreter - +

The 'dream' Scheme Interpreter

by David Joseph Stith