Skip to content

Commit 4b59c03

Browse files
committed
started omnifood
1 parent b2d51ad commit 4b59c03

39 files changed

+115
-17
lines changed

starter/07-Omnifood-Desktop/content/content.md renamed to starter/07-Omnifood-Desktop/content.md

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ Kid-friendly
5353

5454
Meal 1: Japanese Gyozas
5555

56-
- Category: Vegetarian
57-
- Calories: 650
58-
- NutriScore (Registered): 74
59-
- Average rating: 4.9
60-
- Number reviews: 537
56+
- Category: Vegetarian
57+
- Calories: 650
58+
- NutriScore (Registered): 74
59+
- Average rating: 4.9
60+
- Number reviews: 537
6161

6262
Meal 2: Avocado Salad
6363

64-
- Category: Vegan and Paleo
65-
- Calories: 400
66-
- NutriScore (Registered): 92
67-
- Average rating: 4.8
68-
- Number reviews: 441
64+
- Category: Vegan and Paleo
65+
- Calories: 400
66+
- NutriScore (Registered): 92
67+
- Average rating: 4.8
68+
- Number reviews: 441
6969

7070
### We offer a free sample meal
7171

@@ -79,16 +79,16 @@ Prices include all applicable taxes. Users can cancel at any time.
7979

8080
Starter: $399 per month
8181

82-
- 1 meal per day
83-
- Order times are between 11am and 9pm
84-
- Delivery is free
82+
- 1 meal per day
83+
- Order times are between 11am and 9pm
84+
- Delivery is free
8585

8686
Complete: $649 per month
8787

88-
- 2 meal2 per day
89-
- Order 24/7
90-
- Delivery is free
91-
- Get access to latest recipes
88+
- 2 meal2 per day
89+
- Order 24/7
90+
- Delivery is free
91+
- Get access to latest recipes
9292

9393
### Photo gallery
9494

@@ -126,3 +126,15 @@ Careers
126126
Recipe directory
127127
Help center
128128
Privacy & terms
129+
130+
######
131+
132+
- Logo + Navigation
133+
- Hero section
134+
- Featured in
135+
- How it works
136+
- Meals (and list of diets)
137+
- Testimonials + Gallery
138+
- Pricing + features
139+
- Call to action
140+
- Footer
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
3+
--- 01 Typography system
4+
5+
- Font sizes (px)
6+
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
7+
8+
- Font weights
9+
Default: 400
10+
11+
12+
- Line heights
13+
Default: 1
14+
15+
16+
--- 02 Colors
17+
18+
- Primary: #e67e22
19+
- Tints:
20+
- Shades:
21+
- Accents:
22+
- Greys:
23+
#555
24+
25+
26+
--- 05 Shadows
27+
28+
29+
--- 06 Border radius
30+
31+
32+
--- 07 Whitespace
33+
34+
- Spacing (px)
35+
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
36+
37+
38+
39+
40+
*/
41+
42+
* {
43+
padding: 0;
44+
margin: 0;
45+
box-sizing: border-box;
46+
}
47+
48+
html {
49+
/* font-size: 10px; */
50+
font-size: 62.5%;
51+
}
52+
53+
body {
54+
font-family: sans-serif;
55+
line-height: 1;
56+
font-weight: 400;
57+
color: #555;
58+
}
59+
60+
.test {
61+
/* width: 1000px; */
62+
/* max-width: 1000px; */
63+
background-color: turquoise;
64+
65+
max-width: 50rem;
66+
color: #fff;
67+
padding: 4rem;
68+
font-size: 2rem;
69+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
8+
<link rel="stylesheet" href="css/style.css" />
9+
10+
<title>Omnifood</title>
11+
</head>
12+
<body>
13+
<h1>A healthy meal delivered to your door, every single day</h1>
14+
15+
<div class="test">Test</div>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)