-
Notifications
You must be signed in to change notification settings - Fork 15
/
style2.css
92 lines (84 loc) · 1.44 KB
/
style2.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
*{
margin: 0%;
text-decoration: none;
}
body{
width: 100%;
background-image: url("./img/pizza1.png");
background-size: cover;
overflow-x: hidden;
}
header{
width: 100%;
height:3rem;
margin: 1rem 0 0 1rem;
}
img{
width: 20px;
padding-right: 1rem;
}
header>a{
display: flex;
width: 15%;
background-color: rgb(148, 201, 255);
padding: 1rem 2rem;
border-radius: 10px;
}
a{
color: black;
padding-left: 1rem;
}
.search{
margin-top: 2%;
width:100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.search :hover{
transition: all,0.3s,ease-out,0.5s;
height:40px;
width: 350px;
}
#ingredientInput{
padding: 10px;
width: 300px;
}
.recipe{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.recipe>a{
text-decoration: none;
background-color: #333;
color: #ccc;
padding: 0.8rem;
margin-top: auto;
width: 100px;
text-align: center;
border-radius: 10px;
}
button{
width: 150px;
padding: 0.7rem 1rem;
background-color: #d3a716;
border: none;
outline: none;
color:black;
font-size: 14px;
border-radius: 10px;
}
.container{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.box{
padding: 20px;
width: 50%;
background-color: rgba(152, 221, 237, 0.71);
border-radius: 2rem;
}