From 1e201afe07b3ac5be353f55174c856b497618b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20Werner=20Sj=C3=B8str=C3=B8m=20Dahl?= Date: Wed, 2 Aug 2017 13:43:25 +0200 Subject: [PATCH] Place Yr credit on same line as the rest of the text --- static/style.css | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 800799c..5b72312 100644 --- a/static/style.css +++ b/static/style.css @@ -1,7 +1,7 @@ body { background-color: white; color: black; - font-size: 10vh; + font-size: 12vh; font-family: Raleway, Ubuntu, sans-serif; } main { @@ -15,3 +15,22 @@ main img { header, footer { font-size: 0.7em; } + +body { + display: flex; + flex-wrap: wrap; + justify-content: space-between; +} + +header { + order: 1; +} + +footer { + order: 2; +} + +main { + order: 3; + flex: 1 100%; +}