diff --git a/calendar.html b/calendar.html index 222210a..63ac1fb 100644 --- a/calendar.html +++ b/calendar.html @@ -14,7 +14,7 @@
- go back + go back
diff --git a/css/day.css b/css/day.css index 475a727..2be26e3 100644 --- a/css/day.css +++ b/css/day.css @@ -1,13 +1,8 @@ -* { - background: rgb(249, 188, 89); - font-family: 'Coming Soon', sans-serif; - color: white; -} - -header { - text-align: center; - margin: 1em 0 1em 0; - font-size: 2em; +.day_header { + display: flex; + flex-direction: row; + justify-content: space-between; + padding: 1em 1em 0 1em; } .food-log { @@ -15,3 +10,25 @@ header { border-style: solid; padding: 0.5em; } + +.back_button { + height: 3em; +} + +.container { + margin: 0 auto; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + text-align: center; +} + +.header_menu { + margin-bottom: none; +} + +.edit { + height: 3em; + width: auto; +} diff --git a/day.html b/day.html index b65317b..2fe6659 100644 --- a/day.html +++ b/day.html @@ -10,11 +10,20 @@ Day + +
+
go back
+
+ your profile image
+ +
+
-

{Insert Date}

-

There are no food logs for today.

-

Add an entry

- Back to Calendar +

There are no entries for today.
Add one?

+ edit
+ diff --git a/images/edit.png b/images/edit.png new file mode 100644 index 0000000..8373f01 Binary files /dev/null and b/images/edit.png differ diff --git a/images/back.png b/images/home.png similarity index 100% rename from images/back.png rename to images/home.png diff --git a/images/return.png b/images/return.png new file mode 100644 index 0000000..4b259fa Binary files /dev/null and b/images/return.png differ