Skip to content

Commit 6f1dd9b

Browse files
committed
Starting Omnifood: initial steps and sketches
1 parent bedef81 commit 6f1dd9b

39 files changed

+80
-0
lines changed

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

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,25 @@ Careers
126126
Recipe directory
127127
Help center
128128
Privacy & terms
129+
130+
#########
131+
132+
## Sections
133+
134+
- Logo + Navigation
135+
136+
- Hero section
137+
138+
- Featured in
139+
140+
- How it works
141+
142+
- Meals and list of diets
143+
144+
- Testimonials + gallery
145+
146+
- Pricing + features
147+
148+
- Call to action (sample meal)
149+
150+
- Footer
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
- Line heights:
12+
Default: 1
13+
14+
--- 02 COLORS ---
15+
16+
Primary: #e67e22
17+
18+
Tints:
19+
Shades:
20+
Accents:
21+
Greys: #555,
22+
23+
--- 03 SHADOWS ---
24+
25+
--- 04 BORDER-RADIUS ---
26+
27+
--- 05 WHITE SPACE ---
28+
29+
SPACING SYSTEM (px)
30+
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
31+
*/
32+
33+
* {
34+
padding: 0;
35+
margin: 0;
36+
box-sizing: border-box;
37+
}
38+
39+
body {
40+
font-family: sans-serif;
41+
line-height: 1;
42+
font-weight: 400;
43+
color: #555;
44+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
7+
<link rel="stylesheet" href="css/style.css" />
8+
9+
<title>Omnifood</title>
10+
</head>
11+
<body>
12+
<h1>A healthy meal delivered to your door, every single day</h1>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)