From 4cd6a28a62a271d496a94a5ae0037187476ed1cd Mon Sep 17 00:00:00 2001 From: Simon Randby Date: Sun, 13 Sep 2015 22:55:26 +0200 Subject: [PATCH] Add header css The styling of the header goes here --- waffles/static/stylesheets/header.css | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 waffles/static/stylesheets/header.css diff --git a/waffles/static/stylesheets/header.css b/waffles/static/stylesheets/header.css new file mode 100644 index 0000000..1dd3093 --- /dev/null +++ b/waffles/static/stylesheets/header.css @@ -0,0 +1,32 @@ +header{ + color: black; + font-family: Georgia, serif; + font-size: 1.3em; + /*margin-top: 0.2em;*/ + text-align: center; + /*background-color: #0ce8dc;*/ + /*padding: 0;*/ +} +header a:active{ +} +header a:hover{ + color: #0c80e8; +} +/*Unvisited style:*/ +header a:link{ + color: black; + margin-top: 0.2em; +} +/*Visited style*/ +header a:visited{ + color: black; +} +header h1{ + display: inline-block; + font-size: inherit; +} +header img{ + display: inline-block; + margin-right: 0.5em; + height: 1.3em; +}