Skip to content

Commit

Permalink
Place Yr credit on same line as the rest of the text
Browse files Browse the repository at this point in the history
  • Loading branch information
tobinus committed Aug 2, 2017
1 parent 09890eb commit 1e201af
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion static/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
body {
background-color: white;
color: black;
font-size: 10vh;
font-size: 12vh;
font-family: Raleway, Ubuntu, sans-serif;
}
main {
Expand All @@ -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%;
}

0 comments on commit 1e201af

Please sign in to comment.