Skip to content

Commit 67fcf9b

Browse files
committed
develop
1 parent 36e5e39 commit 67fcf9b

39 files changed

+65
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
- Line heights:
12+
Default: 1
13+
14+
--- 02 Colors System
15+
16+
- Primary: #e67e22
17+
18+
- 比较暗的
19+
- Tints:
20+
21+
- 比较亮的
22+
- Shades:
23+
24+
- Accents:
25+
26+
- Greys:
27+
#555
28+
29+
30+
--- 05 Shadows
31+
32+
33+
--- 06 Border Radius
34+
35+
--- 07 Whitespace
36+
37+
- Spacing System (px)
38+
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
39+
*/
40+
41+
* {
42+
padding: 0;
43+
margin: 0;
44+
box-sizing: border-box;
45+
}
46+
47+
body {
48+
font-family: sans-serif;
49+
line-height: 1;
50+
font-weight: 400;
51+
color: #555;
52+
}
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 name="viewport" content="width=device-width, initial-scale=1.0" />
6+
7+
<link rel="stylesheet" href="css/style.css" />
8+
<title>Omnifood</title>
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)