blob: 7c98c34d8e268b9af80ca5454a6cd928612f4aec (
plain)
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
|
h1 {text-align: center}
h4 { text-align: center;
margin-bottom:0px;
}
.outer-box {
display:grid;
width: 400px;
margin: auto;
margin-top: 30px;
padding: 10px;
border: solid;
align-content: center;
align-self: center;
}
.input-box {
text-align:center;
margin: auto;
}
.ingredients-list {
margin: auto;
padding: 10px;
border: solid;
outline: 0px solid;
}
.button {
display: block;
margin: 10px auto;
}
li{text-align: center}
input{display: inline-block;
width: 20px}
button{width: 150px;
height: 50px;
}
|