diff options
author | Malfurious <m@lfurio.us> | 2021-08-13 05:21:43 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-08-13 05:21:43 -0400 |
commit | a844035ac36cf0a63c352a18cf5faa299798e055 (patch) | |
tree | b456ecc6d43317b79da50e79ff8948e3680d4a8f /www | |
parent | f457bf35fab0289cc6acab64a22d1fb049f917dd (diff) | |
download | site-a844035ac36cf0a63c352a18cf5faa299798e055.tar.gz site-a844035ac36cf0a63c352a18cf5faa299798e055.zip |
Build-out site CSS
Add styles for site content, which should mostly just be text, images,
and specific regions of monospace, formatting-preserved text.
This commit breaks index.html.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'www')
-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 |