Skip to content

Commit d8f7933

Browse files
张欧文张欧文
张欧文
authored and
张欧文
committed
init omnifood project
1 parent bc52289 commit d8f7933

40 files changed

+82
-0
lines changed

final/.DS_Store

0 Bytes
Binary file not shown.

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,19 @@ Careers
126126
Recipe directory
127127
Help center
128128
Privacy & terms
129+
130+
<!-- -->
131+
132+
## Sections
133+
134+
- Navigation
135+
- Hero
136+
- Featured in
137+
- Features
138+
- How it works
139+
- Meals (and list of diets)
140+
- Gallery
141+
- Testimonials
142+
- Pricing
143+
- CTA
144+
- Footer
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
3+
--- 01 Typography system
4+
5+
- FONT SIZE SYSTEM (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+
17+
--- 02 Color system
18+
19+
- Primary
20+
#e67e22
21+
22+
- Tints
23+
24+
25+
- Shades
26+
27+
- Accents
28+
29+
- Greys
30+
#555
31+
32+
--- 03 Shadows
33+
34+
--- 04 Border-radius
35+
36+
--- 05 Whitespace
37+
38+
- SACING SYSTEM (px)
39+
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
40+
*/
41+
42+
* {
43+
margin: 0;
44+
padding: 0;
45+
box-sizing: border-box;
46+
}
47+
48+
body {
49+
font-family: sans-serif;
50+
line-height: 1;
51+
font-weight: 400;
52+
color: #555;
53+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
<title>Omnifood</title>
8+
<link href="css/style.css" rel="stylesheet" />
9+
</head>
10+
<body>
11+
<h1>A healthy meal delivered to your door, every single day</h1>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)