From fd2bfadc7db0f6b038829b2e8b951c4b8750c826 Mon Sep 17 00:00:00 2001 From: Simon Randby Date: Sun, 13 Sep 2015 22:54:03 +0200 Subject: [PATCH] Add site-wide css rules file Put only things that are sitewide and should not go in a separate stylesheet (such as large special purpose chunks like navbar css) here. --- waffles/static/stylesheets/site-wide.css | 32 ++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 waffles/static/stylesheets/site-wide.css diff --git a/waffles/static/stylesheets/site-wide.css b/waffles/static/stylesheets/site-wide.css new file mode 100644 index 0000000..03c3dfb --- /dev/null +++ b/waffles/static/stylesheets/site-wide.css @@ -0,0 +1,32 @@ +{ + font-family: Georgia, serif; +} +body{ + /*background-color: #0ce8dc;*/ + background-color: white; + text-align: center; + margin: 0; + padding: 0; +} +a{ + text-decoration: none; +} +/*Unvisited style:*/ +a:link{ + color: #0c80e8; +} +/*Visited Style*/ +a:visited{ + color: #0c80e8; +} +a:active{ +} +a:hover{ + color: #0d4dff; +} + +body p{ + display: inline-block; + font-size: 1.3em; + max-width:40em; +}