-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshoppingList.css
More file actions
68 lines (60 loc) · 1.13 KB
/
shoppingList.css
File metadata and controls
68 lines (60 loc) · 1.13 KB
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
body {
font-family: 'Montserrat', sans-serif;
}
.container {
display: grid;
grid-template-columns: 33% 33% 33%;
}
.recipe-list, .extras-list, .ingredients-list {
gap: 0.5rem;
display: flex;
flex-direction: column;
}
.recipe, .extra {
display: flex;
gap: 1rem;
}
.selected-meals-list, .selected-extras-list {
gap: 0.5rem;
display: flex;
flex-direction: column;
}
.text {
font-size: 1.1rem;
font-weight: 400;
}
.shopping-list {
padding-top: 1rem;
gap: 0.5rem;
display: flex;
flex-direction: column;
}
.input {
width: 50px;
padding: 0.5rem 1rem;
background-color: #c0c0c0;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.decrease-button, .increase-button {
padding: 0.5rem 1rem;
background-color: #808080;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.shopping-button {
padding: 0.5rem 1rem;
background-color: #808080;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
@media (max-width: 800px) {
.container {
grid-template-columns: 100%; }
}