diff options
-rw-r--r-- | www/style.css | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/www/style.css b/www/style.css index 2354e77..d0b19b8 100644 --- a/www/style.css +++ b/www/style.css @@ -1,8 +1,36 @@ body { - text-align: center; + font-family: Arial, sans-serif; + font-size: 14pt; color: #ccc; background-color: #000; + max-width: 80ch; + margin: 0 auto; + padding: 25px; +} + +.heading +{ + text-align: center; + font-family: Monaco, monospace; + font-size: 18pt; +} + +.literal +{ + font-family: Monaco, monospace; + font-size: 12pt; + background-color: #222; + border-style: solid; + border-width: 2px; + border-radius: 7px; + padding: 1em; +} + +.note +{ + color: #efce28; + font-style: italic; } a |