diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/index.css | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/public/index.css b/public/index.css index 2f5d6f1..b8d18c5 100644 --- a/public/index.css +++ b/public/index.css @@ -1,4 +1,28 @@ /* Add CSS styles here! */ body { - font-family: sans-serif; + font-family: Arial, Helvetica, sans-serif; +} + +header { + margin-top: 15px; + display: flex; + flex: 0 1 auto; + justify-content: space-between; + max-width: 40em; + border-bottom: 1px solid #ccc; + padding-bottom: 10px; +} +header ul { + list-style: none; + display: flex; + padding: 0; + margin: 0 10px; +} + +header ul li { + margin: 0px 10px; +} + +.container { + margin: 20px; } |