-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
40 lines (36 loc) · 767 Bytes
/
App.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
.App {
min-height: 100vh;
background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
font-family: 'Poppins', sans-serif;
}
.search-form {
min-height: 10vh;
display: flex;
justify-content: center;
align-items: center;
}
.search-bar {
width: 50%;
border: none;
padding: 10px;
}
.search-button {
background: lightskyblue;
border: none;
padding: 15px;
color: white;
}
.recipes {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
border-radius: 15px;
box-shadow: 0px 5px 20px rgb(87, 83, 83);
margin: 20px;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
min-width: 40px;
}