-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (53 loc) · 1.11 KB
/
style.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
*{
margin: 0;
padding: 0;
}
.top{
background-color: black;
color: white;
text-align: center;
padding: 20px;
}
.top__home,.top__receipe,.top__contact{
display: inline-block;
color:skyblue;
margin-top: 10px;
}
.top__home:hover,.top__receipe:hover,.top__contact:hover{
color:whitesmoke;
cursor: pointer;
}
.mid{
margin-top: 20px;
text-align: center;
}
.mid__food1,.mid__food2,.mid__food3,.mid__food4{
display: inline-block;
width: 300px;
vertical-align: top;
border: solid black 2px;
}
.mid__food1--button,.mid__food2--button,.mid__food3--button,.mid__food4--button{
background-color: black;
color: white;
padding: 5px;
border-radius: 5px;
}
.bottom{
text-align: center;
background-color: black;
color: white;
margin-top: 20px;
margin-left: auto;
padding: 20px;
}
.bottom__table{
text-align: center;
display: inline-block;
}
.bottom__button{
width: 300px;
display: inline-block;
background-color:yellow;
color:black;
}