-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
117 lines (100 loc) · 2.07 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Inter, sans-serif;
background-color: #FAFAF8;
}
header {
display: flex;
justify-content: center;
align-items: center;
gap: 11px;
height: 80px;
background-color: white;
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10), 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
}
header > img {
width: 50px;
}
header > h1 {
font-weight: 400;
}
main {
padding: 30px 30px 10px;
}
.add-ingredient-form {
display: flex;
justify-content: center;
gap: 12px;
height: 38px;
}
.add-ingredient-form > input {
border-radius: 6px;
border: 1px solid #D1D5DB;
padding: 9px 13px;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
flex-grow: 1;
min-width: 150px;
max-width: 400px;
}
.add-ingredient-form > button {
font-family: Inter, sans-serif;
border-radius: 6px;
border: none;
background-color: #141413;
color: #FAFAF8;
width: 150px;
font-size: 0.875rem;
font-weight: 500;
}
.add-ingredient-form > button::before {
content: "+";
margin-right: 5px;
}
ul.ingredients-list {
margin-bottom: 48px;
}
ul.ingredients-list > li {
color: #475467;
line-height: 28px;
}
.get-recipe-container {
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 8px;
background: #F0EFEB;
padding: 10px 28px;
}
.get-recipe-container h3 {
font-size: 1.125rem;
font-weight: 500;
line-height: 24px;
}
.get-recipe-container p {
color: #6B7280;
font-size: 0.875rem;
line-height: 20px;
}
.get-recipe-container button {
border: none;
border-radius: 6px;
background: #D17557;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
color: #FAFAF8;
padding: 9px 17px;
font-family: Inter, sans-serif;
font-size: 0.875rem;
cursor: pointer;
}
.suggested-recipe-container {
color: #475467;
line-height: 28px;
font-size: 1.125rem;
font-weight: 400;
}
.suggested-recipe-container ul li, .suggested-recipe-container ol li {
margin-bottom: 8px;
}