From f639ae7eba328e815eae04a6c0b2ceef98cd0ea8 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 21 Jan 2012 15:18:14 -0500 Subject: [PATCH] forgot CSS! --- static/main.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 static/main.css diff --git a/static/main.css b/static/main.css new file mode 100644 index 0000000..0498bc8 --- /dev/null +++ b/static/main.css @@ -0,0 +1,26 @@ +body { + font-family: helvetica, arial, clean, sans-serif; + font-size: 14px; + color: #000; + background-color: #E0E0E0; +} + +div#container { + width: 800px; + margin: 20px auto 32px auto; + border: 1px solid #999; + border-radius: 10px; + background-color: #FFF; +} + +div#footer { + font-size: 11px; + text-align: center; + padding: 9px 4px 12px 4px; + color: #222; +} + +a:link { color: #373; text-decoration: none; } +a:visited { color: #373; text-decoration: none; } +a:hover { color: #040; text-decoration: underline; } +a:active { color: #404; text-decoration: underline; }