diff options
author | ana <ana@ana.st> | 2021-08-08 18:03:01 +0200 |
---|---|---|
committer | ana <ana@ana.st> | 2021-08-08 18:03:01 +0200 |
commit | 4d983932193ccb228515300919b0128d426a612c (patch) | |
tree | b9943572efc0c3c9683aef24feb629c8c0dd642a /public | |
parent | c9a270033dc5c6ca0fd3241b44800313623e9a8f (diff) | |
download | eureka-marks-4d983932193ccb228515300919b0128d426a612c.tar.gz |
feat: more things, almost finished
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; } |